:root {
    --primary: #0F172A;
    --secondary: #2563EB;
    --accent: #109f1e;
    --accent-dark: #059669;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --primary-blue: #0056B3;
    --primary-green: #10B981;
    --container-width: 1400px;
    --transition: all 0.3s ease;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

/* Global Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-blue {
    color: #ed3237 !important;
}

.gradient-text {
    color: white;
    display: inline-block;
}

/* Banner Title Consistency */
#hero h1,
.hero-section h1,
.page-hero h1,
.visitor-hero h1,


/* Removed restrictive global gradient-text rules to allow premium styling per page */

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.text-center {
    text-align: center !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.max-w-700 {
    max-width: 700px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 26px 0;
}

.text-center {
    text-align: center;
}

.text-green {
    color: var(--accent);
}

.text-white {
    color: var(--white) !important;
}

.text-gray {
    color: #94A3B8;
}

.bg-light {
    background-color: var(--bg-light);
}

.dark-bg {
    background-color: var(--primary);
    color: var(--white);
}

.mb-50 {
    margin-bottom: 50px;
}

.max-w-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background-color: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.23);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

.w-full {
    width: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    color: #000000;
    background: white;
    /* Explicitly transparent by default */
}

header.scrolled {
    top: 0;
    /* Stick to absolute top on scroll */
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-main);
    /* Dark text when scrolled */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

header.scrolled .nav-logo {
    height: 56px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

@media (max-width: 1366px) {
    .nav-links {
        gap: 1.5rem;
    }
}

.nav-links>li {
    position: relative;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links>li>a:hover {
    color: var(--secondary);
}

/* Dropdown Menu Styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    min-width: 210px;
    padding: 0.75rem 0;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(15, 23, 42, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    pointer-events: none;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

.dropdown li {
    padding: 0;
    margin: 0;
    list-style: none;
    display: block;
}

.dropdown li a {
    display: block !important;
    padding: 0.75rem 1.5rem !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    white-space: nowrap;
}

.dropdown li a:hover {
    background: rgba(37, 99, 235, 0.06);
    color: var(--secondary) !important;
    padding-left: 1.8rem !important;
}

.dropdown li:not(:last-child) {
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 1.35rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.12);
}

.mobile-menu-btn:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.25);
    outline-offset: 2px;
}

.mobile-menu-btn i {
    transition: transform 0.25s ease;
}

/* Hero Section */
#hero {
    height: 85vh;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slides .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slides .slide.active {
    opacity: 1;
}

/* Homepage Hero Slide Backgrounds with Premium Overlay gradients */
.hero-slides .slide-1 {
    background-image: linear-gradient(rgba(17, 46, 65, 0.258), rgba(15, 23, 42, 0.135)), url('assets/bg.png');
}

.hero-slides .slide-2 {
    background-image: linear-gradient(rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.071)), url('assets/MVlbslbekeREUf5-_V0YjEfykrzEx_6OYlgsync7j8Xqz3sr2OPHOTqbQOoupWrCGTA11lpuFdBdJV4RhHx3w0PkwFDalNa69FApnHUquSEww2BStFak1IY1bR18ClTY3v8IogojA34iwrzk_Dm-PzVF0VebxTU9HNkyYyIzYwe3noVVfogaNwv3ASo7cv8f.jpg');
}

.hero-slides .slide-3 {
    background-image: linear-gradient(rgba(15, 23, 42, 0.477), rgba(15, 23, 42, 0.2)), url('assets/banner3.png');
}


.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 6rem;
}

/* Hero Slide Dots Control */
.hero-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    z-index: 12;
}

.hero-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.85);
    transform: scale(1.25);
}

.hero-dots .dot.active {
    width: 28px;
    border-radius: 6px;
    background-color: #0000009c;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.8);
}

.page-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 160px 0 100px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.8rem) !important;
    color: var(--white) !important;
    margin-bottom: 1.2rem !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-weight: 800 !important;
    line-height: 1.1 !important;
    font-family: 'Outfit', sans-serif;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.25rem !important;
    max-width: 850px;
    margin: 0 auto !important;
    line-height: 1.6 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center !important;
}


.nav-links a.active {
    color: var(--secondary);
    font-weight: 700;
}







.media-tabs-container {
    background: var(--white);
    padding: 1.25rem 0;
    border-bottom: 1px solid #eef2f6;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.tab-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
}

.tab-item {
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    border: 1.5px solid transparent;
    background: #f8fafc;
}

.tab-item:hover {
    color: var(--secondary);
    background: #f1f5f9;
}

