/* --- CSS RESET & VARIABLES --- */
:root {
    --bg-primary: #000000;
    --bg-secondary: #0A0A0A;
    --bg-tertiary: #121212;
    --color-gold: #ffde5b;
    /* Brand Gold/Yellow Accent */
    --color-gold-hover: #ffe47e;
    /* Brighter Gold Hover */
    --color-gold-glow: rgba(255, 222, 91, 0.4);
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-muted: #888888;
    --glass-bg: rgba(10, 10, 10, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-gold: rgba(255, 222, 91, 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;
}

/* --- 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-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: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1400px;
    z-index: 900;
    padding: 12px 40px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.main-header.scrolled {
    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(255, 222, 91, 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: 60px;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

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

/* 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(--color-gold);
    background-color: rgba(255, 222, 91, 0.08);
    border-color: rgba(255, 222, 91, 0.25);
    box-shadow: 0 5px 15px rgba(255, 222, 91, 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(--color-gold);
    background-color: rgba(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 0.08) 0%, rgba(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 0.35);
    border-left-color: var(--color-gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 222, 91, 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(255, 222, 91, 0.08);
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 0.2);
    border-bottom: 1px solid rgba(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 0.8);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 222, 91, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 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(255, 222, 91, 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: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 100px 0 45px;
    position: relative;
    overflow: hidden;
}

/* Glow Orbs behind the footer */
.footer-glow-orb-1 {
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 222, 91, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-glow-orb-2 {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 222, 91, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 222, 91, 0.3), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-brand .footer-logo {
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.footer-brand .footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 222, 91, 0.25));
}

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

.footer-badge-wrapper {
    margin-bottom: 25px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 222, 91, 0.08);
    border: 1px solid rgba(255, 222, 91, 0.2);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 222, 91);
    z-index: -1;
    transition: top 0.3s ease;
}

.social-links a:hover {
    color: #FFFFFF;
    border-color: rgb(255, 222, 91);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 222, 91, 0.3);
}

.social-links a:hover::before {
    top: 0;
}

.footer-links h5,
.footer-newsletter 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.92rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links ul a::before {
    content: '→';
    font-size: 0.85rem;
    opacity: 0;
    width: 0;
    margin-right: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: rgb(255, 222, 91);
}

.footer-links ul a:hover {
    color: rgb(255, 222, 91) !important;
    transform: translateX(5px);
}

.footer-links ul a:hover::before {
    opacity: 1;
    width: 12px;
    margin-right: 6px;
    transform: translateX(0);
}

/* Newsletter Styles */
.footer-newsletter p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-newsletter-form .input-group {
    display: flex;
    position: relative;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4px;
    transition: all 0.3s ease;
}

.footer-newsletter-form .input-group:focus-within {
    border-color: rgba(255, 222, 91, 0.4);
    box-shadow: 0 0 15px rgba(255, 222, 91, 0.05);
}

.footer-newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 20px;
    color: #FFFFFF;
    font-size: 0.88rem;
}

.footer-newsletter-form input::placeholder {
    color: var(--text-muted);
}

.footer-newsletter-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(255, 222, 91);
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
    background-color: rgb(200, 30, 0);
    transform: scale(1.05);
}

/* Footer Mid Contact Grid */
.footer-mid {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-info-block {
    display: flex;
    gap: 15px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 222, 91, 0.05);
    border: 1px solid rgba(255, 222, 91, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 222, 91);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-block:hover .contact-info-icon {
    background: rgb(255, 222, 91);
    border-color: rgb(255, 222, 91);
    color: #FFFFFF;
    transform: translateY(-3px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(255, 222, 91, 0.3);
}

.contact-info-text h6 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 6px 0;
}

.contact-info-text p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.contact-info-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: rgb(255, 222, 91);
}

.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 {
    transition: color 0.3s ease;
    text-decoration: none;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: rgb(255, 222, 91);
}

