/* Add these to style.css to support the Home Page Phase 3 */

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 60px 24px;
    background: radial-gradient(circle at center top, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff, #c4c4c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-headers {
    text-align: center;
    margin-bottom: 50px;
}

.section-headers h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.section-headers p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Pillars Grid */
.pillars-section {
    padding-top: 60px;
    padding-bottom: 100px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.highlight-card {
    border-color: rgba(212, 175, 55, 0.2);
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.pillar-card p {
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.pillar-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-gold);
    display: inline-block;
    transition: transform var(--transition-speed);
}

.pillar-card:hover .pillar-link {
    transform: translateX(5px);
}
html[dir="rtl"] .pillar-card:hover .pillar-link {
    transform: translateX(-5px);
}