.tab-item.active {
    color: white;
    background: var(--primary);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.media-section {
    padding: 80px 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.media-section.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/11;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

.gallery-caption {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.video-card {
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary);
    border-color: var(--secondary);
}

.video-info {
    padding: 1.5rem;
    text-align: center;
}

.video-info h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {


    .video-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .media-tabs-container {
        padding: 1rem 0;
    }

    .tab-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .tab-item {
        padding: 0.6rem 1.4rem;
    }
}

/* Media Modal & Lightbox */
.media-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.media-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 10;
    width: 95%;
    max-width: 1100px;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.media-modal.active .modal-content {
    transform: scale(1) translateY(-30px);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.hero-dates {
    font-size: clamp(0.68rem, 2.6vw, 0.95rem);
    letter-spacing: 1px;
    color: #ffffff !important;
    background-color: #ed3237;
    padding: 0.25rem 0.8rem 0.25rem 0.8rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(237, 50, 55, 0.3);
    margin-top: 2rem !important;
}

.modal-close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.modal-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-img {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.video-container {
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16/9;
    background: black;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

.modal-caption {
    color: white;
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .modal-close {
        top: -40px;
        right: 10px;
        font-size: 2rem;
    }

    .modal-caption {
        font-size: 1rem;
        margin-top: 1rem;
    }
}



.hero-location {
    font-size: clamp(1rem, 1.45vw, 1.55rem);
    font-weight: 600;
    margin: 1 rem auto 0;
    letter-spacing: 1.4px;
    line-height: 1.45;
    max-width: 1180px;
    color: white;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.98;
    padding-top: 15px !important;
}

#hero h1 {
    font-size: clamp(3rem, 5vw, 5.9rem);
    line-height: 1;
    color: white;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.05em;
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.38);
}

.hero-title-lead {
    display: block;
}

#hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    text-shadow: 2px 6px 11px rgb(4 15 19);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
    width: 100%;
}

/* Button pinned at the bottom of the hero banner */
.hero-bottom-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;

}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.stat-item .stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-item .stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections Global */
.section-subtitle {
    display: block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* About Section Styled */
.about-image-container {
    position: relative;
    padding-right: 40px;
}

.about-img-styled {
    width: 100%;
    border-radius: 40px 10px 40px 10px;
    /* Custom shape matching the image vibe */
    box-shadow: var(--shadow-lg);
}

.overlap-logo {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #E2E8F0;
}

.circle-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.about-content-styled .about-header-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.0rem;
}

.about-header-icon {
    height: 55px;
    width: auto;
}

/* 
.header-line {
    width: 60px;
    height: 2px;
    background: #4A1E1B;
} */

.about-content-styled h2 {
    font-size: clamp(1.3rem, 2.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1A1A1A;
}

@media (min-width: 480px) {
    .about-content-styled h2 {
        white-space: nowrap;
    }


}

.about-content-styled p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-grid-text {
    margin: 2rem 0;
}

.about-col h4 {
    font-size: 0.9rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.promo-list li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
}

.promo-list i {
    color: var(--primary-blue);
    font-size: 0.8rem;
}

.mt-20 {
    margin-top: 20px;
}

.btn-burgundy {
    display: inline-flex;
    align-items: center;
    gap: 4.1rem;
    background: #2563EB;
    color: white;
    padding: 10px 10px 10px 28px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.28);
}

.btn-burgundy:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: white;
    color: #2563EB;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

/* Prime Categories Section */
.mb-50 {
    margin-bottom: 50px;
}

.categories-scroll-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 0 50px;
    /* Space for buttons */
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--secondary);
    border: 1px solid #e2e8f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.scroll-btn-prev {
    left: 0;
}

.scroll-btn-next {
    right: 0;
}

.prime-categories {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.prime-categories::-webkit-scrollbar {
    display: none;
}

.prime-cat-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: var(--transition);
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.prime-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.prime-cat-img {
    height: 220px;
    overflow: hidden;
}

.prime-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.prime-cat-card:hover .prime-cat-img img {
    transform: scale(1.08);
}

.prime-cat-info {
    padding: 1.5rem 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
}

.prime-cat-info h3 {
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.3;
    min-height: 3rem;
    /* Ensures all headings take up the same vertical space */
    display: flex;
    align-items: center;
    justify-content: center;
}

.prime-cat-info p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1rem;
    max-width: 100%;
    min-height: 6rem;
    /* Increased to accommodate up to 4-5 lines of text */
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.btn-yellow {
    background: #EAB308;
    /* Premium Gold/Yellow */
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    transition: var(--transition);
    width: 100%;
    max-width: 140px;
    margin-top: auto;
    /* Push to bottom */
}

.btn-yellow:hover {
    background: #CA8A04;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .categories-scroll-wrapper {
        padding: 0;
    }

    .scroll-btn {
        display: none;
    }

    .prime-categories {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        overflow: visible;
        scroll-snap-type: none;
    }

    .prime-cat-card {
        flex: none;
        min-width: 0;
        scroll-snap-align: none;
    }

    .prime-cat-card[aria-hidden="true"] {
        display: none;
    }

    .prime-cat-img {
        height: 205px;
    }
}

@media (max-width: 768px) {
    .prime-categories {
        grid-template-columns: 1fr;
    }

    .prime-cat-card {
        min-width: 0;
    }

    .prime-cat-card,
    .prime-cat-card:nth-child(even) {
        background: #ffffff;
    }

    .prime-cat-info {
        padding: 1.5rem;
    }

    .prime-cat-img {
        height: 190px;
    }
}

/* Why Exhibit Intro Section */
.why-exhibit-intro {
    padding: 60px 0 40px;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-exhibit-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.why-exhibit-intro .container {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.intro-accent-line {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto 2.5rem;
    border-radius: 2px;
}

.why-exhibit-intro h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.9rem);
    color: var(--primary);
    margin-bottom: 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Aligning all section titles on exhibit and visitor-related pages to match the "Why to Exhibit" title size */
#categories .text-center h2,
.guidelines-section .text-center h2,
.payment-header h3,
.layout-content-side h2,
.brochure-content h2,
.profiles-header-section .text-center h2,
.objectives-white-section .text-center h2 {
    font-size: clamp(1.8rem, 4.5vw, 2.9rem) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
}

.why-exhibit-intro .intro-text {
    font-size: 1.14rem;
    line-height: 1.8;
    color: #4B5563;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

@media (max-width: 768px) {
    .why-exhibit-intro {
        padding: 80px 0 60px;
    }

    .why-exhibit-intro .intro-text {
        font-size: 1.1rem;
    }
}

/* Why Attend Section (Nature & Green Theme) */
.why-attend-nature {
    position: relative;
    padding: 40px 0;
    background-image: url('assets/why_attend_bg.png');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: white;
    overflow: hidden;
}

.why-attend-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(6 78 59 / 57%) 0%, rgb(2 44 34 / 80%) 100%);
    z-index: 1;
}

