* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    background: #16103a;
}

:root {
    /* === NEW BACKGROUND COLORS === */
    --bg-primary: #16103a;
    --bg-dark: #16103a;
    --bg-darker: #0f0a28;
    --bg-card: #2a1e5b;
    --bg-card-hover: #392a70;
    --bg-navbar: #16103a;
    --bg-footer: #16103a;

    --primary-purple: #16103a;
    --dark-purple: #0f0a28;
    --gold: #F4C430;
    --gold-dark: #D4A520;
    --white: #F5F3F0;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;

    /* Premium Dark Theme Colors */
    --tt-bg-section: #16103a;
    --tt-bg-card: #2a1e5b;
    --tt-bg-footer: #16103a;
    --tt-bg-darkest: #0f0a28;
    --tt-bg-dark: #16103a;
    --tt-bg-purple: #2a1e5b;
    --tt-bg-purple-mid: #392a70;
    --tt-bg-purple-light: #4a3885;

    /* Vibrant Gold System */
    --gold-light: #F2CC55;
    --gold-primary: #E5B82A;
    --gold-mid: #D4A828;
    --gold-deep: #B8941F;
    --gold-dark: #9A7B18;
    --gold-glow: rgba(229, 184, 42, 0.5);
    --gold-glow-soft: rgba(229, 184, 42, 0.25);

    /* Legacy gold (updated) */
    --tt-gold: #E5B82A;
    --tt-gold-light: #F2CC55;
    --tt-text-white: #FFFFFF;
    --tt-text-muted: rgba(255, 255, 255, 0.7);
    --tt-text-subtle: rgba(255, 255, 255, 0.5);
    --tt-border-subtle: rgba(255, 255, 255, 0.1);
    --tt-border-gold: rgba(229, 184, 42, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    background: #16103a;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ========================================
   PREMIUM HEADER
   ======================================== */

.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: #16103a;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Default State: Solid Purple Header */
.premium-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    margin-top: 0;
    background: #16103a;
    border: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Scrolled State: Same Solid Header */
.premium-header.scrolled {
    padding: 0;
    border-bottom: 1px solid rgba(229, 184, 42, 0.2);
}

.premium-header.scrolled .header-inner {
    margin-top: 0;
    padding: 14px 32px;
    background: #16103a;
    border: none;
    border-radius: 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.02);
}

/* Navigation Container */
.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* Gold underline animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E5B82A, #F2CC55);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #E5B82A;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #E5B82A;
}

.nav-links a.active::after {
    width: 100%;
}

/* Nav Divider */
.nav-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Phone Link */
.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link i {
    color: #E5B82A;
    font-size: 16px;
}

.phone-link:hover {
    color: #E5B82A;
}

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, #F2CC55 0%, #E5B82A 50%, #D4A828 100%);
    color: #2a1e5b;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(229, 184, 42, 0.35);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cta-button i {
    font-size: 14px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229, 184, 42, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(229, 184, 42, 0.3);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #E5B82A;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-line::before,
.hamburger-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #E5B82A;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-line::before {
    top: -7px;
}

.hamburger-line::after {
    bottom: -7px;
}

/* Hamburger Active State (X) */
.mobile-menu-btn.active .hamburger-line {
    background: transparent;
}

.mobile-menu-btn.active .hamburger-line::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(68, 46, 128, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 100px 40px 40px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: 24px;
}

.mobile-nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #E5B82A;
}

.mobile-menu-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.mobile-phone i {
    color: #E5B82A;
    font-size: 20px;
}

.mobile-phone:hover {
    color: #E5B82A;
}

