/* --- CSS RESET & VARIABLES --- */
:root {
    --bg-primary: #090A0F;
    --bg-secondary: #12141D;
    --bg-tertiary: #1A1D29;
    --color-gold: #E31B23;
    /* Curated Ruby Red Accent */
    --color-gold-hover: #FF4D55;
    /* Brighter Red Hover */
    --color-gold-glow: rgba(227, 27, 35, 0.4);
    --text-primary: #FFFFFF;
    --text-secondary: #B3B7C6;
    --text-muted: #6E7385;
    --glass-bg: rgba(18, 20, 29, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-gold: rgba(227, 27, 35, 0.2);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- HEADINGS --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif !important;
    font-style: italic !important;
}

/* --- CUSTOM CURSOR --- */
.custom-cursor {
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    transition-timing-function: cubic-bezier(0.1, 0.8, 0.2, 1);
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
}

.custom-cursor.hovered {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold-hover);
}

/* --- UTILITIES --- */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.text-gold {
    color: var(--color-gold);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: var(--color-gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 50px;
}

/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header .section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 15px;
    padding: 0 20px;
    position: relative;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Remove default left line */
.section-header .section-tag::before {
    display: none;
}

/* Gold decorative lines on both sides of centered tag */
.section-header .section-tag::before,
.section-header .section-tag::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold));
    margin: 0 12px;
}
.section-header .section-tag::after {
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.section-header .section-title {
    font-size: 3.8rem;
    margin-bottom: 20px;
    text-align: center;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-delay: 0.15s;
}

.section-header .section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-delay: 0.3s;
}

/* Hide initially only if it is set as a reveal-item */
.section-header.reveal-item .section-tag {
    opacity: 0;
    transform: translateY(20px);
}
.section-header.reveal-item .section-title {
    opacity: 0;
    transform: translateY(30px);
}
.section-header.reveal-item .section-subtitle {
    opacity: 0;
    transform: translateY(20px);
}

/* Active transitions when section-header has the active class (triggered on scroll) */
.section-header.active .section-tag,
.section-header.active .section-title,
.section-header.active .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border: 2px solid var(--bg-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* --- MAIN HEADER / NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    z-index: 900;
    padding: 25px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-header.scrolled {
    top: 20px;
    width: 92%;
    max-width: 1400px;
    border-radius: 50px;
    padding: 10px 40px;
    background-color: rgba(9, 10, 15, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid var(--glass-border-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(227, 27, 35, 0.1);
}

.header-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.logo-img.short-logo {
    display: none;
}

.main-header.scrolled .logo-img.full-logo {
    height: 42px;
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    gap: 15px;
    /* Tighter gap for capsule style */
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--text-primary);
    background-color: rgba(227, 27, 35, 0.08);
    border-color: rgba(227, 27, 35, 0.25);
    box-shadow: 0 5px 15px rgba(227, 27, 35, 0.08);
}

.nav-link.active {
    color: var(--bg-primary);
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 5px 15px var(--color-gold-glow);
    font-weight: 600;
}

/* Dropdown Menu Desktop Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-chevron {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: rgba(18, 20, 29, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border-gold);
    border-radius: 6px;
    padding: 15px 0;
    margin-top: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: transform 0.3s cubic-bezier(0.1, 0.8, 0.2, 1), opacity 0.3s, visibility 0.3s;
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 16px;
    background-color: transparent;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-left: 2px solid transparent;
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    color: var(--text-primary);
    background-color: rgba(212, 175, 55, 0.05);
    border-left-color: var(--color-gold);
    padding-left: 25px;
}

/* Header Action Button */
.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 22px;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    color: var(--color-gold);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-gold);
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-quote:hover {
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.btn-quote:hover::before {
    left: 0;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* --- HERO SECTION & VIDEO SLIDER --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 10, 15, 0.95) 0%, rgba(9, 10, 15, 0.7) 40%, rgba(9, 10, 15, 0.4) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s, opacity 1.2s ease-out 0.3s;
}

.hero-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--color-gold);
    border: 1px solid var(--glass-border-gold);
    background-color: rgba(212, 175, 55, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    backdrop-filter: blur(5px);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.slide-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    font-weight: 300;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 80px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--glass-border);
    background-color: var(--glass-bg);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.control-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold-glow);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    left: 80px;
    bottom: 60px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 30px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    width: 60px;
    background-color: var(--color-gold);
    box-shadow: 0 0 5px var(--color-gold);
}