.why-attend-nature .container {
    position: relative;
    z-index: 2;
}

.why-attend-header {
    text-align: center;
    margin-bottom: 30px;
}

.header-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-attend-header h2 {
    font-size: 2.2rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.header-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.why-attend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.276);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    min-height: 200px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary-green);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.why-card h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 700;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.85;
    text-align: center !important;
}

@media (max-width: 1200px) {

    .why-attend-grid,
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .why-attend-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-attend-header h2 {
        font-size: 2.5rem;
    }
}

/* Visitors Section (Image Accordion Redesign) */
.accordion-visitors {
    background: #ffffff;
}

.accordion-wrapper {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 15px;
    margin-top: 20px;
}

.accordion-strip {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background-image: var(--strip-img);
    background-size: 500% 100%;
    /* Since there are 5 strips in the combined image */
    background-position: var(--bg-pos) 0%;
    background-repeat: no-repeat;
}

.strip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.strip-content {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
    z-index: 2;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}

.strip-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.strip-content p {
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Hover State */
.accordion-strip:hover {
    flex: 4;
}

.accordion-strip:hover .strip-content {
    transform: translateY(0);
    opacity: 1;
}

.accordion-strip:hover .strip-overlay {
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

/* Fallback for when one is active by default */
.accordion-strip.active {
    flex: 2;
}

.accordion-strip.active .strip-content {
    opacity: 0.8;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .accordion-wrapper {
        height: 450px;
        gap: 10px;
    }

    .strip-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .accordion-wrapper {
        flex-direction: column;
        height: auto;
    }

    .hero-dots {
        position: absolute;
        bottom: 8px !important;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        z-index: 12;
    }

    .accordion-strip {
        height: 150px;
        flex: none;
        width: 100%;
        background-size: cover;
        background-position: center !important;
    }

    .accordion-strip:hover {
        flex: none;
        height: 250px;
    }

    .strip-content {
        opacity: 1;
        transform: translateY(0);
        bottom: 20px;
        left: 20px;
    }
}

/* Specifics Section */
.specifics-card {
    background: var(--white);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: var(--shadow-lg);
}

.specifics-header {
    text-align: center;
    margin-bottom: 3rem;
}

.specifics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.spec-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.services-offered {
    margin-top: 3rem;
}

.services-offered h5 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.services-grid span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.services-grid i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* Payment Section */
.payment-terms {
    background: #EFF6FF;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 4px solid #2563EB;
}

.payment-terms h4 {
    margin-bottom: 1.2rem;
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 700;
}

.payment-terms ul li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
    padding-left: 0.5rem;
    position: relative;
}

.payment-terms ul li::before {
    content: '✔';
    color: #2563EB;
    font-size: 0.8rem;
    margin-right: 0.6rem;
}

.payment-note {
    margin-top: 1.2rem;
    padding: 0.9rem 1.2rem;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #991B1B;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.5;
}

.payment-note i {
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-card p {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.premium-form {
    background: var(--white);
    padding: 2rem 43px 1px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #E2E8F0;
}

.premium-form h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.required {
    color: #ef4444;
    margin-left: 2px;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

/* Closing Brief Section */
.closing-brief {
    position: relative;
    padding: 30px 0;
    background: #ffffff;
}

.closing-brief-overlay {
    display: none;
    /* Removed as background is now localized */
}

.closing-brief-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    background: #F8FAFC;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.closing-brief-copy {
    padding: 38px 60px;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.7)), url('assets/presence_new_bg.png') no-repeat center center/cover;
    color: white;
}

.closing-brief-copy .section-subtitle {
    color: #38BDF8;
}

.closing-brief-copy h2 {
    color: var(--white);
    max-width: 15ch;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.closing-brief-highlight {
    color: #ffffff;
}

.closing-brief-copy p {
    max-width: 520px;
    color: #e5e7eb;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.closing-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.closing-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #38BDF8;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #eeeeef;
    opacity: 1;
}

.closing-brief-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.closing-brief-actions .btn-secondary {
    color: var(--secondary);
    border-color: rgba(37, 99, 235, 0.35);
}

.closing-brief-actions .btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.closing-brief-rail {
    display: grid;
    gap: 1rem;
    padding: 36px 50px;
    background: #F8FAFC;
}

.closing-brief-item {
    /* padding-bottom: 1.8rem; */
    border-bottom: 1px solid #E2E8F0;
}

.closing-brief-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.closing-brief-label {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stat-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #eeeeef;
    opacity: 1;
}

.closing-brief-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.closing-brief-actions .btn-secondary {
    color: var(--secondary);
    border-color: rgba(37, 99, 235, 0.35);
}

.closing-brief-actions .btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.closing-brief-rail {
    display: grid;
    gap: 1rem;
    padding: 36px 50px;
    background: #eaecef;
}

.closing-brief-item {
    /* padding-bottom: 1.8rem; */
    border-bottom: 1px solid #E2E8F0;
}

.closing-brief-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.closing-brief-label {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.closing-brief-item strong {
    display: block;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.closing-brief-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #475569;
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.footer-logo {
    height: 65px;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.6fr 1.4fr;
    gap: 3rem;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer-about p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.15);
    color: #fff;
}

.footer-links h4,
.footer-office h4,
.footer-contact h4 {
    color: var(--primary);
    margin-bottom: 1.8rem;
    font-weight: 700;
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-office h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #64748b;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(3px);
}

.footer-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.footer-info-item i {
    color: var(--secondary);
    font-size: 1.05rem;
    width: 20px;
    text-align: center;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}



.footer-info-content span {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.85;
}

.footer-info-content a {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-info-content a:hover {
    color: var(--secondary);
}

.phone-list {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

.email-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    background: #f8fafc;
    padding: 25px 0;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    text-align: right;
}

.footer-bottom a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--secondary);
}

.footer-bottom-links {
    margin-bottom: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .footer-bottom .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-bottom-links {
        justify-content: center;
        width: 100%;
        gap: 0.55rem 0.85rem;
    }

    .footer-bottom p {
        text-align: center;
        width: 100%;
    }
}

.link-separator {
    color: #cbd5e1;
    user-select: none;
}



/* Responsive */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .closing-brief-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.85rem);
        left: 0;
        right: 0;
        display: grid;
        gap: 0.35rem;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(148, 163, 184, 0.22);
        border-radius: 22px;
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        z-index: 1001;
    }

    header.nav-open .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    header.nav-open,
    header.scrolled.nav-open {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(14px);
        box-shadow: var(--shadow-md);
    }

    nav {
        position: relative;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links .has-dropdown>a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .nav-links .has-dropdown>a i {
        flex: 0 0 auto;
        transition: transform 0.25s ease;
    }

    .nav-links a {
        display: block;
        padding: 0.9rem 1rem;
        border-radius: 14px;
        font-size: 1rem;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: #eff6ff;
        color: var(--secondary);
    }

    .dropdown {
        position: static;
        min-width: 0;
        width: 100%;
        max-height: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
        background: #f8fafc;
        border: 0;
        border-radius: 16px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: max-height 0.25s ease, margin 0.25s ease, padding 0.25s ease;
    }

    .dropdown::before {
        display: none;
    }

    .nav-links li:hover .dropdown {
        transform: none;
    }

    .nav-links .has-dropdown.active>a {
        background: #eff6ff;
        color: var(--secondary);
    }

    .nav-links .has-dropdown.active>a i {
        transform: rotate(180deg);
    }

    .nav-links .has-dropdown.active>.dropdown {
        max-height: 280px;
        margin: 0.25rem 0 0.45rem;
        padding: 0.35rem;
    }

    .dropdown li a {
        padding: 0.75rem 0.9rem !important;
        border-radius: 12px;
        white-space: normal;
    }

    .dropdown li a:hover {
        padding-left: 0.9rem !important;
    }

    header.nav-open .mobile-menu-btn i {
        transform: rotate(90deg);
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .specifics-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 30px 0;
    }

    .closing-brief {
        padding: 52px 0;
    }

    .closing-brief-copy h2 {
        max-width: none;
    }

    .closing-brief-rail {
        padding-left: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    #hero {
        height: auto;
        min-height: 560px;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 100%;
        transform: translateY(-28px);
    }

    .hero-dates {
        letter-spacing: 1.8px;
    }

    #hero h1 {
        line-height: 1.05;
    }

    .hero-location {
        letter-spacing: 1px;
        margin-bottom: 2.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .strip-content h3 {
        white-space: normal;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        padding-left: 6;
    }

    .footer-about,
    .footer-links,
    .footer-office,
    .footer-contact {
        text-align: left;
    }

    .footer-about p {
        max-width: none;
    }

    .footer-about .social-links {
        justify-content: flex-start;
    }

    .footer-office p,
    .footer-contact>div {
        align-items: flex-start !important;
    }

    .footer-contact>div>div {
        min-width: 0;
        flex-wrap: wrap;
    }

    .footer-contact a,
    .footer-office span {
        overflow-wrap: anywhere;
        word-break: normal;
    }
}