.mobile-cta {
    background: linear-gradient(145deg, #F2CC55 0%, #E5B82A 50%, #D4A828 100%);
    color: #2a1e5b;
    padding: 18px 48px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 30px rgba(229, 184, 42, 0.4);
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    transform: scale(1.05);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: #16103a;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Overlay Gradient - Premium fade to section background */
.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        /* Top: Light tint for navbar area */
        rgba(22, 16, 58, 0.4) 0%,
        rgba(22, 16, 58, 0.1) 5%,
        rgba(22, 16, 58, 0) 10%,

        /* Clear zone - show image fully */
        rgba(22, 16, 58, 0) 70%,

        /* Compact fade to section background #16103a */
        rgba(22, 16, 58, 0.3) 80%,
        rgba(22, 16, 58, 0.6) 88%,
        rgba(22, 16, 58, 0.85) 94%,
        #16103a 100%
    );
}

/* ========================================
   PREMIUM CAROUSEL ARROWS
   ======================================== */

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;

    /* Size - larger for better visibility */
    width: 56px;
    height: 56px;

    /* Frosted glass effect - matches header */
    background: rgba(68, 46, 128, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Border with subtle glow */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    /* Flexbox for centering icon */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Cursor and transitions */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Remove default button styles */
    padding: 0;
    outline: none;
}

/* Arrow Icon */
.carousel-arrow i {
    font-size: 20px;
    color: #E5B82A;
    transition: all 0.3s ease;
}

/* Hover State */
.carousel-arrow:hover {
    background: rgba(68, 46, 128, 0.7);
    border-color: rgba(229, 184, 42, 0.5);
    box-shadow:
        0 0 30px rgba(229, 184, 42, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%) scale(1.08);
}

.carousel-arrow:hover i {
    color: #F2CC55;
}