/* --- 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) {

    .main-header {
        top: 15px;
        width: 94%;
        padding: 8px 20px;
        border-radius: 40px;
        background-color: transparent;
        border: 1px solid transparent;
        box-shadow: none;
    }

    .main-header.scrolled {
        background-color: rgba(9, 10, 15, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid var(--glass-border-gold);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 222, 91, 0.1);
    }

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

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

    /* 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(255, 222, 91, 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(255, 222, 91, 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;
    }

    .progress-wrap {
        right: 22px;
        bottom: 144px;
    }
}

/* --- MEGA MENU SYSTEM --- */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 20px);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border-gold);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 222, 91, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s, visibility 0.4s;
    z-index: 1000;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 50px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
}

.mega-menu-title {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-title i {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding-left: 0;
}

.mega-menu-list li {
    width: 100%;
}

.mega-menu-list li a {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    display: inline-block;
    padding: 2px 0;
    text-decoration: none;
}

.mega-menu-list li a:hover {
    color: var(--color-gold-hover);
    transform: translateX(4px);
}

.view-all-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem !important;
    color: var(--color-gold) !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    text-decoration: none;
}

.view-all-link i {
    transition: transform 0.2s ease;
}

.view-all-link:hover i {
    transform: translateX(4px);
}

/* Make sure mobile responsive compatibility is set */
@media (max-width: 991px) {
    .mega-dropdown {
        position: relative !important;
    }

    .mega-menu {
        position: static;
        width: 100%;
        max-width: 100%;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 20px;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }

    .mega-dropdown:hover .mega-menu {
        display: block;
    }

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

/* Client Brand Logos Section */
.about-brands-wrapper {
    width: 100%;
    padding: 60px 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid rgba(255, 222, 91, 0.15);
    position: relative;
}

.about-brands-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 40px;
}

.about-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.about-brand-logo {
    width: 140px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.55;
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.02);
}

.about-brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: rgb(255, 222, 91);
    box-shadow: 0 10px 20px rgba(255, 222, 91, 0.08);
}