/* Scroll Down Mouse */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse-scroll {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
}

.mouse-scroll .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite ease-in-out;
}

.scroll-down-indicator .arrows {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}

.scroll-down-indicator .arrows span {
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    margin: -3px 0;
    animation: scroll-arrows 1.6s infinite;
}

.scroll-down-indicator .arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        top: 22px;
        opacity: 0;
    }
}

@keyframes scroll-arrows {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* --- STATS BAR --- */
.stats-bar-section {
    position: relative;
    z-index: 20;
    margin-top: -60px;
    padding-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border-gold);
    border-radius: 8px;
    padding: 35px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.stat-number,
.stat-number-wrapper {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 5px;
    display: inline-flex;
    align-items: baseline;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 4% 80px 4%;
    /* Add elegant left/right padding */
    background-color: var(--bg-primary);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-details {
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 0.98rem;
}

.about-story-col {
    position: relative;
}

.about-story-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 40px;
}

/* About Timeline styling */
.about-timeline {
    position: relative;
    margin-top: 30px;
    padding-left: 45px;
}

.timeline-line {
    position: absolute;
    top: 10px;
    left: 17px;
    width: 2px;
    height: calc(100% - 20px);
    background: rgba(255, 255, 255, 0.05);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Dynamic height animate via JS/ScrollTrigger */
    background: linear-gradient(to bottom, var(--color-gold) 0%, var(--color-gold-hover) 100%);
    box-shadow: 0 0 12px var(--color-gold-glow);
}

.timeline-step {
    position: relative;
    margin-bottom: 40px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-dot {
    position: absolute;
    left: -43px;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-step.active .step-dot {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
    box-shadow: 0 0 20px var(--color-gold-glow);
}

.step-content {
    padding-top: 4px;
}

.step-content h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    transition: color 0.4s ease;
}

.timeline-step.active .step-content h5 {
    color: #ffffff;
}

.step-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* About Cards Column and Ambient Glow */
.about-cards-col {
    position: relative;
}

.about-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 27, 35, 0.08) 0%, rgba(227, 27, 35, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: drift-glow 10s infinite alternate ease-in-out;
}

@keyframes drift-glow {
    0% { transform: translate(-30%, -40%) scale(1); }
    100% { transform: translate(-70%, -60%) scale(1.2); }
}

.about-cards-deck {
    position: relative;
    z-index: 2;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 3D Interactive Card Styling */
.about-card-3d {
    position: relative;
    background: rgba(18, 20, 29, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 4px solid rgba(227, 27, 35, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.about-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    transition: background 0.1s ease;
}

.about-card-3d:hover {
    border-color: rgba(227, 27, 35, 0.35);
    border-left-color: var(--color-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(227, 27, 35, 0.12);
}

/* Dim other cards on deck hover */
.about-cards-deck:hover .about-card-3d:not(:hover) {
    opacity: 0.4;
    filter: blur(0.5px);
    transform: scale(0.97);
}

.about-card-icon {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    color: var(--color-gold);
    margin-bottom: 18px;
    transform: translateZ(35px);
    background: rgba(227, 27, 35, 0.08);
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(227, 27, 35, 0.15);
    transition: all 0.4s ease;
}

.about-card-3d:hover .about-card-icon {
    background: var(--color-gold);
    color: #ffffff;
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.about-card-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    transform: translateZ(25px);
}

.about-card-text {
    position: relative;
    z-index: 2;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
    transform: translateZ(15px);
}

/* Infinite Scrolling Text Marquees */
.about-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 60px 0 20px 0;
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.about-marquee {
    display: flex;
    user-select: none;
    gap: 40px;
    width: 100%;
    overflow: hidden;
}

.marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    min-width: 100%;
}

.marquee-group span {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    letter-spacing: 4px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
}

.marquee-group span:hover {
    color: var(--color-gold);
    -webkit-text-stroke-color: var(--color-gold);
    text-shadow: 0 0 15px var(--color-gold-glow);
}

.marquee-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-gold);
    opacity: 0.25;
}

/* Infinite Scroll Keyframes */
.marquee-rtl .marquee-group {
    animation: scroll-rtl 32s linear infinite;
}

.marquee-ltr .marquee-group {
    animation: scroll-ltr 32s linear infinite;
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

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

    100% {
        transform: translateX(0);
    }
}

/* --- SERVICES SECTION --- */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

/* Stack Cards Container */
.stack-cards-container {
    position: relative;
    width: 100%;
    height: 90vh;
    /* Reduced height by 10% (100vh -> 90vh) */
    overflow: hidden;
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    .stack-cards-container {
        height: 90vh;
        margin: 40px 0;
        max-width: 100%;
        /* Full fluid container-fluid width */
    }
}

/* Stacking Card Design */
.stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-tertiary);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0px;
    /* Full-bleed edge-to-edge layout */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align content to bottom */
    align-items: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    margin-bottom: 0;
}