/* Process Flow Section */
.process-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-icon {
    font-size: 2.2rem;
    color: var(--primary);
    /* Deep blue */
    background: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.process-step:hover .step-icon {
    transform: translateY(-10px);
    background: var(--accent);
    /* Yellow accent */
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(252, 163, 17, 0.4);
}

/* Connecting Line */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    /* Half of step-icon height */
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

@media (max-width: 768px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}

.step-details {
    text-align: center;
    color: #ffffff;
    opacity: 0.9;
    transition: var(--transition);
}

.process-step:hover .step-details {
    opacity: 1;
}

.step-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
}

.step-details p {
    font-size: 0.9rem;
    max-width: 150px;
    margin: 0 auto;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}



@media (max-width: 768px) {
    .process-wrapper {
        flex-direction: column;
        gap: 4rem;
        padding: 2rem;
    }
}

/* Parallax Section */
.parallax-section {
    padding: 3.5rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/parallax_bg.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 2rem 0;
}

.parallax-content {
    width: 100%;
}

.parallax-content h2 {
    font-size: 3.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    margin: 0;
}

.parallax-content .text-blue {
    color: #4CC9F0;
    /* Brighter blue for contrast on dark overlay */
}

/* Promotions Section */
.promo-spectrum {
    padding: 30px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.promo-spectrum-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

.promo-image-container {
    position: relative;
    height: 100%;
}

.promo-img-styled {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.promo-spectrum-copy {
    position: relative;
}

.promo-spectrum-copy .section-subtitle {
    color: var(--secondary);
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
}

.promo-spectrum-copy h2 {
    font-size: 2.3rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.promo-spectrum-copy p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.promo-spectrum-list {
    display: grid;
    gap: 0.8rem;
}

.promo-spectrum-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.promo-spectrum-row:hover {
    transform: translateX(10px);
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.promo-spectrum-index {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.promo-spectrum-row p {
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
}

@media (max-width: 992px) {
    .promo-spectrum-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .promo-image-container {
        order: 2;
    }

    .promo-spectrum-copy {
        order: 1;
    }

    .promo-spectrum-copy h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        padding: 2rem 0;
    }

    .parallax-content h2 {
        font-size: 2.2rem;
    }

    .promo-spectrum {
        padding: 28px 0 18px;
    }

    .promo-spectrum-shell {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.4rem 1.1rem;
        border-radius: 24px;
    }

    .promo-spectrum-copy h2 {
        max-width: none;
        font-size: 2rem;
    }

    .promo-spectrum-row {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 0.85rem;
        padding: 0.85rem 0.9rem;
    }

    .promo-spectrum-index {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 0.9rem;
    }
}

/* Visitor Section Redesign */
#visitors {
    position: relative;
    padding: 70px 0;
    background: url('assets/visitor_strips.png') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--white);
}

.visitors-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(15 23 42 / 59%) 0%, rgb(28 124 46 / 49%) 100%);
    z-index: 1;
}