.about-brand-logo svg {
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 768px) {
    .about-brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Google Reviews Section styling */
.reviews-section {
    width: 100%;
    padding: 100px 0;
    background-color: var(--bg-secondary);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.google-rating-summary {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px auto 40px auto;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 25px;
    border-radius: 50px;
}

.google-rating-summary .google-logo {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 6px;
}

.google-rating-summary .google-logo i {
    color: #4285F4;
}

.google-rating-summary .stars i {
    color: #FBBC05;
    font-size: 0.9rem;
}

.google-rating-summary .rating-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.google-rating-summary .rating-text strong {
    color: #FFFFFF;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.reviews-header-left {
    text-align: left;
}

.reviews-header-right {
    display: flex;
    align-items: center;
}

.google-write-review-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1a73e8;
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
    border: none;
    cursor: pointer;
}

.google-write-review-btn-large:hover {
    background-color: #1557b0;
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
    transform: translateY(-2px);
}

.google-write-review-btn-large i {
    font-size: 1.05rem;
    color: #FFFFFF !important;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.review-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgb(255, 222, 91);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
}

.avatar-blue { background-color: #4285F4; }
.avatar-red { background-color: #EA4335; }
.avatar-yellow { background-color: #FBBC05; }
.avatar-green { background-color: #34A853; }

.review-user-info {
    display: flex;
    flex-direction: column;
}

.review-username {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    display: flex;
    align-items: center;
    gap: 6px;
}

.local-guide-badge {
    color: #FBBC05;
    font-size: 0.72rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.review-stats {
    font-size: 0.78rem;
    color: #555555;
    margin-top: 2px;
}

.google-icon {
    position: absolute;
    right: 0;
    top: 5px;
    color: rgba(0, 0, 0, 0.15);
    font-size: 1.1rem;
}

.review-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.review-rating-row .stars i {
    color: #FBBC05;
    font-size: 0.85rem;
}

.review-date {
    font-size: 0.8rem;
    color: #666666;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #2D3748;
    font-style: italic;
    margin: 0 0 15px 0;
}

.owner-response {
    background-color: #F7FAFC;
    border-left: 3px solid rgb(255, 222, 91);
    padding: 12px 15px;
    border-radius: 4px;
    margin-top: auto;
}

.owner-response-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgb(180, 130, 0);
}

.owner-response-title i {
    transform: rotate(180deg);
    font-size: 0.75rem;
}

.response-date {
    font-size: 0.72rem;
    color: #718096;
    font-weight: 400;
}

.owner-text {
    font-size: 0.82rem;
    color: #4A5568;
    margin: 6px 0 0 0;
    line-height: 1.5;
}.reviews-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    width: 100%;
}

.google-view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.google-view-more-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.google-view-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.google-view-more-btn:hover i {
    transform: translate(2px, -2px);
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .reviews-header-right {
        width: 100%;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .google-rating-summary {
        border-radius: 20px;
        padding: 15px;
    }
    .google-write-review-btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   WHY CHOOSE US SECTION STYLING
   ========================================================================== */
.why-choose-section {
    width: 100%;
    padding: 100px 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 222, 91, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 222, 91, 0.03);
}

.why-choose-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 222, 91, 0.05);
    border: 1px solid rgba(255, 222, 91, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon-wrapper {
    background: rgb(255, 222, 91);
    border-color: rgb(255, 222, 91);
    box-shadow: 0 0 20px rgba(255, 222, 91, 0.4);
}

.why-choose-icon-wrapper i {
    font-size: 1.5rem;
    color: rgb(255, 222, 91);
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon-wrapper i {
    color: #FFFFFF;
}

.why-choose-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.why-choose-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   INDUSTRIES WE SERVE SECTION STYLING
   ========================================================================== */
.industries-section {
    width: 100%;
    padding: 100px 0;
    background-color: var(--bg-secondary);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgb(255, 222, 91);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 222, 91, 0.05);
}

.industry-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon-box {
    background: rgba(255, 222, 91, 0.1);
    border-color: rgb(255, 222, 91);
    transform: scale(1.1);
}

.industry-icon-box i {
    font-size: 1.3rem;
    color: rgb(255, 222, 91);
    transition: all 0.3s ease;
}

.industry-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    transition: all 0.3s ease;
}

.industry-card:hover h3 {
    color: rgb(255, 222, 91);
}

@media (max-width: 991px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

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

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   OUR PROCESS TIMELINE SECTION STYLING
   ========================================================================== */
.process-section {
    width: 100%;
    padding: 100px 0;
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 222, 91, 0.05), rgb(255, 222, 91) 50%, rgba(255, 222, 91, 0.05));
    transform: translateX(-50%);
    z-index: 1;
}

.process-step {
    position: relative;
    display: flex;
    align-items: center;
    width: 50%;
    z-index: 2;
}

.process-step:nth-child(even) {
    align-self: flex-start;
    justify-content: flex-end;
    padding-right: 50px;
    text-align: right;
    flex-direction: row-reverse;
}

.process-step:nth-child(odd) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 50px;
    text-align: left;
    flex-direction: row;
}

.process-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0A0A0A;
    border: 2px solid rgba(255, 222, 91, 0.3);
    color: rgb(255, 222, 91);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.5);
}

.process-step:nth-child(even) .process-icon {
    right: -25px;
    left: auto;
}

.process-step:nth-child(odd) .process-icon {
    left: -25px;
    right: auto;
}

.process-step:hover .process-icon {
    background-color: rgb(255, 222, 91);
    border-color: rgb(255, 222, 91);
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 222, 91, 0.5), 0 0 0 8px rgba(255, 222, 91, 0.15);
}

.process-icon i {
    font-size: 1.15rem;
}

.process-badge {
    position: absolute;
    top: -15px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 1;
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s ease;
}

.process-step:nth-child(even) .process-badge {
    right: 50px;
}

.process-step:nth-child(odd) .process-badge {
    left: 50px;
}

.process-step:hover .process-badge {
    color: rgba(255, 222, 91, 0.08);
}

.process-content {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 25px 30px;
    max-width: 380px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.process-step:hover .process-content {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 222, 91, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.process-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.process-step:hover .process-content h3 {
    color: rgb(255, 222, 91);
}

.process-content p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .process-line {
        left: 20px;
        transform: none;
    }
    
    .process-step {
        width: 100% !important;
        align-self: flex-start !important;
        text-align: left !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        flex-direction: row !important;
    }
    
    .process-icon {
        left: 20px !important;
        right: auto !important;
        transform: translateX(-50%);
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.5);
    }
    
    .process-step:hover .process-icon {
        box-shadow: 0 0 15px rgba(255, 222, 91, 0.4), 0 0 0 5px rgba(255, 222, 91, 0.15);
    }
    
    .process-badge {
        left: 50px !important;
        right: auto !important;
        top: -20px;
        font-size: 2.5rem;
    }
    
    .process-content {
        max-width: 100%;
    }
}

