/* ============================================
   Vision Page - Unique Styles
   Elegant, techy design with animations
   ============================================ */

/* ============================================
   SECTION 1: Hero with Animated Grid
   ============================================ */
.vision-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0A0A0A;
}

.vision-hero-bg {
    position: absolute;
    inset: 0;
}

.vision-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, #0A0A0A 100%);
    z-index: 1;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 74, 59, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 145, 90, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: glowPulse 8s ease-in-out infinite 4s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.vision-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(184, 145, 90, 0.3);
    background: rgba(184, 145, 90, 0.05);
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: #B8915A;
}

.hero-badge span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B8915A;
}

.vision-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, #B8915A 0%, #D4A96A 50%, #B8915A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.vision-hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 600px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .stat-divider {
        display: none;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #FFFFFF;
}

.stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    display: none;
}

/* ============================================
   SECTION 2: Mission Statement
   ============================================ */
.vision-mission {
    position: relative;
    padding: 10rem 0;
    background: #0A0A0A;
    overflow: hidden;
}

.mission-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bg-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
}

.bg-line-1 {
    width: 1px;
    height: 100%;
    left: 20%;
}

.bg-line-2 {
    width: 1px;
    height: 100%;
    right: 20%;
}

.bg-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(30, 74, 59, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mission-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 3rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 2rem;
    }
}

.mission-image-col {
    position: relative;
}

.mission-image-wrapper {
    position: relative;
}

.mission-image-actual {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 145, 90, 0.15);
}

.saif-concept-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.mission-image-wrapper:hover .saif-concept-img {
    transform: scale(1.03);
}

.mission-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #151515 0%, #0D0D0D 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-image-placeholder svg {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 1rem;
}

.mission-image-placeholder span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.mission-image-placeholder .image-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-frame-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-right: 2px solid #B8915A;
    border-bottom: 2px solid #B8915A;
}

.image-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: #B8915A;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.image-tag span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.mission-content-col {
    position: relative;
}

.section-marker {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.marker-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(184, 145, 90, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-icon svg {
    width: 20px;
    height: 20px;
    color: #B8915A;
}

.marker-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.mission-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

.mission-title em {
    color: #B8915A;
    font-style: normal;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.point-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid #1E4A3B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.point-icon svg {
    width: 14px;
    height: 14px;
    color: #2A6350;
}

.mission-point p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.mission-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.highlight-bar {
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, #B8915A, #1E4A3B);
}

.mission-highlight p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.mission-highlight span {
    color: #FFFFFF;
    font-weight: 500;
}

/* ============================================
   SECTION 3: Spirit of Tuwaiq (Inverted Green)
   ============================================ */
.vision-tuwaiq {
    position: relative;
    padding: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0F2922 0%, #153329 50%, #0A1F1A 100%);
}

.tuwaiq-bg {
    position: absolute;
    inset: 0;
}

.tuwaiq-image-placeholder {
    display: none;
}

.tuwaiq-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(30, 74, 59, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(10, 31, 26, 0.5) 0%, transparent 50%);
}

.tuwaiq-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(184, 145, 90, 0.05) 0%, transparent 60%);
}

.tuwaiq-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1000px;
}