#visitors .container {
    position: relative;
    z-index: 2;
}

#visitors h2,
#visitors .section-subtitle {
    color: var(--white);
}

.visitor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.visitor-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem 1.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    height: 100%;
}

.visitor-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

.visitor-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.visitor-card:hover .visitor-icon {
    background: var(--white);
    color: var(--primary);
    transform: rotate(10deg) scale(1.1);
}

.visitor-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--white);
    font-weight: 700;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visitor-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    text-align: center !important;
}

@media (max-width: 1200px) {
    .visitor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .visitor-grid {
        grid-template-columns: 1fr;
    }

    #visitors {
        padding: 60px 0;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    #hero {
        height: auto;
        min-height: 560px;
        padding-top: 132px;
        padding-bottom: 40px;
    }

    .hero-content {
        max-width: 46rem;
        transform: translateY(-20px);
        padding-bottom: 72px;
    }

    .hero-location {
        max-width: 42rem;
        margin-bottom: 2rem;
    }

    .about-image-container {
        padding-right: 0;
        max-width: 560px;
        margin: 0 auto;
        order: 2;
    }

    .about-content-styled {
        order: 1;
    }

    .process-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 1.25rem;
    }

    .process-step {
        flex: 0 1 calc(33.333% - 1rem);
        min-width: 180px;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .parallax-section,
    #visitors {
        background-attachment: scroll;
    }

    .promo-spectrum-grid {
        gap: 2.5rem;
    }

    .promo-image-container {
        max-width: 640px;
        margin: 0 auto;
    }

    .closing-brief-copy {
        padding: 42px 36px;
    }

    .closing-stats {
        gap: 1.75rem;
    }

    .closing-brief-rail {
        padding: 0 36px 36px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    header {
        padding: 0.65rem 0;
    }

    .nav-logo {
        height: 44px;
    }

    .nav-links {
        top: calc(100% + 0.65rem);
        padding: 0.65rem;
        border-radius: 18px;
    }

    #hero {
        margin-top: 60px;
        height: 56.25vw;
        min-height: 250px;
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        transform: none;
        padding-bottom: 0;
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-dates {
        font-size: clamp(0.68rem, 2.6vw, 0.95rem);
        letter-spacing: 1px;
        color: #ffffff !important;
        background-color: #ed3237;
        padding: 0.25rem 0.8rem;
        border-radius: 50px;
        display: inline-block;
        margin-bottom: 0.5rem;
        font-weight: 700;
        box-shadow: 0 4px 10px rgba(237, 50, 55, 0.3);
        margin-top: 1rem !important;
    }

    #hero h1 {
        font-size: clamp(1.3rem, 5.5vw, 2.3rem);
        line-height: 1.1;
    }

    .hero-location {
        font-size: clamp(0.68rem, 2.5vw, 0.92rem);
        letter-spacing: 0.5px;
        margin-bottom: 0;
    }

    .about-content-styled h2 {
        font-size: 2.1rem;
    }

    .btn-burgundy {
        width: 100%;
        justify-content: space-between;
        padding: 10px 10px 10px 20px;
    }

    .process-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 0.5rem 0;
    }

    .process-step {
        flex: none;
        width: 100%;
    }

    .step-icon {
        width: 68px;
        height: 68px;
        font-size: 1.85rem;
        margin-bottom: 1rem;
    }

    .step-details h4 {
        font-size: 1.05rem;
    }

    .promo-spectrum-grid {
        gap: 1.75rem;
    }

    .promo-spectrum-row {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: start;
        gap: 0.85rem;
        padding: 0.85rem 0.9rem;
    }

    .promo-spectrum-row:hover {
        transform: none;
    }

    .visitor-grid {
        margin-top: 2rem;
        gap: 1rem;
    }

    .visitor-card {
        padding: 1.5rem 1.25rem;
    }

    .closing-brief-inner {
        border-radius: 24px;
    }

    .closing-brief-copy {
        padding: 32px 24px;
    }

    .closing-brief-copy h2 {
        font-size: 2.1rem;
    }

    .closing-brief-copy p {
        margin-bottom: 1.75rem;
    }

    .closing-stats {
        flex-direction: column;
        gap: 1.25rem;
        margin-bottom: 0;
    }

    .closing-brief-rail {
        padding: 24px 24px 28px;
    }

    .footer {
        padding-top: 24px;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
        gap: 1.75rem 1rem;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-about,
    .footer-office {
        grid-column: 1 / -1;
        text-align: left;
    }

    .footer-links,
    .footer-contact {
        text-align: left;
    }

    .footer-about {
        order: 1;
    }

    .footer-links {
        order: 2;
    }

    .footer-contact {
        order: 3;
        transform: none;
    }


    .footer-office {
        order: 4;
    }

    .footer-about p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-about .social-links {
        justify-content: center;
    }

    .footer-office h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 0;
        transform: none;
    }

    .footer-office p {
        justify-content: center;
        text-align: left;
    }

    .footer-contact>div {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-links a,
    .footer-contact a,
    .footer-contact span,
    .footer-info-content span,
    .footer-office span {
        font-size: 0.88rem !important;
        font-family: 'Inter', sans-serif !important;
        color: #475569 !important;
        line-height: 1.7 !important;
    }

    .footer-office {
        margin-left: 0;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Footer Adjustments for Viewports under 400px */
@media (max-width: 400px) {
    .footer-grid {
        grid-template-columns: minmax(0, 0.5fr) minmax(0, 1.5fr) !important;
        gap: 1.75rem 0.5rem !important;
    }

    .footer-links a,
    .footer-contact a,
    .footer-contact span,
    .footer-info-content span,
    .footer-office span {
        font-size: 0.84rem !important;
    }

    .footer-contact a {
        white-space: nowrap !important;
    }

    .footer-contact {
        position: relative;
        left: 30px;
    }

    .footer-links {
        width: 100px;
        left: 15px;
    }
}

/* Footer Adjustments for Viewports from 400px to 750px */
@media (min-width: 400px) and (max-width: 750px) {
    /* .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.75rem 2rem !important;
    } */

    .footer-links {
        justify-self: center !important;
        width: auto !important;
    }

    .footer-contact {
        justify-self: center !important;
        width: auto !important;
    }

    /* Prevent email addresses from wrapping - keep on single line */
    .email-list a,
    .footer-contact a[href^="mailto"] {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        max-width: 100% !important;
    }

    /* Align phone numbers evenly when stacked */
    .phone-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.3rem !important;
    }

    .phone-list a {
        display: block !important;
        white-space: nowrap !important;
    }

    .phone-list .phone-sep {
        display: none !important;
    }
}






.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    color: var(--secondary);
    padding: 1.2rem 3rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-glass:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-glass i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-glass:hover i {
    transform: translateX(5px);
}

/* Global Responsive Polishing */
.page-hero .hero-content {
    transform: none;
    padding-bottom: 0;
}

.footer-bottom p {
    line-height: 1.6;
}

@media (max-width: 992px) {
    .page-hero {
        height: auto;
        min-height: 300px;
        padding: 128px 0 64px;
    }

    .page-hero .hero-content {
        max-width: 44rem;
    }

    .specifics-card {
        padding: 3rem 2rem;
    }

    .premium-form {
        padding: 2.25rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 250px;
        padding: 112px 0 48px;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 9vw, 3.25rem);
        line-height: 1.05;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .specifics-card {
        padding: 2rem 1.25rem;
        border-radius: 24px;
    }

    .premium-form {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
    }

    .closing-stat-item {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.9rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.78rem;
        letter-spacing: 1.6px;
    }

    .premium-form {
        padding: 1.25rem;
    }

    .form-group textarea {
        min-height: 110px;
    }

    .footer-contact>div {
        display: grid !important;
        grid-template-columns: 22px minmax(0, 1fr);
        gap: 0.4rem !important;
        justify-content: stretch;
        max-width: 100%;
    }

    .footer-contact>div>div {
        display: flex !important;
        flex-direction: column;
        gap: 0.35rem 0.5rem !important;
        width: 100%;
    }

    .footer-contact strong {
        min-width: 0 !important;
    }

    .footer-contact>div>div>div,
    .footer-contact span {
        min-width: 0;
    }

    .footer-links a,
    .footer-contact a,
    .footer-contact span,
    .footer-info-content span,
    .footer-office span {
        font-size: 0.82rem !important;
        font-family: 'Inter', sans-serif !important;
        color: #475569 !important;
        line-height: 1.6 !important;
    }
}

.brochure-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.brochure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.brochure-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.brochure-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.brochure-img-container {
    position: relative;
    z-index: 2;
}

.brochure-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--secondary);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-download i {
    font-size: 1.3rem;
}

