/* ============================================
   Hero Section (Index Page Only)
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A1A2F 0%, #1a2f4f 50%, #0f1e35 100%);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 0;
    box-sizing: border-box;
    transform: translateY(0);
    will-change: auto;
}

.hero__particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.hero__particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero__particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.hero__particle--small {
    width: 2px;
    height: 2px;
    background: rgba(201, 168, 106, 0.6);
    box-shadow: 0 0 4px rgba(201, 168, 106, 0.4);
}

.hero__particle--medium {
    width: 3px;
    height: 3px;
    background: rgba(201, 168, 106, 0.5);
    box-shadow: 0 0 6px rgba(201, 168, 106, 0.5);
}

.hero__particle--large {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 8px rgba(201, 168, 106, 0.6);
}

.hero__particle--glow {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.8) 0%, transparent 70%);
    box-shadow: 0 0 12px rgba(201, 168, 106, 0.8);
    animation: particlePulse 3s ease-in-out infinite;
}

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

.hero__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 15s ease-in-out infinite;
}

.hero__gradient-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.6) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.hero__gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.4) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.hero__gradient-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(201, 168, 106, 0.03) 50%, transparent 100%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(201,168,106,0.15)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
    animation: gridShift 30s linear infinite;
}

@keyframes gridShift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 0, 100px 100px; }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(201, 168, 106, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(201, 168, 106, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: calc(var(--spacing-xl) + 40px) var(--spacing-md) var(--spacing-xl);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    will-change: auto;
}

.hero__content > * {
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.15) 0%, rgba(201, 168, 106, 0.05) 100%);
    border: 1px solid rgba(201, 168, 106, 0.4);
    border-radius: 50px;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
    z-index: 3;
}

.hero__badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.2), transparent);
    transition: left 0.6s;
}

.hero__badge:hover::before {
    left: 100%;
}

.hero__badge:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 168, 106, 0.6);
    box-shadow: 
        0 8px 25px rgba(201, 168, 106, 0.3),
        0 0 0 1px rgba(201, 168, 106, 0.1) inset;
}

.hero__badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
    z-index: -1;
}

.hero__badge:hover .hero__badge-glow {
    width: min(200px, 80vw);
    height: min(200px, 80vw);
    max-width: 100%;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.hero__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    animation: iconRotate 8s linear infinite;
    flex-shrink: 0;
    opacity: 1;
    visibility: visible;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero__badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    text-align: center;
    opacity: 1;
    visibility: visible;
}

.hero__badge-label,
.hero__badge-text {
    opacity: 1;
    visibility: visible;
}

.hero__badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    opacity: 0.9;
}

.hero__badge-text {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-align: center;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero__title-line {
    display: block;
    background: linear-gradient(135deg, #FFFFFF 0%, #C9A86A 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
    text-shadow: 0 0 40px rgba(201, 168, 106, 0.3);
    position: relative;
    opacity: 0;
}

.hero__title-line--2 {
    animation-delay: 0.5s;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero__subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 300;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.hero__subtitle-text {
    display: inline-block;
    opacity: 0;
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
    opacity: 0;
    visibility: visible;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero__buttons .btn {
    opacity: 0;
    visibility: visible;
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* ============================================
   Business Sectors (Index Page)
   ============================================ */

.sectors {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.sectors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 168, 106, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 26, 47, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.sectors .container {
    position: relative;
    z-index: 1;
}

.sectors__header {
    margin-bottom: var(--spacing-xl);
    text-align: center;
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.sectors__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(201, 168, 106, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 26, 47, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.sectors__header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(600px, 100vw);
    height: min(600px, 100vw);
    max-width: 100%;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: headerPulse 8s ease-in-out infinite;
}

@keyframes headerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

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

/* Initial state for animation - elements hidden until scroll triggers */
.sectors__badge,
.sectors__title,
.sectors__subtitle,
.sectors__divider {
    opacity: 0;
}

.sectors__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.15) 0%, rgba(201, 168, 106, 0.08) 100%);
    border: 2px solid rgba(201, 168, 106, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(201, 168, 106, 0.1);
}