.tuwaiq-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.header-line {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.header-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(184, 145, 90, 0.5);
    background: rgba(184, 145, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon svg {
    width: 24px;
    height: 24px;
    color: #B8915A;
}

.header-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #B8915A;
}

.tuwaiq-intro {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tuwaiq-quote-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .tuwaiq-quote-block {
        flex-direction: column;
        gap: 1.5rem;
    }
    .quote-decoration {
        transform: rotate(90deg);
    }
}

.quote-decoration {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-decoration span {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.quote-decoration span:first-child {
    width: 50px;
    background: #B8915A;
}

.quote-main {
    position: relative;
    max-width: 700px;
}

.quote-mark {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 5rem;
    color: #B8915A;
    opacity: 0.4;
    line-height: 0.5;
    position: absolute;
    top: -20px;
    left: -30px;
}

.quote-mark.closing {
    position: static;
    display: block;
    text-align: right;
    margin-top: 1rem;
}

.tuwaiq-quote-block blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.5;
}

.tuwaiq-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.attribution-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.attribution-content {
    text-align: center;
}

.attribution-name {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #B8915A;
    margin-bottom: 0.25rem;
}

.attribution-event {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SECTION 4: Core Pillars
   ============================================ */
.vision-pillars {
    position: relative;
    padding: 10rem 0;
    background: #0A0A0A;
    overflow: hidden;
}

.pillars-bg {
    position: absolute;
    inset: 0;
}

.pillars-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.pillars-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pillars-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.pillars-badge svg {
    width: 18px;
    height: 18px;
    color: #B8915A;
}

.pillars-badge span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B8915A;
}

.pillars-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.pillars-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto;
}

.pillars-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pillar-card-horizontal {
    display: grid;
    grid-template-columns: auto 1fr 300px;
    gap: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    transition: all 0.4s ease;
}

.pillar-card-horizontal:hover {
    border-color: rgba(184, 145, 90, 0.2);
    transform: translateX(10px);
}

.pillar-card-horizontal.reverse {
    grid-template-columns: 300px 1fr auto;
}

.pillar-card-horizontal.reverse .pillar-image-placeholder {
    order: -1;
}

@media (max-width: 968px) {
    .pillar-card-horizontal,
    .pillar-card-horizontal.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pillar-card-horizontal.reverse .pillar-image-placeholder {
        order: 0;
    }
    .pillar-number-large {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    .pillar-card-horizontal {
        position: relative;
    }
}

.pillar-number-large {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
}

.pillar-content {
    flex: 1;
}

.pillar-icon-wrapper {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(30, 74, 59, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pillar-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #2A6350;
}

.pillar-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.pillar-card-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pillar-tags span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(184, 145, 90, 0.2);
    color: rgba(184, 145, 90, 0.8);
}

.pillar-image-placeholder {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.pillar-card-horizontal:hover .pillar-img {
    transform: scale(1.04);
}

.pillar-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.55) 0%,
        rgba(10, 10, 10, 0.3) 100%
    );
}

.pillar-image-placeholder svg {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   SECTION 5: SAIF Philosophy
   ============================================ */
.vision-philosophy {
    position: relative;
    padding: 10rem 0;
    background: #111111;
    overflow: hidden;
}

.philosophy-bg {
    position: absolute;
    inset: 0;
}

.philosophy-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 74, 59, 0.08) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.philosophy-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.philosophy-marker .marker-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.philosophy-marker .marker-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #B8915A;
}

.philosophy-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.3;
}

.philosophy-title .title-accent {
    color: rgba(255, 255, 255, 0.5);
}

.philosophy-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .philosophy-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .philosophy-divider {
        flex-direction: row;
        padding: 2rem 0;
    }
    .philosophy-divider .divider-line {
        width: 80px;
        height: 1px;
    }
}

.philosophy-side {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.side-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #B8915A;
}

.side-icon svg {
    width: 100%;
    height: 100%;
}

.side-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.side-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.side-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.side-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.side-features li:last-child {
    border-bottom: none;
}

.side-features svg {
    width: 8px;
    height: 8px;
    color: #B8915A;
}

.side-features span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.side-image-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, #151515 0%, #0D0D0D 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-image-placeholder .placeholder-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

.philosophy-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.philosophy-divider .divider-line {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
}

.divider-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(184, 145, 90, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
}

.divider-icon svg {
    width: 18px;
    height: 18px;
    color: #B8915A;
}

.philosophy-conclusion {
    text-align: center;
    margin-top: 4rem;
}

.philosophy-conclusion p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.5);
}

.philosophy-conclusion span {
    color: #B8915A;
    font-weight: 500;
}

/* ============================================
   SECTION 6: Roadmap / Timeline
   ============================================ */
.vision-roadmap {
    position: relative;
    padding: 10rem 0;
    background: #0A0A0A;
    overflow: hidden;
}

.roadmap-bg {
    position: absolute;
    inset: 0;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.roadmap-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.roadmap-badge svg {
    width: 18px;
    height: 18px;
    color: #B8915A;
}

.roadmap-badge span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #B8915A;
}

.roadmap-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.roadmap-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    margin: 0 auto;
}

.roadmap-timeline-horizontal {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 0;
}