@media (max-width: 992px) {
    .brochure-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .brochure-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

.layout-section {
    background: var(--white);
    padding: 21px 0;
}

.layout-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.layout-flex-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.layout-img-side {
    flex: 0.8;
    max-width: 450px;
    min-width: 300px;
    text-align: center;
}

.layout-content-side {
    flex: 0.8;
    min-width: 300px;
    text-align: left;
}

.layout-content-side h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.layout-content-side h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.layout-content-side p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.layout-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease backwards;
}

.info-item:hover {
    transform: translateX(8px);
    background: white;
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}

.info-label {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.info-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
}

.layout-img-wrapper {
    background: var(--white);
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f6;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.layout-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.layout-img-wrapper:hover .layout-img {
    transform: scale(1.02);
}

.layout-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* Zoom Modal */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-modal.active {
    display: flex;
    opacity: 1;
}

.zoom-modal-content {
    max-width: 95%;
    max-height: 95%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zoom-modal-content.zoomed-container {
    overflow: auto;
    display: block;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
}

.zoom-modal.active .zoom-modal-content {
    transform: scale(1);
}

.zoom-modal-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    background: white;
    display: block;
    cursor: zoom-in;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-modal-img.zoomed {
    max-width: none;
    max-height: none;
    width: 250%;
    height: auto;
    transform: none;
    cursor: zoom-out;
    margin: 0 auto;
}

.zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
}

.zoom-close:hover {
    color: var(--secondary);
}

.view-plan-btn {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.view-plan-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
    color: white;
}

@media (max-width: 992px) {
    .layout-flex-wrapper {
        gap: 3rem;
        justify-content: center;
    }

    .layout-img-side,
    .layout-content-side {
        flex: 1 1 100%;
        max-width: none;
        min-width: 0;
    }

    .layout-content-side {
        text-align: center;
    }

    .layout-content-side h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .layout-info-list {
        gap: 1.25rem;
    }

    .info-item {
        align-items: center;
        border-left: none;
        border-top: 3px solid var(--primary);
        padding-left: 0;
        padding-top: 1rem;
    }
}

/* Split Guidelines Section */
.guidelines-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.premium-bg-section {
    color: white;
}

.guidelines-split-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

.guidelines-sticky-side {
    position: sticky;
    top: 120px;
}


.guideline-sticky-card {
    background: white;
    color: var(--primary);
    padding: 2.5rem;
    border-radius: 40px;
    box-shadow: 0 40px 80px -15px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
}

.glass-card h3,
.glass-card h4,
.glass-card p,
.glass-card span {
    color: white !important;
}

.glass-card .service-icon-box {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #60a5fa !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card .guideline-sticky-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.glass-card .guideline-sticky-list li strong {
    color: #60a5fa !important;
}

.guideline-sticky-card h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guideline-sticky-card h3 i {
    color: var(--secondary);
}

.guideline-sticky-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guideline-sticky-list li {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.guideline-sticky-list li:last-child {
    border-bottom: none;
}

.guideline-sticky-list li strong {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    font-weight: 700;
}

.guideline-sticky-list li span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.guideline-sticky-card:hover {
    transform: translateY(-5px);
}

.guideline-sticky-list li span {
    font-size: 1.1rem;
    font-weight: 600;
}

.services-scroll-side {
    display: flex;
    flex-direction: column;
    gap: 2.9rem;
}

/* Guidelines Instruction Section */
.guidelines-instruction-section {
    padding: 60px 0 30px;
    background: white;
}

.instruction-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.instruction-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #60a5fa;
}

.instruction-banner h3 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.payment-terms-section {
    padding: 40px 0 50px;
    background: white;
}

.service-feature-card {
    background: #f8fafc;
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    background: white;
    border-color: var(--secondary);
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.service-feature-card:hover .service-icon-box {
    background: var(--secondary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-feature-card:hover .service-text h4 {
    color: var(--secondary);
}

.service-icon-box {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-text h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.service-text p {
    color: var(--text-main);
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.payment-terms-banner {
    margin-top: 0;
    background: #f8fafc;
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.payment-header {
    text-align: center;
}

.payment-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.payment-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.payment-phases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.phase-card {
    background: #e8eaeb;
    padding: 1.5rem;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.phase-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    align-self: flex-start;
}

.phase-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.phase-card p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
}

.payment-footer-details {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.instruction-text {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.7;
}

.instruction-text strong {
    color: var(--primary);
}

.critical-note {
    background: #fff5f5;
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid #fee2e2;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.critical-note i {
    color: #ef4444;
    font-size: 1.1rem;
}

.critical-note span {
    color: #7f1d1d;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

@media (max-width: 992px) {

    .payment-phases,
    .payment-footer-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .payment-terms-banner {
        padding: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .guidelines-split-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .guidelines-sticky-side {
        position: static;
    }

    .payment-terms-banner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .phase-card {
        text-align: left !important;
        align-items: flex-start !important;
    }

    .phase-card h4,
    .phase-card p {
        text-align: left !important;
    }
}

@media (max-width: 640px) {
    .service-feature-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}



/* Layout Visual Specifics */
.layout-visual {
    background: var(--white);
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
    margin-top: 3rem;
    overflow: hidden;
}

.layout-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.layout-visual:hover img {
    transform: scale(1.01);
}

/* Media Section Styles - Restored */
.media-section {
    padding: 80px 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/11;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(15, 23, 42, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

.gallery-caption {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.video-card {
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary);
    border-color: var(--secondary);
}

.video-info {
    padding: 1.5rem;
    text-align: center;
}

.video-info h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.video-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Staggered Categories Layout */
.categories-staggered-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
}

.staggered-cat-item {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.staggered-cat-item:nth-child(even) {
    direction: rtl;
}

.staggered-cat-item:nth-child(even) .staggered-cat-content {
    direction: ltr;
}

.staggered-cat-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--secondary);
    opacity: 0.15;
    margin-bottom: -1rem;
}

.staggered-cat-content h3 {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 1.2;
}

.staggered-cat-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-main);
    opacity: 0.85;
}

.cat-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cat-features li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.cat-features li i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.staggered-cat-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.2);
    aspect-ratio: 4/3;
}

.staggered-cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.staggered-cat-item:hover .staggered-cat-image img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .staggered-cat-item {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .staggered-cat-item:nth-child(even) {
        direction: ltr;
    }

    .cat-number {
        font-size: 3rem;
        margin-bottom: 0;
    }

    .staggered-cat-content {
        align-items: center;
    }

    .cat-features {
        align-items: flex-start;
        display: inline-flex;
    }
}

/* Global Stage Split Layout */
.stage-split-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.stage-content-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stage-item {
    display: flex;
    /* gap: 1.5rem; */
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    cursor: default;
}

.stage-item:hover {
    transform: translateX(10px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.stage-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    color: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.stage-item:hover .stage-icon {
    background: var(--secondary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.stage-info h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.stage-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.stage-image-side {
    position: sticky;
    top: 120px;
}

.stage-img-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    border: 8px solid white;
}

.stage-img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.stage-img-container:hover img {
    transform: scale(1.05);
}

.stage-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.4), transparent);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .stage-split-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stage-image-side {
        position: static;
        order: -1;
    }
}

/* Accordion Styles for Global Stage */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.accordion-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    padding: 0 !important;
    /* Reset padding for accordion items */
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.accordion-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.05);
}

.accordion-header h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0;
    flex-grow: 1;
}

.accordion-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 0.85rem;
    transition: all 0.4s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    background: var(--secondary);
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 1.5rem;
}

.accordion-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Mobile Adjustments */
@media (max-width: 640px) {
    .accordion-header {
        padding: 1.25rem;
        gap: 1rem;
    }

    .accordion-header h3 {
        font-size: 1.1rem;
    }

    .accordion-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Enquiry Action Button & Premium Registration Pop-up Modal
   ========================================================================== */

.about-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 5.2rem;
    background: #10B981;
    /* Brand premium green accent */
    color: white;
    padding: 10px 10px 10px 28px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.28);
}