.sectors__badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.2), transparent);
    transition: left 0.6s;
}

.sectors__badge:hover::before {
    left: 100%;
}

.sectors__badge:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 168, 106, 0.5);
    box-shadow: 0 8px 25px rgba(201, 168, 106, 0.2);
}

.sectors__badge::after {
    content: '★';
    font-size: 0.75rem;
    margin-left: 0.5rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.sectors__title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    line-height: 1.1;
    position: relative;
    display: block;
    text-align: center;
    width: fit-content;
    background: linear-gradient(135deg, #0A1A2F 0%, #C9A86A 50%, #0A1A2F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: titleGradient 5s ease-in-out infinite;
    letter-spacing: -1px;
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.sectors__title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 20px);
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.1) 0%, transparent 50%);
    filter: blur(30px);
    z-index: -1;
    opacity: 0.5;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

.sectors__title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { 
        width: 120px;
        opacity: 0.6;
        box-shadow: 0 0 10px rgba(201, 168, 106, 0.3);
    }
    50% { 
        width: 180px;
        opacity: 1;
        box-shadow: 0 0 20px rgba(201, 168, 106, 0.6);
    }
}

.sectors__subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--color-charcoal);
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.3px;
    position: relative;
}

.sectors__subtitle::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 4rem;
    font-family: var(--font-display);
    color: rgba(201, 168, 106, 0.2);
    line-height: 1;
}

.sectors__subtitle::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    right: -30px;
    font-size: 4rem;
    font-family: var(--font-display);
    color: rgba(201, 168, 106, 0.2);
    line-height: 1;
}

.sectors__divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    margin: 0 auto;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.sectors__divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: dividerShine 3s ease-in-out infinite;
}

@keyframes dividerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.sectors__divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(201, 168, 106, 0.8),
        0 0 40px rgba(201, 168, 106, 0.4);
    animation: dividerDot 2s ease-in-out infinite;
}

@keyframes dividerDot {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.7;
    }
}

.sectors__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.sector-card {
    background-color: var(--color-white);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: default;
    border: 1px solid rgba(201, 168, 106, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    will-change: transform, opacity, box-shadow;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    perspective: 1000px;
}

.sector-card.visible {
    opacity: 1;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.sector-card:hover::before {
    opacity: 1;
}

.sector-card__image {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.3) 0%, rgba(10, 26, 47, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    will-change: transform;
    transform-origin: center center;
}

.sector-card__image-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    will-change: transform, filter;
    transform-origin: center center;
}

.sector-card__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(201, 168, 106, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(10, 26, 47, 0.3) 0%, transparent 50%);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.sector-card__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 26, 47, 0.4) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

/* Hover effects are now handled by GSAP for smoother animations */


.sector-card__content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
    will-change: transform;
}

.sector-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--spacing-sm);
    transition: var(--transition-base);
    line-height: 1.2;
}

.sector-card:hover .sector-card__title {
    color: var(--color-gold);
    text-shadow: 0 0 20px rgba(201, 168, 106, 0.3);
}

.sector-card__description {
    color: var(--color-charcoal);
    opacity: 0.8;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
    transition: var(--transition-base);
}

.sector-card:hover .sector-card__description {
    opacity: 1;
}

.sector-card__link {
    color: var(--color-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: var(--transition-base);
    text-decoration: none;
    font-size: 0.95rem;
    width: fit-content;
    padding: 0.5rem 0;
}

.sector-card__link svg {
    width: 18px;
    height: 18px;
    will-change: transform;
    transform-origin: center center;
}

.sector-card__link:hover {
    gap: var(--spacing-sm);
    color: var(--color-navy);
}

.sector-card__link:hover svg {
    transform: translateX(5px);
    filter: drop-shadow(0 0 8px rgba(201, 168, 106, 0.8));
}

/* Shimmer effect for cards */
.sector-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.sector-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Glow pulse effect */
@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 
            0 8px 30px rgba(201, 168, 106, 0.2),
            0 0 0 1px rgba(201, 168, 106, 0.1) inset;
    }
}

.sector-card.visible {
    animation: cardGlow 3s ease-in-out infinite;
}