/* ==========================================================================
   FOOTER CTA SECTION STYLING
   ========================================================================== */
.footer-cta-section {
    width: 100%;
    padding: 80px 0;
    background-color: var(--bg-primary);
    position: relative;
}

.footer-cta-box {
    background: linear-gradient(135deg, rgba(255, 222, 91, 0.15) 0%, rgba(10, 10, 10, 0.4) 100%);
    border: 1px solid rgba(255, 222, 91, 0.25);
    border-radius: 24px;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 50px rgba(255, 222, 91, 0.05);
    backdrop-filter: blur(10px);
}

.footer-cta-content {
    max-width: 600px;
}

.footer-cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.footer-cta-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.footer-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
    min-width: 250px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgb(255, 222, 91);
    color: #000000 !important;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 222, 91, 0.3);
}

.btn-cta-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 222, 91, 0.5);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF !important;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .footer-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 30px;
    }
    
    .footer-cta-content {
        max-width: 100%;
    }
    
    .footer-cta-actions {
        width: 100%;
    }

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

@media (max-width: 575px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   BACK TO TOP PROGRESS CIRCLE STYLING
   ========================================================================== */
.progress-wrap {
    position: fixed;
    right: 37px;
    bottom: 182px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    background-color: #0A0A0A;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap svg.svg-content {
    width: 100%;
    height: 100%;
}

.progress-wrap svg path {
    fill: none;
    stroke: rgb(255, 222, 91);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.progress-wrap .arrow-up-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #FFFFFF;
    font-size: 0.95rem;
    transition: all 200ms linear;
}

.progress-wrap:hover .arrow-up-icon {
    transform: translate(-50%, -55%);
    color: rgb(255, 222, 91);
}

/* ==========================================================================
   DEDICATED SUBPAGES STYLING (BREADCRUMB, PILLARS, TIMELINE)
   ========================================================================== */
.page-breadcrumb-hero {
    position: relative;
    padding: 180px 0 100px;
    background-color: var(--bg-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
}

.page-breadcrumb-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 222, 91, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 5;
}

.breadcrumb-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.breadcrumb-links {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.breadcrumb-links a {
    color: var(--color-gold);
    transition: var(--transition-fast);
    text-decoration: none;
}

.breadcrumb-links a:hover {
    color: var(--text-primary);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: var(--text-muted);
}

/* Core Pillars */
.pillars-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    background-color: rgba(18, 20, 29, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 222, 91, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 222, 91, 0.05);
}

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

.pillar-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.pillar-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Timeline Milestones */
.timeline-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
    position: relative;
}

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

.milestones-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--glass-border-gold) 15%, var(--glass-border-gold) 85%, transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.milestone-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.milestone-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg-secondary);
    border: 3px solid var(--color-gold);
    top: 30px;
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition-fast);
}

.milestone-item:hover::after {
    background-color: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold-glow);
}

.milestone-left {
    left: 0;
    text-align: right;
}

.milestone-right {
    left: 50%;
}

.milestone-right::after {
    left: -8px;
    right: auto;
}

.milestone-content {
    padding: 30px;
    background-color: rgba(18, 20, 29, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    position: relative;
    transition: var(--transition-smooth);
}

.milestone-content:hover {
    border-color: var(--glass-border-gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.milestone-year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.milestone-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.milestone-desc {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive Milestones & Pillars */
@media (max-width: 991px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .milestones-timeline::after {
        left: 31px;
    }

    .milestone-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        text-align: left;
    }

    .milestone-item::after {
        left: 23px;
        right: auto;
    }

    .milestone-left {
        left: 0;
    }
}

@media (max-width: 768px) {
    .breadcrumb-title {
        font-size: 2.5rem;
    }

    .page-breadcrumb-hero {
        padding: 140px 0 70px;
    }
}