/* Image Column - Covers the entire card background */
.card-image-col {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

.card-image-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay: transparent top, dark bottom for perfect readability */
    background: linear-gradient(to bottom, rgba(9, 10, 15, 0.1) 0%, rgba(9, 10, 15, 0.4) 40%, rgba(9, 10, 15, 0.85) 100%);
    z-index: 2;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Content Column - Bottom Overlay */
.card-content-col {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 800px;
    padding: 40px 40px 60px;
    /* Generous bottom padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 18px;
    opacity: 1;
    transform: none;
    transition: all 0.4s ease;
}

.stack-card:hover .service-icon {
    background-color: var(--color-gold);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--color-gold-glow);
    transform: scale(1.1);
}

.stack-card h3 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.stack-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 680px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.card-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bg-primary);
    background-color: var(--color-gold);
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    opacity: 1;
    transform: none;
    transition: all 0.3s ease;
}

.stack-card:hover .card-learn-more {
    background-color: #ffffff;
    color: var(--bg-primary);
    box-shadow: 0 4px 18px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.card-learn-more i {
    transition: transform 0.3s ease;
}

.stack-card:hover .card-learn-more i {
    transform: translateX(5px);
}

/* Typing Animation & Cursor Styles */
.typing-cursor {
    display: inline-block;
    width: 2.5px;
    height: 1.1em;
    background-color: var(--color-gold);
    margin-left: 2px;
    vertical-align: middle;
    animation: cursor-blink 0.7s infinite;
}

@keyframes cursor-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Alternating Layout */
.stack-card:nth-child(even) .card-image-col {
    order: 2;
}

.stack-card:nth-child(even) .card-content-col {
    order: 1;
}

/* More Services Button */
.more-services-cta {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.btn-more-services {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    background-color: var(--bg-tertiary);
    border: 1px solid var(--glass-border-gold);
    padding: 15px 35px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-more-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-gold);
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-more-services:hover {
    color: var(--bg-primary);
    border-color: var(--color-gold);
    box-shadow: 0 15px 30px var(--color-gold-glow);
    transform: translateY(-3px);
}

.btn-more-services:hover::before {
    left: 0;
}

.btn-more-services i {
    transition: transform 0.3s ease;
}

.btn-more-services:hover i {
    transform: translateX(6px);
}

/* --- LOCATIONS SECTION --- */
.locations-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.locations-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.map-illustration-box {
    height: 480px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(rgba(212, 175, 55, 0.03) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.map-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}

.map-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
    opacity: 0.65;
    transition: opacity 0.4s ease;
}

.map-illustration-box:hover .map-bg-img {
    opacity: 0.85;
}

.pulse-ring {
    width: 16px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.pulse-ring:hover {
    transform: scale(1.3);
    background-color: var(--color-gold);
    border-color: #fff;
    box-shadow: 0 0 10px var(--color-gold-glow);
}

.pulse-ring.active {
    background-color: var(--color-gold);
    border-color: #fff;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: marker-pulse 2s infinite;
    transform: scale(1.1);
    z-index: 4;
}

@keyframes marker-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.8);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.map-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(10, 11, 17, 0.95);
    border: 1px solid var(--glass-border-gold);
    border-radius: 8px;
    padding: 20px;
    backdrop-filter: blur(15px);
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.map-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #4BB543;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.map-overlay-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.map-card-loc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.map-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px;
    background-color: var(--color-gold);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.map-card-btn:hover {
    background-color: var(--color-gold-hover);
    box-shadow: 0 0 15px var(--color-gold-glow);
    color: var(--bg-primary);
}

/* Locations List */
.locations-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.locations-list li {
    display: flex;
    gap: 20px;
    padding: 18px 20px;
    border: 1px solid transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.locations-list li:hover {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

.locations-list li.active {
    background-color: rgba(212, 175, 55, 0.04);
    border: 1px solid var(--glass-border-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.locations-list li:last-child {
    border-bottom-color: transparent;
}
.locations-list li.active:last-child {
    border-bottom-color: var(--glass-border-gold);
}

.loc-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1.1;
    transition: color 0.3s ease;
}

.locations-list li.active .loc-number {
    color: var(--color-gold);
}

.loc-details h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.locations-list li.active .loc-details h5 {
    color: var(--color-gold);
}

.loc-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* --- GALLERY SECTION --- */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px auto 45px;
}

.filter-btn {
    font-family: var(--font-heading);
    background-color: var(--bg-primary);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--color-gold-glow);
    background-color: rgba(227, 27, 35, 0.05);
}

.filter-btn.active {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--bg-primary);
    font-weight: 600;
    box-shadow: 0 5px 15px var(--color-gold-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: all 0.4s ease;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
    opacity: 1;
    transform: scale(1);
    background-color: var(--bg-primary);
}

.gallery-img-container {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 10, 15, 0.98) 0%, rgba(9, 10, 15, 0.75) 50%, rgba(9, 10, 15, 0.25) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.gallery-cat {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.05s;
}

.gallery-hover-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
    transform: translateY(22px);
    transition: transform 0.4s ease 0.12s;
}

.gallery-btn-view {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--bg-primary);
    background-color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transform: translateY(25px);
    box-shadow: 0 5px 15px rgba(227, 27, 35, 0.25);
    transition: transform 0.4s ease 0.15s, background-color 0.2s, box-shadow 0.2s;
}

.gallery-btn-view:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    box-shadow: 0 5px 20px var(--color-gold-glow);
}

.gallery-item:hover .gallery-img-container img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-cat,
.gallery-item:hover .gallery-hover-overlay h4,
.gallery-item:hover .gallery-desc,
.gallery-item:hover .gallery-btn-view {
    transform: translateY(0);
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 10, 15, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-container {
    position: relative;
    z-index: 1001;
    max-width: 90%;
    max-height: 85%;
    width: 800px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border-gold);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px var(--color-gold-glow);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-modal.active .lightbox-container {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 1005;
    transition: var(--transition-fast);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lightbox-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.lightbox-details {
    padding: 25px 30px;
    background-color: var(--bg-secondary);
}

.lightbox-details h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.lightbox-details p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .lightbox-container {
        width: 95%;
    }
    .lightbox-image {
        height: 260px;
    }
    .lightbox-details {
        padding: 20px;
    }
    .lightbox-details h3 {
        font-size: 1.2rem;
    }
    .lightbox-details p {
        font-size: 0.9rem;
    }
}

/* --- CONTACT & INQUIRY SECTION --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-info-details {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-gold);
    flex-shrink: 0;
}

.info-text h6 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-text p {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.info-text a:hover {
    color: var(--color-gold);
}

/* Form Styling */
.form-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border-gold);
    border-radius: 8px;
    padding: 45px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.form-wrapper h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 35px;
}

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