/* ============================================
   About Section (Index Page)
   ============================================ */

.about {
    position: relative;
    background: linear-gradient(135deg, #0A1A2F 0%, #1a2f4f 50%, #0f1e35 100%);
    color: var(--color-white);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about__particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.about__particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.about__particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

.about__particle--small {
    width: 2px;
    height: 2px;
    background: rgba(201, 168, 106, 0.6);
    box-shadow: 0 0 4px rgba(201, 168, 106, 0.4);
}

.about__particle--medium {
    width: 3px;
    height: 3px;
    background: rgba(201, 168, 106, 0.5);
    box-shadow: 0 0 6px rgba(201, 168, 106, 0.5);
}

.about__particle--large {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 8px rgba(201, 168, 106, 0.6);
}

.about__particle--glow {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.8) 0%, transparent 70%);
    box-shadow: 0 0 12px rgba(201, 168, 106, 0.8);
    animation: particlePulse 3s ease-in-out infinite;
}

.about__gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 15s ease-in-out infinite;
}

.about__gradient-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.6) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.about__gradient-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.4) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.about__gradient-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(201, 168, 106, 0.03) 50%, transparent 100%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(201,168,106,0.15)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
    animation: gridShift 30s linear infinite;
}

.about__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(201, 168, 106, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(201, 168, 106, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about__description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.about__image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.2) 0%, rgba(10, 26, 47, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.5rem;
    position: relative;
}

.about__image-placeholder::before {
    content: 'Fine Star Group';
    position: absolute;
    font-family: var(--font-display);
    font-size: 2rem;
    opacity: 0.3;
}

/* ============================================
   CSR Section (Index Page)
   ============================================ */

.csr {
    background-color: #f8f9fa;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.csr__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.csr-card {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.csr-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.csr-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-gold);
}

.csr-card__icon svg {
    width: 100%;
    height: 100%;
}

.csr-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--spacing-sm);
}

.csr-card__description {
    color: var(--color-charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

.csr__cta {
    text-align: center;
}

/* ============================================
   Contact Section (Index Page)
   ============================================ */

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact__item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.contact__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact__icon svg {
    width: 100%;
    height: 100%;
}

.contact__details h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--spacing-xs);
}