.timeline-track-horizontal {
    position: absolute;
    top: calc(4rem + 8px);
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(to right, #1E4A3B, rgba(184, 145, 90, 0.5), #B8915A);
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 968px) {
    .timeline-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    .timeline-track-horizontal {
        display: none;
    }
}

@media (max-width: 500px) {
    .timeline-items {
        grid-template-columns: 1fr;
    }
}

.timeline-item-h {
    position: relative;
    text-align: center;
}

.timeline-dot-h {
    position: relative;
    width: 18px;
    height: 18px;
    background: #0A0A0A;
    border: 2px solid #1E4A3B;
    border-radius: 50%;
    margin: 0 auto 2rem;
    z-index: 1;
}

.timeline-dot-h.active {
    background: #1E4A3B;
    box-shadow: 0 0 20px rgba(30, 74, 59, 0.5);
}

.timeline-dot-h.active::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(30, 74, 59, 0.3);
    border-radius: 50%;
    animation: pingDot 2s ease-in-out infinite;
}

@keyframes pingDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0; transform: scale(1.5); }
}

.timeline-dot-h.goal {
    width: 22px;
    height: 22px;
    background: #B8915A;
    border-color: #B8915A;
    box-shadow: 0 0 30px rgba(184, 145, 90, 0.5);
}

.timeline-dot-h.goal::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(184, 145, 90, 0.3);
    border-radius: 50%;
    animation: pingDot 2s ease-in-out infinite;
}

.timeline-content-h {
    padding: 0 0.5rem;
}

.timeline-year-h {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #B8915A;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(184, 145, 90, 0.3);
    margin-bottom: 1rem;
}

.timeline-title-h {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.timeline-text-h {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* ============================================
   SECTION 7: CTA
   ============================================ */
.vision-cta {
    position: relative;
    padding: 10rem 0;
    background: #111111;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(184, 145, 90, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
}

.cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 74, 59, 0.15) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    border: 1px solid rgba(184, 145, 90, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon svg {
    width: 32px;
    height: 32px;
    color: #B8915A;
}

.cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #B8915A;
    background: rgba(184, 145, 90, 0.1);
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-stat-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-stat-icon svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.4);
}

.cta-stat-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Image Placeholder Styles
   ============================================ */
.image-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.image-placeholder-content.large {
    min-height: 300px;
}

.image-placeholder-content svg {
    opacity: 0.5;
}

.image-placeholder-content span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   Arabic / RTL Overrides
   ============================================================ */

html[dir="rtl"] .side-features {
    text-align: right;
}

html[dir="rtl"] .image-frame-accent {
    right: auto;
    left: -15px;
    border-right: none;
    border-left: 2px solid #B8915A;
}

/* RTL Overrides — auto-generated */

/* Hero glow decorative: right:-100px → left:-100px and vice versa */
html[dir="rtl"] .hero-glow-1 {
    right: auto;
    left: -100px;
}
html[dir="rtl"] .hero-glow-2 {
    left: auto;
    right: -100px;
}

/* Mission image tag: top/left → top/right */
html[dir="rtl"] .image-tag {
    left: auto;
    right: 1.5rem;
}

/* Pillar card hover: translateX(10px) → translateX(-10px) */
html[dir="rtl"] .pillar-card-horizontal:hover {
    transform: translateX(-10px);
}

/* Side features: text-align left → right (already added above, this is supplemental) */

/* Quote mark closing: text-align right → left in RTL */
html[dir="rtl"] .quote-mark.closing {
    text-align: left;
}

/* Timeline track: gradient left→right flip */
html[dir="rtl"] .timeline-track-horizontal {
    background: linear-gradient(to left, #1E4A3B, rgba(184, 145, 90, 0.5), #B8915A);
}

/* Analytics row count: text-align right → left */
html[dir="rtl"] .analytics-row-count {
    text-align: left;
}

/* Centre-preservation: sections explicitly text-align:center in LTR must stay centred in RTL */
html[dir="rtl"] .vision-hero-content,
html[dir="rtl"] .vision-hero-content *,
html[dir="rtl"] .vision-hero-title,
html[dir="rtl"] .vision-hero-subtitle {
    text-align: center;
}