.form-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

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

.form-group select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--color-gold);
    color: var(--bg-primary);
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background-color: var(--color-gold-hover);
    box-shadow: 0 0 20px var(--color-gold-glow);
}

.form-status-message {
    margin-top: 15px;
    font-size: 0.92rem;
    text-align: center;
}

.form-status-message.success {
    color: #4BB543;
}

.form-status-message.error {
    color: #FF3333;
}

/* --- MAP SECTION --- */
.map-section {
    width: 100%;
    background-color: var(--bg-primary);
    position: relative;
    z-index: 10;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) grayscale(30%) contrast(95%) brightness(90%);
    transition: filter 0.4s ease;
}

.map-container iframe:hover {
    filter: none;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
    position: relative;
    z-index: 10;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--glass-border-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.faq-item.active {
    border-color: var(--color-gold);
    box-shadow: 0 15px 30px rgba(227, 27, 35, 0.08);
    background-color: var(--bg-tertiary);
}

.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    outline: none;
    transition: var(--transition-fast);
}

.faq-trigger:hover {
    color: var(--color-gold-hover);
}

.faq-question {
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon-wrapper {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.faq-item:hover .faq-icon-wrapper {
    border-color: var(--color-gold-glow);
    color: var(--color-gold);
}

.faq-item.active .faq-icon-wrapper {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--bg-primary);
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer {
    padding: 0 30px 24px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 70px 0;
    }
    .faq-trigger {
        padding: 20px;
        font-size: 1.05rem;
    }
    .faq-answer {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
}

/* --- FOOTER SECTION --- */
.footer-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.7fr 1.1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 45px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.social-links a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold-glow);
}