.contact__details p {
    color: var(--color-charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form__group {
    display: flex;
    flex-direction: column;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
    background-color: var(--color-white);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Responsive Design (Index Page)
   ============================================ */

@media (max-width: 968px) {
    .hero__content {
        padding-top: calc(var(--spacing-xl) + 50px);
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
        padding-bottom: var(--spacing-lg);
    }

    .hero__badge {
        margin-top: var(--spacing-xs);
        margin-bottom: var(--spacing-md);
    }

    .hero__title {
        margin-bottom: var(--spacing-md);
        margin-top: 0;
    }

    .hero__subtitle {
        margin-bottom: var(--spacing-xl);
        margin-top: 0;
        padding: 0 var(--spacing-sm);
    }

    .hero__buttons {
        margin-top: var(--spacing-xl);
        margin-bottom: 0;
        gap: var(--spacing-md);
    }

    .sectors__header {
        margin-bottom: var(--spacing-lg);
        padding: var(--spacing-lg) 0;
    }

    .sectors__grid {
        margin-top: var(--spacing-lg);
        gap: var(--spacing-md);
    }

    .sector-card__content {
        padding: var(--spacing-md);
    }


    .csr__grid {
        margin-bottom: var(--spacing-lg);
        gap: var(--spacing-md);
    }

    .about__content {
        grid-template-columns: 1fr;
        padding: var(--spacing-lg) 0;
    }

    .about__description {
        margin-bottom: var(--spacing-md);
    }

    .contact__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--spacing-lg) 0;
    }

    .sectors__grid,
    .csr__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-top: var(--spacing-md);
    }

    .sectors__header {
        margin-bottom: var(--spacing-md);
        padding: var(--spacing-md) 0;
    }

    .sectors__grid {
        margin-top: var(--spacing-md);
    }

    .sectors__header::after {
        width: min(400px, 100vw);
        height: min(400px, 100vw);
        max-width: 100%;
    }

    .sectors__badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.75rem;
    }

    .sectors__title {
        font-size: 2rem;
    }

    .sectors__title::after {
        width: 80px;
    }

    .sectors__subtitle {
        font-size: 1rem;
    }

    .sectors__subtitle::before,
    .sectors__subtitle::after {
        font-size: 3rem;
    }

    .sectors__divider {
        width: 80px;
    }

    .sector-card__image {
        height: 180px;
    }

    .sector-card__content {
        padding: var(--spacing-md);
    }

    .sector-card__title {
        font-size: 1.375rem;
        margin-bottom: var(--spacing-xs);
    }

    .sector-card__description {
        font-size: 0.875rem;
        margin-bottom: var(--spacing-sm);
    }

    .sector-card__link {
        margin-top: var(--spacing-xs);
    }


    .csr__grid {
        margin-bottom: var(--spacing-md);
    }

    .csr-card {
        padding: var(--spacing-md);
        margin-bottom: var(--spacing-sm);
    }

    .csr-card__icon {
        margin-bottom: var(--spacing-sm);
    }

    .csr-card__title {
        margin-bottom: var(--spacing-xs);
        font-size: 1.25rem;
    }

    .csr__cta {
        margin-top: var(--spacing-md);
    }

    .about__content {
        padding: var(--spacing-md) 0;
    }

    .about__description {
        margin-bottom: var(--spacing-sm);
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero__content {
        padding-top: calc(var(--spacing-lg) + 60px);
        padding-bottom: var(--spacing-lg);
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    .hero__badge {
        margin-bottom: var(--spacing-md);
    }

    .hero__title {
        margin-bottom: var(--spacing-sm);
        margin-top: 0;
        gap: 0.25rem;
    }

    .hero__subtitle {
        margin-bottom: var(--spacing-lg);
        margin-top: 0;
        padding: 0;
        font-size: clamp(1rem, 4vw, 1.25rem);
        line-height: 1.5;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        margin-top: var(--spacing-lg);
        margin-bottom: 0;
        gap: var(--spacing-md);
    }

    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero__gradient-orb--1,
    .hero__gradient-orb--2,
    .hero__gradient-orb--3 {
        width: min(300px, 80vw);
        height: min(300px, 80vw);
        max-width: 100%;
    }

    .about__gradient-orb--1,
    .about__gradient-orb--2,
    .about__gradient-orb--3 {
        width: min(300px, 80vw);
        height: min(300px, 80vw);
        max-width: 100%;
    }

    .hero__badge {
        padding: 0.625rem 1.25rem;
        gap: var(--spacing-xs);
        margin-top: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
    }

    .hero__badge-icon {
        width: 16px;
        height: 16px;
    }

    .hero__badge-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero__badge-label {
        font-size: 0.625rem;
        letter-spacing: 1.5px;
    }

    .hero__badge-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: var(--spacing-md) 0;
    }

    .sectors__header {
        margin-bottom: var(--spacing-sm);
        padding: var(--spacing-sm) 0;
    }

    .sectors__header::after {
        width: min(300px, 90vw);
        height: min(300px, 90vw);
    }

    .sectors__grid,
    .csr__grid {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-sm);
    }

    .sector-card__content {
        padding: var(--spacing-sm);
    }

    .sector-card__title {
        font-size: 1.125rem;
        margin-bottom: var(--spacing-xs);
    }

    .sector-card__description {
        font-size: 0.8125rem;
        margin-bottom: var(--spacing-xs);
    }


    .csr-card {
        padding: var(--spacing-sm);
    }

    .csr-card__title {
        font-size: 1.125rem;
    }

    .about__content {
        padding: var(--spacing-sm) 0;
    }

    .about__description {
        font-size: 0.9375rem;
        margin-bottom: var(--spacing-xs);
    }

    .hero__gradient-orb--1,
    .hero__gradient-orb--2,
    .hero__gradient-orb--3,
    .about__gradient-orb--1,
    .about__gradient-orb--2,
    .about__gradient-orb--3 {
        width: min(250px, 70vw);
        height: min(250px, 70vw);
    }

    .hero__content {
        padding-top: calc(var(--spacing-md) + 70px);
        padding-bottom: var(--spacing-md);
        padding-left: var(--spacing-xs);
        padding-right: var(--spacing-xs);
    }

    .hero__badge {
        margin-bottom: var(--spacing-sm);
    }

    .hero__title {
        margin-bottom: var(--spacing-sm);
        margin-top: 0;
        font-size: clamp(2rem, 10vw, 3.5rem);
        gap: 0.25rem;
    }

    .hero__subtitle {
        margin-bottom: var(--spacing-md);
        margin-top: 0;
        padding: 0;
        font-size: clamp(0.875rem, 3.5vw, 1.125rem);
        line-height: 1.4;
        letter-spacing: 0.3px;
    }

    .hero__buttons {
        margin-top: var(--spacing-md);
        margin-bottom: 0;
        gap: var(--spacing-sm);
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero__badge {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        margin-top: var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__badge-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero__badge-label {
        font-size: 0.5625rem;
        letter-spacing: 1px;
    }

    .hero__badge-text {
        font-size: 0.6875rem;
        text-align: center;
    }
}

/* ============================================
   Story Timeline Section (Index Page)
   ============================================ */

.story-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 6em 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.story-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.story-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(201, 168, 106, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(201, 168, 106, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(201, 168, 106, 0.02) 50%, transparent 100%);
    opacity: 0.3;
    z-index: 1;
}

.story-section .container {
    position: relative;
    z-index: 2;
}

.story-header {
    text-align: center;
    margin-bottom: 5em;
    opacity: 0;
    transform: translateY(30px);
}

.story-label {
    display: inline-block;
    padding: 0.5em 1.5em;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.15) 0%, rgba(201, 168, 106, 0.05) 100%);
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.85em;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5em;
    border: 1px solid rgba(201, 168, 106, 0.4);
    box-shadow: 0 4px 20px rgba(201, 168, 106, 0.3);
    backdrop-filter: blur(10px);
}