.btn-accent:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
}

.btn-accent .btn-icon {
    color: #10B981;
    /* Green icon in white container */
}

/* Modal Core Setup */
.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.enquiry-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.enquiry-modal .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
    transition: opacity 0.4s ease;
}

/* Modal Card Style */
.enquiry-modal .modal-card {
    position: relative;
    z-index: 10;
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.enquiry-modal.active .modal-card {
    transform: scale(1) translateY(0);
}

/* Modal Header styling with Brand Royal Blue */
.enquiry-modal .modal-header {
    background: #2563EB;
    /* Premium Brand Royal Blue */
    color: #ffffff;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 15;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.enquiry-modal .modal-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.enquiry-modal .modal-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-modal .modal-close-btn:hover {
    color: #10B981;
    /* Glow green on hover */
    transform: scale(1.1) rotate(90deg);
}

/* Modal Form Styles */
.enquiry-modal .modal-form {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: calc(90vh - 60px);
    gap: 0;
}

.enquiry-modal .modal-form-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Segmented Tab Area */
.enquiry-modal .modal-tab-container-sticky {
    padding: 1.25rem 1.5rem 0.5rem;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    z-index: 11;
}

.enquiry-modal .modal-tab-selector {
    display: flex;
    background: #f1f5f9;
    padding: 0.3rem;
    border-radius: 10px;
    gap: 0.3rem;
}

.enquiry-modal .tab-label {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.enquiry-modal .tab-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.enquiry-modal .tab-text {
    display: block;
    text-align: center;
    padding: 0.55rem;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #64748b;
    transition: all 0.3s ease;
}


.enquiry-modal .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.enquiry-modal .form-group label {
    font-weight: 700;
    font-size: 0.8rem;
    color: #1e293b;
}

.enquiry-modal .form-group label .required {
    color: #ef4444;
    margin-left: 2px;
}

.enquiry-modal .form-group input,
.enquiry-modal .form-group select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.enquiry-modal .form-group input::placeholder {
    color: #94a3b8;
}

.enquiry-modal .form-group input:focus,
.enquiry-modal .form-group select:focus {
    border-color: #2563EB;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Select arrows customization */
.enquiry-modal .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1rem;
    padding-right: 2.2rem;
    cursor: pointer;
}

/* Form Visibility Toggles */
.enquiry-modal .form-group.hidden {
    display: none !important;
}

/* Validation styling */
.enquiry-modal .error-msg {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 2px;
    display: none;
}

.enquiry-modal .form-group.invalid input,
.enquiry-modal .form-group.invalid select {
    border-color: #ef4444 !important;
    background: #fff5f5 !important;
}

.enquiry-modal .form-group.invalid .error-msg {
    display: block;
}

/* Modal Actions Buttons styling */
.enquiry-modal .modal-footer-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    border-top: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.enquiry-modal .btn-cancel {
    background: #64748b;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.2);
}

.enquiry-modal .btn-cancel:hover {
    background: #475569;
    transform: translateY(-2px);
}

.enquiry-modal .btn-submit {
    background: #2563EB;
    /* Royal Blue theme instead of Red */
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.enquiry-modal .btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

.enquiry-modal .tab-label input[type="radio"]:checked+.tab-text {
    background: #2563EB;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.enquiry-modal .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 1rem;
}

/* Success Dialog Styles */
.enquiry-modal .modal-success-screen {
    padding: 3.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
}

.enquiry-modal .success-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.enquiry-modal .success-checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e6fbf4;
    color: #10B981;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #10B981;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
    animation: success-bounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.enquiry-modal .modal-success-screen h3 {
    margin: 0;
    font-size: 1.6rem;
    color: #1e293b;
    font-weight: 800;
}

.enquiry-modal .modal-success-screen p {
    margin: 0;
    font-size: 1rem;
    color: #64748b;
    max-width: 440px;
    line-height: 1.6;
    text-align: center;
}

.enquiry-modal .btn-success-close {
    background: #10B981;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
    margin-top: 0.5rem;
}

.enquiry-modal .btn-success-close:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.35);
}

@keyframes success-bounce {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .enquiry-modal .form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .enquiry-modal .modal-form {
        padding: 0;
        gap: 0;
    }

    .enquiry-modal .modal-tab-container-sticky {
        padding: 1rem 1.25rem 0.5rem;
    }

    .enquiry-modal .modal-form-body {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .enquiry-modal .modal-header {
        padding: 1.2rem 1.5rem;
    }

    .enquiry-modal .modal-header h3 {
        font-size: 1.1rem;
    }

    .enquiry-modal .modal-footer-actions {
        flex-direction: column-reverse;
        gap: 0.75rem;
        padding: 1rem 1.25rem;
    }

    .enquiry-modal .btn-cancel,
    .enquiry-modal .btn-submit {
        width: 100%;
        padding: 0.85rem;
    }

    .about-actions {
        display: flex;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.6rem !important;
        width: 100% !important;
        margin-top: 1.5rem !important;
    }

    .about-actions .btn-burgundy,
    .about-actions .btn-accent {
        flex: 1 !important;
        min-width: 0 !important;
        padding: 10px 10px 10px 16px !important;
        font-size: 0.95rem !important;
        gap: 0.4rem !important;
        justify-content: space-between !important;
        border-radius: 12px !important;
    }

    .about-actions .btn-burgundy .btn-icon,
    .about-actions .btn-accent .btn-icon {
        width: 32px !important;
        height: 32px !important;
        border-radius: 8px !important;
        font-size: 0.9rem !important;
        flex-shrink: 0 !important;
    }

    .phone-list {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.25rem !important;
    }

    .phone-list .phone-sep {
        display: none !important;
    }
}