.footer-links h5,
.footer-contact h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links ul a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-contact .contact-text {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.footer-contact .contact-text i {
    color: var(--color-gold);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

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

/* --- ANIMATIONS (REVEAL ON SCROLL) --- */
.reveal-item,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-item {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-item.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* --- RESPONSIVE STYLING --- */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }

    .slide-title {
        font-size: 3.5rem;
    }

    .about-grid,
    .locations-grid,
    .contact-grid {
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
        gap: 30px;
    }
}

@media (max-width: 991px) {

    /* Custom cursor hide on touch devices */
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }

    .main-header {
        padding: 15px 0;
    }

    .logo-img.full-logo {
        display: none;
    }

    .logo-img.short-logo {
        display: block;
        height: 45px;
    }

    /* Navigation drawer for mobile */
    .mobile-nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-secondary);
        border-left: 1px solid var(--glass-border-gold);
        padding: 100px 40px 40px;
        z-index: 1000;
        transition: var(--transition-smooth);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }

    .nav-link {
        font-size: 1.2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* Mobile Dropdown Overrides */
    .nav-menu .dropdown-menu {
        position: static;
        width: 100%;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
    }

    .nav-menu .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 8px 0 8px 15px;
        font-size: 1rem;
        border-left: 2px solid rgba(212, 175, 55, 0.2);
    }

    .dropdown-menu li a:hover {
        padding-left: 20px;
    }

    .nav-chevron {
        font-size: 0.9rem;
        margin-left: 10px;
    }

    .dropdown.open .nav-chevron {
        transform: rotate(180deg);
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Section Grids */
    .about-grid,
    .locations-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-media {
        order: -1;
    }

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

    .stack-cards-container {
        position: relative;
        width: 100%;
        height: 90vh;
        /* Reduced height by 10% */
        padding: 0;
        margin: 0;
    }

    .stack-card {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0px;
        /* Full fluid edge-to-edge on mobile */
        padding: 30px 20px 40px;
        margin-bottom: 0;
        justify-content: flex-end;
    }

    .stack-card h3 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .stack-card p {
        font-size: 0.88rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .card-content-col {
        padding: 15px 20px;
        max-width: 100%;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .card-learn-more {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

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

    .gallery-img-container {
        height: 300px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem !important;
    }
    
    .section-header .section-title {
        font-size: 2.4rem !important;
    }

    .slide-title {
        font-size: 2.8rem;
    }

    .slide-description {
        font-size: 1.05rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 15px;
    }

    .stat-item {
        border-right: none;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .slider-controls {
        right: 20px;
    }

    .slider-indicators {
        left: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-item:nth-child(odd) {
        border-right: none;
    }

    .form-wrapper {
        padding: 25px;
    }

    .header-actions .btn-quote {
        display: none;
    }
}

/* --- HERO PARTICLES CANVAS --- */
.hero-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Sits above the background video/image but below the text content */
    pointer-events: none;
}

.hero-slide {
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 3;
    /* Sits above particles */
}

/* --- CAMPAIGN PLANNER WIDGET --- */
.campaign-planner-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: var(--font-body);
}

.planner-toggle-btn {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--glass-border-gold);
    color: var(--text-primary);
    padding: 12px 22px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(227, 27, 35, 0.1);
    transition: var(--transition-smooth);
    position: relative;
}

.planner-toggle-btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px var(--color-gold-glow);
}

.planner-toggle-btn i {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.pulse-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 30px;
    border: 2px solid var(--color-gold);
    animation: plannerPulse 2s infinite;
    pointer-events: none;
    opacity: 0.7;
}

@keyframes plannerPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.planner-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-gold);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.campaign-planner-widget.open .planner-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.planner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 12px;
}