/* Active/Click State */
.carousel-arrow:active {
    transform: translateY(-50%) scale(0.98);
    box-shadow:
        0 0 20px rgba(229, 184, 42, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Pagination Dots */
.carousel-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(68, 46, 128, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(229, 184, 42, 0.2);
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.carousel-dot.active {
    background: #E5B82A;
    box-shadow: 0 0 10px rgba(229, 184, 42, 0.5);
}

/* Scroll Down CTA */
.scroll-down {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    transition: color 0.3s;
}

.scroll-down span {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.scroll-down:hover {
    color: #E5B82A;
}

.scroll-down i {
    font-size: 20px;
    color: #E5B82A;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* ============================================
   EXPERIENCES SECTION
   ============================================ */
.experiences {
    padding: 80px 0;
    background: #16103a;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 0.9rem;
    color: var(--tt-gold);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.section-title.gold {
    color: var(--tt-gold);
}

.section-subtitle {
    font-size: 2.8rem;
    color: var(--tt-text-white);
    font-weight: 700;
    margin-bottom: 20px;
}

.gold-highlight {
    color: #E5B82A;
}

.section-description {
    color: var(--tt-text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Experience Category */
.experience-category {
    margin-bottom: 60px;
}

.experience-category:last-child {
    margin-bottom: 0;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    color: var(--tt-gold);
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(229, 184, 42, 0.2);
}

.category-title i {
    font-size: 1.2rem;
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Experience Card */
.experience-card {
    background: #392a70;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 184, 42, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Card Image */
.experience-card .card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.experience-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover .card-image img {
    transform: scale(1.05);
}


/* Card Content */
.experience-card .card-content {
    padding: 20px;
}

.experience-card .card-content h4 {
    color: var(--tt-text-white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.experience-card .card-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Card Footer */
.experience-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.experience-card .tag {
    background: rgba(229, 184, 42, 0.15);
    color: var(--tt-gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Show 3 cards per row for Shows and Meet & Greet */
.experience-category:nth-child(3) .experience-grid,
.experience-category:nth-child(4) .experience-grid {
    grid-template-columns: repeat(3, 1fr);
}

.clients {
    padding: 80px 0;
    background: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.client-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.client-logo {
    font-size: 1.2rem;
    color: var(--dark-purple);
    font-weight: 600;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 80%;
    max-height: 60px;
    height: auto;
    object-fit: contain;
}

.corporate {
    padding: 80px 0;
    background: var(--light-gray);
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.corporate-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.corporate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.corporate-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    overflow: hidden;
    position: relative;
}

.corporate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.corporate-card h3 {
    padding: 20px;
    color: var(--dark-purple);
    font-size: 1.1rem;
}

.corporate-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.upcoming-events {
    padding: 80px 0;
    background: #16103a;
    position: relative;
}

/* Event Tabs */
.event-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tab-button {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-button i {
    font-size: 20px;
}

.tab-button:hover {
    border-color: rgba(229, 184, 42, 0.5);
    color: var(--tt-text-white);
    transform: translateY(-2px);
}

.tab-button.active {
    background: #E5B82A;
    color: #2a1e5b;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.events-table {
    margin-top: 50px;
    overflow-x: auto;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.events-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    background: transparent;
}

.events-table th {
    background: transparent;
    color: var(--tt-gold);
    padding: 16px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(229, 184, 42, 0.2);
}

.events-table td {
    padding: 20px 24px;
    color: var(--tt-text-white);
    font-size: 15px;
    border-bottom: none;
}

.events-table tbody tr {
    background: #392a70;
    transition: all 0.3s ease;
}

.events-table tbody tr:hover {
    background: #4a3885;
    transform: translateX(5px);
}

.events-table tbody td:first-child {
    border-radius: 10px 0 0 10px;
    font-weight: 500;
}

.events-table tbody td:last-child {
    border-radius: 0 10px 10px 0;
    color: rgba(255, 255, 255, 0.7);
}

/* View All Events CTA Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(229, 184, 42, 0.5);
    border-radius: 100px;
    color: #E5B82A;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: linear-gradient(145deg, #F2CC55 0%, #E5B82A 50%, #D4A828 100%);
    color: #2a1e5b;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 184, 42, 0.4);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

.why-choose {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: var(--dark-purple);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    background: var(--gold);
    color: var(--dark-purple);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    line-height: 1.6;
    opacity: 0.9;
}

.trusted-clients {
    padding: 80px 0;
    background: var(--white);
}

.trusted-clients .clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.trusted-clients .client-logo {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.trusted-clients .client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.trusted-clients .client-logo img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background: #16103a;
}

/* Add top spacing for first section on non-home pages */
.about-us:first-of-type,
.corporate:first-of-type,
.upcoming-events:first-of-type {
    margin-top: 80px;
    padding-top: 120px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 80px;
}

.about-story {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--gold);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.story-icon {
    background: var(--gold);
    color: var(--dark-purple);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.about-story h3 {
    color: var(--dark-purple);
    font-size: 2rem;
    font-weight: 700;
}

.about-story p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-story p:last-child {
    margin-bottom: 0;
}

.about-mission {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mission-card {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: var(--white);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(74, 58, 140, 0.2);
}

.mission-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(74, 58, 140, 0.3);
}

.mission-icon {
    background: var(--gold);
    color: var(--dark-purple);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.mission-card p {
    line-height: 1.7;
    opacity: 0.95;
}

/* Journey Timeline */
.journey-section {
    background: var(--light-gray);
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 80px;
}

.journey-title {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-purple);
    margin-bottom: 50px;
    font-weight: 700;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 90px);
    background: linear-gradient(to bottom, var(--gold), var(--primary-purple));
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-purple);
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 8px var(--gold);
}

.timeline-content {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    text-align: right;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
    color: var(--dark-purple);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
    margin-bottom: 80px;
}

.expertise-title {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-purple);
    margin-bottom: 50px;
    font-weight: 700;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.expertise-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: var(--gold);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    transform: rotate(360deg);
    background: var(--gold);
    color: var(--dark-purple);
}

.expertise-card h4 {
    color: var(--dark-purple);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.expertise-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 0;
}

.values-title {
    text-align: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 50px;
    font-weight: 700;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-item:hover {
    background: var(--gold);
    transform: translateY(-10px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.value-item:hover i {
    color: var(--dark-purple);
    transform: scale(1.2);
}

.value-item span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover span {
    color: var(--dark-purple);
}

.contact {
    padding: 80px 0;
    background: #16103a;
    position: relative;
}

/* Section title for contact */
.contact .section-title {
    color: var(--tt-text-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--tt-text-white);
    margin-bottom: 20px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--tt-gold);
    font-size: 1.2rem;
    width: 30px;
}

.contact-item a,
.contact-item p {
    color: var(--tt-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--tt-gold-light);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--tt-text-white);
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--tt-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(229, 184, 42, 0.1);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C9A227' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

.contact-form select option {
    background: #392a70;
    color: var(--tt-text-white);
}

.submit-btn {
    background: #E5B82A;
    color: #2a1e5b;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer {
    background: #16103a;
    color: var(--tt-text-white);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    color: var(--tt-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--tt-gold);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--tt-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .experience-category:nth-child(3) .experience-grid,
    .experience-category:nth-child(4) .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 1100px) {
    .phone-link span {
        display: none;
    }

    .phone-link {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        justify-content: center;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-container {
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .premium-header {
        padding: 0 20px;
    }

    .premium-header .header-inner {
        padding: 12px 20px;
        margin-top: 12px;
    }

    .nav-links,
    .nav-divider,
    .phone-link {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-contact {
        gap: 12px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 11px;
    }

    .cta-button span {
        display: none;
    }

    .logo-img {
        height: 40px;
    }

    .premium-header.scrolled {
        padding: 0 20px;
    }

    .premium-header.scrolled .header-inner {
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    /* Hero & Carousel Mobile Styles */
    .hero {
        height: 60vh;
        min-height: 350px;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(22, 16, 58, 0.35) 0%,
            rgba(22, 16, 58, 0.1) 5%,
            rgba(22, 16, 58, 0) 10%,
            rgba(22, 16, 58, 0) 65%,
            rgba(22, 16, 58, 0.35) 78%,
            rgba(22, 16, 58, 0.7) 88%,
            #16103a 96%,
            #16103a 100%
        );
    }

    .carousel-arrow {
        width: 48px;
        height: 48px;
        border-radius: 50%;
    }

    .carousel-arrow i {
        font-size: 18px;
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }

    .carousel-dots {
        bottom: 55px;
        padding: 8px 14px;
        gap: 8px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .scroll-down {
        bottom: 12px;
        font-size: 11px;
        gap: 4px;
    }

    .scroll-down i {
        font-size: 0.9rem;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .experience-category:nth-child(3) .experience-grid,
    .experience-category:nth-child(4) .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-subtitle {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .experience-card .card-image {
        height: 160px;
    }

    .clients-grid,
    .corporate-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    /* About Us Mobile Styles */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .timeline::before {
        left: 55px;
    }

    .timeline-item {
        justify-content: flex-start;
        padding-right: 0;
        padding-left: 95px;
        max-width: 100%;
    }

    .timeline {
        max-width: 100%;
        overflow: visible;
    }

    .journey-section {
        overflow: hidden;
        padding-left: 10px;
        padding-right: 10px;
    }

    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 95px;
    }

    .timeline-icon {
        left: 55px;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--gold);
    }

    .timeline-content {
        text-align: left;
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .values-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .events-table {
        overflow-x: visible;
        margin: 0;
        padding: 0;
        margin-top: 30px;
    }

    .events-table table {
        min-width: auto;
        width: 100%;
        border: 0;
        box-shadow: none;
    }

    /* Hide table header on mobile */
    .events-table thead {
        display: none;
    }

    /* Make each row a card */
    .events-table tbody {
        display: block;
    }

    .events-table tr {
        display: block;
        background: #392a70;
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Stack table cells vertically */
    .events-table td {
        display: block;
        text-align: left;
        padding: 10px 0;
        border: none;
        position: relative;
        color: var(--tt-text-white);
    }

    /* First cell (Event name) - larger and bold */
    .events-table td:first-child {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--tt-gold);
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(229, 184, 42, 0.3);
        margin-bottom: 10px;
    }

    /* Add labels using CSS pseudo-elements */
    .events-table td:nth-child(2)::before {
        content: '📍 ';
        font-size: 1rem;
        margin-right: 5px;
    }

    .events-table td:nth-child(3)::before {
        content: '📅 ';
        font-size: 1rem;
        margin-right: 5px;
    }

    /* Style location and date */
    .events-table td:nth-child(2),
    .events-table td:nth-child(3) {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
        padding: 8px 0;
    }

    .footer-content {
        gap: 30px;
    }

    .values-section {
        padding: 40px 20px;
    }
}

/* Extra Small Devices (Phones < 480px) */
@media (max-width: 480px) {
    .hero {
        height: 45vh;
        min-height: 300px;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(22, 16, 58, 0.3) 0%,
            rgba(22, 16, 58, 0.1) 5%,
            rgba(22, 16, 58, 0) 10%,
            rgba(22, 16, 58, 0) 60%,
            rgba(22, 16, 58, 0.4) 76%,
            rgba(22, 16, 58, 0.75) 88%,
            #16103a 96%,
            #16103a 100%
        );
    }

    .carousel-arrow {
        width: 42px;
        height: 42px;
        border-radius: 50%;
    }

    .carousel-arrow i {
        font-size: 16px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 45px;
        padding: 6px 12px;
        gap: 6px;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
    }

    .scroll-down {
        bottom: 10px;
    }

    .scroll-down span {
        display: none;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .experience-category:nth-child(3) .experience-grid,
    .experience-category:nth-child(4) .experience-grid {
        grid-template-columns: 1fr;
    }

    .section-subtitle {
        font-size: 1.6rem;
    }

    .experience-category {
        margin-bottom: 40px;
    }

    .experience-card .card-image {
        height: 200px;
    }

    /* Small Mobile Header */
    .premium-header {
        padding: 0 12px;
    }

    .premium-header .header-inner {
        padding: 10px 16px;
        margin-top: 10px;
    }

    .logo-img {
        height: 36px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
    }

    .cta-button {
        padding: 10px 16px;
    }

    .container {
        padding: 0 15px;
    }

    .footer-content {
        gap: 20px;
    }

    .values-container {
        gap: 15px;
    }

    .timeline-item {
        padding-left: 85px;
    }

    .timeline-item:nth-child(even) {
        padding-left: 85px;
    }

    .timeline::before {
        left: 45px;
    }

    .timeline-icon {
        left: 45px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Event cards refinement for extra small screens */
    .events-table tr {
        padding: 15px;
        margin-bottom: 15px;
    }

    .events-table td:first-child {
        font-size: 1rem;
        padding-bottom: 12px;
    }

    .events-table td:nth-child(2),
    .events-table td:nth-child(3) {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}

/* ========================================
   ABOUT PAGE V3 - COMPLETE REDESIGN
   Alternating backgrounds: #2e235d / #1c1549
   ======================================== */

/* ----------------------------------------
   ABOUT HERO SECTION V3
   ---------------------------------------- */

.about-hero-v3 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.about-hero-v3 .about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-v3 .about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-v3 .about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(46, 35, 93, 0.7) 0%,
        rgba(46, 35, 93, 0.5) 40%,
        rgba(46, 35, 93, 0.6) 70%,
        rgba(46, 35, 93, 0.95) 100%
    );
}

.about-hero-v3 .about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 40px 80px;
}

.hero-eyebrow {
    color: #E5B82A;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-hero-v3 .hero-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
}

.about-hero-v3 .hero-title span {
    color: #E5B82A;
}

.about-hero-v3 .hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Three Pillars */
.hero-pillars {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(229, 184, 42, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pillar-icon svg {
    width: 28px;
    height: 28px;
    color: #E5B82A;
}

.pillar:hover .pillar-icon {
    border-color: #E5B82A;
    background: rgba(229, 184, 42, 0.1);
}

.pillar span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Hero Scroll Indicator */
.about-hero-v3 .hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.about-hero-v3 .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #E5B82A, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ----------------------------------------
   SECTION DIVIDER - Gold Line
   ---------------------------------------- */

.section-divider {
    background: #2e235d;
    padding: 0;
    display: flex;
    justify-content: center;
}

.section-divider.dark {
    background: #1c1549;
}

.divider-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E5B82A, transparent);
}

/* ----------------------------------------
   JOURNEY SECTION V3
   Background: #2e235d
   ---------------------------------------- */

.journey-section-v3 {
    background: #2e235d;
    padding: 100px 40px 120px;
    position: relative;
}

.journey-section-v3 .container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Section Header V3 */
.section-header-v3 {
    margin-bottom: 70px;
}

.section-header-v3.centered {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow {
    color: #E5B82A;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title-v3 {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.section-title-large {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 700;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* Journey Cards V3 - Ascending */
.journey-cards-v3 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 24px;
}

.journey-card-v3 {
    width: 280px;
    transition: transform 0.4s ease;
}

.journey-card-v3:hover {
    transform: translateY(-12px);
}

/* Ascending Heights */
.journey-card-v3[data-step="1"] .journey-card-inner { min-height: 280px; }
.journey-card-v3[data-step="2"] .journey-card-inner { min-height: 340px; }
.journey-card-v3[data-step="3"] .journey-card-inner { min-height: 400px; }
.journey-card-v3[data-step="4"] .journey-card-inner { min-height: 460px; }

.journey-card-inner {
    background: linear-gradient(165deg, #f9d363 0%, #f2c758 25%, #E5B82A 50%, #e4b450 100%);
    border-radius: 24px;
    padding: 32px 24px 70px;
    position: relative;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(229, 184, 42, 0.12);
}

.journey-card-inner h4 {
    color: #2e235d;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.3;
}

.journey-card-inner p {
    color: rgba(46, 35, 93, 0.75);
    font-size: 14px;
    line-height: 1.7;
}

.journey-icon {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-icon svg {
    width: 36px;
    height: 36px;
    color: #2e235d;
    opacity: 0.4;
}

/* ----------------------------------------
   WHY CHOOSE SECTION V3
   Background: #1c1549 (DIFFERENT from Journey)
   ---------------------------------------- */

.why-choose-section-v3 {
    background: #1c1549;
    padding: 100px 40px 120px;
}

.why-choose-section-v3 .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Expertise Grid V3 */
.expertise-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 30px;
    padding-top: 20px;
}

/* Expertise Card V3 */
.expertise-card-v3 {
    background: #2e235d;
    border-radius: 20px;
    padding: 60px 28px 40px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.expertise-card-v3:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 184, 42, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Gold Icon Circle V3 */
.expertise-icon-v3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #f9d363 0%, #f2c758 30%, #E5B82A 60%, #e4b450 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow:
        0 0 30px rgba(229, 184, 42, 0.35),
        0 10px 25px rgba(0, 0, 0, 0.25);
}

.expertise-icon-v3 svg {
    width: 34px;
    height: 34px;
    color: #1c1549;
}

.expertise-card-v3 h4 {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 16px;
}

.expertise-card-v3 p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

/* ----------------------------------------
   CLIENTS SECTION V3
   Background: #2e235d (DIFFERENT from Why Choose)
   ---------------------------------------- */

.clients-section-v3 {
    background: #2e235d;
    padding: 100px 40px 120px;
    position: relative;
}

/* Top border accent */
.clients-section-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E5B82A, transparent);
}

.clients-section-v3 .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ----------------------------------------
   CLIENTS MARQUEE - Infinite Scroll
   Full-width breakout from container
   ---------------------------------------- */

.clients-marquee {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    margin-top: 60px;
    padding: 30px 0;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
    padding: 0 30px;
}

/* Pause on hover */
.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Client Logo Cards */
.client-logo {
    flex-shrink: 0;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    min-width: 170px;
    min-height: 85px;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(229, 184, 42, 0.1);
}

.client-logo img {
    max-width: 130px;
    max-height: 50px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.client-logo:hover img {
    opacity: 1;
}

/* ----------------------------------------
   CTA SECTION V3
   Background: #1c1549 (DIFFERENT from Clients)
   ---------------------------------------- */

.cta-section-v3 {
    background: #1c1549;
    padding: 100px 40px;
    text-align: center;
    position: relative;
}

/* Top accent */
.cta-section-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #E5B82A;
}

.cta-section-v3 .container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section-v3 h2 {
    color: #FFFFFF;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.cta-section-v3 h2 span {
    color: #E5B82A;
}

.cta-section-v3 > .container > p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    margin-bottom: 40px;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-phone,
.cta-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E5B82A;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-phone svg,
.cta-email svg {
    width: 20px;
    height: 20px;
}

.cta-phone:hover,
.cta-email:hover {
    color: #f9d363;
}

.cta-button-v3 {
    display: inline-block;
    background: linear-gradient(145deg, #f9d363 0%, #E5B82A 50%, #e4b450 100%);
    color: #1c1549;
    padding: 18px 50px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow:
        0 4px 30px rgba(229, 184, 42, 0.4),
        0 0 50px rgba(229, 184, 42, 0.12);
    transition: all 0.3s ease;
}

.cta-button-v3:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 40px rgba(229, 184, 42, 0.5),
        0 0 70px rgba(229, 184, 42, 0.2);
}

/* ----------------------------------------
   ABOUT PAGE V3 - RESPONSIVE STYLES
   ---------------------------------------- */

@media (max-width: 1200px) {
    .journey-cards-v3 {
        flex-wrap: wrap;
        align-items: stretch;
    }

    .journey-card-v3 {
        width: calc(50% - 12px);
    }

    .journey-card-inner {
        min-height: auto !important;
    }
}

@media (max-width: 1024px) {
    .expertise-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-v3 .about-hero-content {
        padding: 100px 24px 60px;
    }

    .about-hero-v3 .hero-title {
        font-size: 32px;
    }

    .about-hero-v3 .hero-description {
        font-size: 16px;
    }

    .hero-pillars {
        gap: 30px;
    }

    .pillar-icon {
        width: 50px;
        height: 50px;
    }

    .pillar span {
        font-size: 11px;
    }

    .about-hero-v3 .hero-scroll-indicator {
        display: none;
    }

    .journey-section-v3 {
        padding: 80px 24px 100px;
    }

    .section-title-v3 {
        font-size: 32px;
    }

    .journey-cards-v3 {
        flex-direction: column;
        align-items: center;
    }

    .journey-card-v3 {
        width: 100%;
        max-width: 400px;
    }

    .why-choose-section-v3 {
        padding: 100px 24px 80px;
    }

    .section-title-large {
        font-size: 30px;
    }

    .expertise-grid-v3 {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .expertise-card-v3 {
        padding: 50px 24px 36px;
    }

    .expertise-icon-v3 {
        width: 70px;
        height: 70px;
        top: -35px;
    }

    .expertise-icon-v3 svg {
        width: 28px;
        height: 28px;
    }

    .clients-section-v3 {
        padding: 80px 24px 100px;
    }

    .clients-track {
        gap: 40px;
        animation-duration: 25s;
    }

    .client-logo {
        padding: 20px 28px;
        min-width: 150px;
    }

    .client-logo img {
        max-width: 110px;
    }

    .cta-section-v3 {
        padding: 80px 24px;
    }

    .cta-section-v3 h2 {
        font-size: 28px;
    }

    .cta-contact {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-v3 .hero-title {
        font-size: 26px;
    }

    .section-title-v3 {
        font-size: 26px;
    }

    .section-title-large {
        font-size: 24px;
    }

    .cta-section-v3 h2 {
        font-size: 24px;
    }
}