.story-title {
    color: var(--color-navy);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1em;
    background: linear-gradient(135deg, #0A1A2F 0%, #C9A86A 50%, #0A1A2F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

.story-subtitle {
    color: var(--color-charcoal);
    opacity: 0.8;
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 4em 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    background: linear-gradient(
        180deg,
        var(--color-gold) 0%,
        var(--color-gold) 100%
    );
    transform: translateX(-50%);
    transform-origin: top;
    height: 0;
    box-shadow: 0 0 20px rgba(201, 168, 106, 0.5);
    transition: height 0.3s ease-out;
}

.timeline-items {
    display: grid;
    gap: 8em;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3.5em;
    align-items: center;
    justify-items: stretch;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 260px;
    margin-bottom: 2em;
    direction: ltr;
}

.timeline-item:nth-child(1) .timeline-card {
    transform: translateX(-50px) scale(0.9);
    grid-column: 1;
    text-align: right;
    justify-self: end;
    margin-right: 0;
}

.timeline-item:nth-child(2) .timeline-card {
    transform: translateX(50px) scale(0.9);
    grid-column: 3;
    text-align: left;
    justify-self: start;
    margin-left: 0;
}

.timeline-item:nth-child(3) .timeline-card {
    transform: translateX(-50px) scale(0.9);
    grid-column: 1;
    text-align: right;
    justify-self: end;
    margin-right: 0;
}

.timeline-item:nth-child(4) .timeline-card {
    transform: translateX(50px) scale(0.9);
    grid-column: 3;
    text-align: left;
    justify-self: start;
    margin-left: 0;
}

.timeline-item:nth-child(2) {
    margin-bottom: 11em;
}

.timeline-marker {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    position: relative;
    z-index: 3;
    min-width: 140px;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.7), 0 0 20px rgba(201, 168, 106, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-dot-inner {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.animate .timeline-dot {
    box-shadow: 0 0 0 8px rgba(201, 168, 106, 0.2),
        0 0 0 16px rgba(201, 168, 106, 0.1), 0 0 30px rgba(201, 168, 106, 0.4);
    transform: scale(1.2);
}

.timeline-item.animate .timeline-dot-inner {
    transform: scale(1);
}

.timeline-year {
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.1em;
    letter-spacing: 1px;
    white-space: nowrap;
    padding: 0.4em 1em;
    background: rgba(201, 168, 106, 0.1);
    border: 1px solid rgba(201, 168, 106, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.animate .timeline-year {
    opacity: 1;
    transform: translateY(0);
}

.timeline-card {
    background: #ffffff;
    border: 1px solid rgba(201, 168, 106, 0.2);
    border-radius: 20px;
    padding: 2em;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(201, 168, 106, 0.05) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-item.animate .timeline-card {
    background: #ffffff;
    border-color: rgba(201, 168, 106, 0.3);
    transform: translateX(0) scale(1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(201, 168, 106, 0.15);
}

.timeline-item.animate .timeline-card::before {
    opacity: 1;
}

.timeline-item:hover .timeline-card {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(201, 168, 106, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(201, 168, 106, 0.3), 0 0 40px rgba(201, 168, 106, 0.2);
}

.timeline-card-content {
    position: relative;
    z-index: 1;
}

.timeline-title {
    color: var(--color-navy);
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 0 0.8em;
    background: linear-gradient(135deg, #0A1A2F 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-description {
    color: var(--color-charcoal);
    opacity: 0.8;
    line-height: 1.8;
    font-size: 1.05em;
    margin: 0;
}

.timeline-icon {
    position: absolute;
    top: 1.5em;
    right: 1.5em;
    font-size: 2.5em;
    opacity: 0.2;
    transform: scale(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.animate .timeline-icon {
    transform: scale(1) rotate(10deg);
    opacity: 0.3;
}

.timeline-item:nth-child(1) .timeline-icon,
.timeline-item:nth-child(3) .timeline-icon {
    right: auto;
    left: 1.5em;
}

.timeline-item:nth-child(2) .timeline-icon,
.timeline-item:nth-child(4) .timeline-icon {
    left: auto;
    right: 1.5em;
}

@media (max-width: 968px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1.5em;
        direction: ltr !important;
        min-height: auto;
        margin-bottom: 0;
    }

    .timeline-item:nth-child(2) {
        margin-bottom: 0 !important;
    }

    .timeline-item > * {
        direction: ltr !important;
    }

    .timeline-marker {
        grid-column: 1;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5em;
        min-width: auto;
        width: 100%;
    }

    .timeline-item:nth-child(1) .timeline-card,
    .timeline-item:nth-child(2) .timeline-card,
    .timeline-item:nth-child(3) .timeline-card,
    .timeline-item:nth-child(4) .timeline-card {
        grid-column: 1 !important;
        text-align: left !important;
        justify-self: stretch !important;
        margin-left: 3.5em;
        margin-right: 1em;
        transform: translateX(0) scale(1) !important;
        max-width: calc(100% - 4.5em);
        width: auto;
    }
    
    .timeline-card {
        padding: 1.5em;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item:nth-child(1) .timeline-icon,
    .timeline-item:nth-child(2) .timeline-icon,
    .timeline-item:nth-child(3) .timeline-icon,
    .timeline-item:nth-child(4) .timeline-icon {
        left: auto;
        right: 1.5em;
    }
}

@media (max-width: 640px) {
    .story-section {
        padding: 4em 0;
    }

    .story-header {
        margin-bottom: 3em;
    }

    .timeline-items {
        gap: 3em;
    }
    
    .timeline-item {
        min-height: 150px;
    }

    .timeline-item:nth-child(2) {
        margin-bottom: 0 !important;
    }

    .timeline-item:nth-child(1) .timeline-card,
    .timeline-item:nth-child(2) .timeline-card,
    .timeline-item:nth-child(3) .timeline-card,
    .timeline-item:nth-child(4) .timeline-card {
        margin-left: 3em;
        margin-right: 0.5em;
        max-width: calc(100% - 3.5em);
        padding: 1.2em;
    }

    .timeline-card {
        padding: 1.2em;
    }

    .timeline-title {
        font-size: 1.5em;
    }

    .timeline-description {
        font-size: 1em;
    }
}