.planner-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.planner-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.planner-close-btn:hover {
    color: var(--color-gold);
}

.planner-subtitle {
    font-size: 0.85rem;
    margin-top: -15px;
    margin-bottom: 20px;
}

.planner-group {
    margin-bottom: 20px;
}

.planner-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.planner-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.planner-label-row label {
    margin-bottom: 0;
}

.planner-input {
    width: 100%;
    background-color: rgba(9, 10, 15, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 10px 15px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-fast);
}

.planner-input:focus {
    border-color: var(--color-gold);
}

.planner-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.planner-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-gold);
    cursor: pointer;
    box-shadow: 0 0 10px var(--color-gold-glow);
    transition: var(--transition-fast);
}

.planner-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.planner-results {
    background-color: rgba(9, 10, 15, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.result-item .label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.result-item .value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-planner-apply {
    width: 100%;
    padding: 12px;
    background-color: var(--color-gold);
    color: var(--bg-primary);
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px var(--color-gold-glow);
}

.btn-planner-apply:hover {
    background-color: var(--color-gold-hover);
    box-shadow: 0 8px 20px var(--color-gold-glow);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .planner-window {
        width: 320px;
        bottom: 75px;
        right: -10px;
    }
}

/* Floating Communication Actions */
.floating-actions-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    background: rgba(10, 11, 17, 0.85);
    backdrop-filter: blur(10px);
}

/* Specific button styles */
.call-float {
    border: 1px solid rgba(0, 168, 255, 0.3);
    color: #00a8ff;
}

.call-float:hover {
    color: #fff;
    background: linear-gradient(135deg, #00a8ff, #0077b6);
    border-color: #00a8ff;
    box-shadow: 0 0 25px rgba(0, 168, 255, 0.6);
    transform: translateY(-5px) scale(1.05);
}

.whatsapp-float {
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.whatsapp-float:hover {
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-color: #25d366;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
    transform: translateY(-5px) scale(1.05);
}

.floating-btn i {
    font-size: 24px;
    z-index: 2;
}

/* Unique Ripple Animation (Wave) */
.floating-btn .pulse-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.call-float .pulse-wave {
    box-shadow: 0 0 0 0 rgba(0, 168, 255, 0.5);
    animation: float-ripple-blue 2.5s infinite;
}

.whatsapp-float .pulse-wave {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: float-ripple-green 2.5s infinite;
}

@keyframes float-ripple-blue {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 168, 255, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 168, 255, 0);
    }
    100% {
        transform: scale(1.2);
        box-shadow: 0 0 0 0 rgba(0, 168, 255, 0);
    }
}

@keyframes float-ripple-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1.2);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Unique Hover Tooltips */
.floating-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(20px);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--glass-border-gold);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Smooth Floating Sway Animation */
.floating-actions-container {
    animation: float-sway 4s ease-in-out infinite alternate;
}

@keyframes float-sway {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .floating-actions-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    .floating-btn i {
        font-size: 20px;
    }
    .floating-tooltip {
        display: none;
    }
}