:root {
    --bg-body: #ffffff;
    --bg-surface: #f8f8f8;
    --bg-dark: #0a0a0a;
    --text-main: #111111;
    --text-light: #666666;
    --accent-gold: #C5A059;
    --border-light: #e0e0e0;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --font-main: 'Inter', sans-serif;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-main);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Section Standards */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.section-title.light {
    color: white;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.navbar.dark-mode {
    color: white;
}

.navbar.light-mode {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}

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

.nav-logo {
    height: 65px;
    width: auto;
    transition: filter 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.3));
    /* Show original (Gold) logo */
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.5));
}

.navbar.light-mode .nav-logo {
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}

.navbar.light-mode .nav-logo:hover {
    filter: drop-shadow(0 4px 15px rgba(197, 160, 89, 0.3));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-item:hover {
    opacity: 0.7;
}

.nav-cta {
    background: var(--accent-gold);
    color: #000 !important;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
}

/* ==================== HERO ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    /* Changed from height:100vh to min-height */
    height: auto;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
    padding-top: 5rem;
    /* Default padding for desktop */
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 10s ease;
}

.hero-section:hover .hero-bg img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    animation: floatOrb 15s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-gold);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(197, 160, 89, 0.5);
    bottom: 10%;
    left: 5%;
    animation-delay: -7s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 4rem;
    /* Bottom spacing */
}

/* ... unchanged badge/title animations ... */

.hero-text {
    color: white;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Title with hover effect */
.hero-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    animation: slideUp 1s var(--ease-out) both;
    transition: transform 0.3s ease;
}

.title-line:nth-child(1) .title-word {
    animation-delay: 0.3s;
}

.title-line:nth-child(2) .title-word {
    animation-delay: 0.5s;
}

.title-word:hover {
    transform: translateX(10px);
    color: var(--accent-gold);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-desc {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 2.5rem;
    max-width: 450px;
    animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

/* CTA Buttons */
.hero-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.9s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background: var(--accent-gold);
    color: #000;
}

.hero-btn.primary:hover {
    background: #d4b068;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.hero-btn.primary i {
    transition: transform 0.3s ease;
}

.hero-btn.primary:hover i {
    transform: translateX(5px);
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Card - Enhanced */
.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    animation: fadeInUp 1s var(--ease-out) 0.6s both;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: var(--accent-gold);
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.hero-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
}

.hc-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.hc-row:hover {
    padding-left: 0.5rem;
}

.hc-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hc-icon {
    width: 40px;
    height: 40px;
    background: rgba(197, 160, 89, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hc-icon i {
    color: var(--accent-gold);
    font-size: 1rem;
}

.hc-row>div:last-child span {
    display: block;
    font-size: 0.7rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.hc-row a,
.hc-row p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s;
}

.hc-row a:hover {
    color: var(--accent-gold);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: white;
    z-index: 5;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.5;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    transform-origin: top;
}

/* Hero Stats Bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-top-left-radius: 20px;
    z-index: 10;
    animation: fadeInUp 1s var(--ease-out) 1.1s both;
}

.hsb-item {
    text-align: center;
    color: white;
}

.hsb-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.hsb-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

.hsb-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 100vh;
        height: auto;
        display: block;
        /* Stack content vertically */
        padding-top: 140px;
        /* Big padding to clear navbar */
    }

    .hero-content-wrap {
        display: flex;
        flex-direction: column;
        /* Stack stack stack */
        width: 90%;
        padding-bottom: 8rem;
        /* Space for scroll indicator/stats */
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .hero-text {
        order: 1;
        /* Text first */
    }

    .hero-card {
        order: 2;
        /* Card second */
        width: 100%;
        max-width: 500px;
        margin-top: 2rem;
    }

    .hero-stats-bar {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 2rem;
        padding: 1.5rem;
        border-radius: 0;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
        /* Hide scroll indicator on mobile, rarely needed */
    }

    .hero-title {
        font-size: 2.8rem;
        /* Smaller font */
    }
}

/* ==================== SECTION TITLES ==================== */
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.section-title.light {
    color: white;
}

.full-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

/* ==================== ABOUT ==================== */
.about-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0;
    background: var(--bg-body);
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 25%, var(--bg-surface) 25%, var(--bg-surface) 50%, transparent 50%, transparent 75%, var(--bg-surface) 75%);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

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

.about-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 4px;
}

.section-tag.light {
    background: rgba(197, 160, 89, 0.2);
    color: var(--accent-gold);
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-lead {
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

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

/* Feature pills */
.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.af-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-surface);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.af-item:hover {
    background: var(--accent-gold);
    color: white;
}

.af-item i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.af-item:hover i {
    color: white;
}

/* About Images */
.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
    height: 500px;
}

.about-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 90%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    height: 50%;
    border-radius: 12px;
    overflow: hidden;
    border: 6px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-accent:hover img {
    transform: scale(1.05);
}

/* Floating stats card */
.about-stats-card {
    position: absolute;
    left: -30px;
    bottom: 60px;
    background: var(--bg-dark);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.asc-item {
    text-align: center;
}

.asc-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.asc-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.asc-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-stack {
        height: 400px;
    }

    .about-stats-card {
        left: 0;
        bottom: -20px;
    }
}

/* ==================== SERVICES - BENTO LAYOUT ==================== */
.services-section {
    background: var(--bg-dark);
    padding: 8rem 0;
}

.services-header {
    margin-bottom: 4rem;
}

.services-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 1;
    color: white;
    margin-top: 1.5rem;
}

/* Service Blocks */
.srv-block {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.srv-full {
    height: 70vh;
    margin-bottom: 2rem;
}

.srv-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0 5%;
}

.srv-half {
    height: 50vh;
    border-radius: 20px;
}

.srv-reversed .srv-content {
    justify-content: flex-end;
}

.srv-reversed .srv-info {
    text-align: right;
}

.srv-reversed .srv-stats {
    justify-content: flex-end;
}

/* Image and Overlay */
.srv-image {
    position: absolute;
    inset: 0;
}

.srv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

.srv-block:hover .srv-image img {
    transform: scale(1.08);
}

.srv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    transition: background 0.5s ease;
}

.srv-block:hover .srv-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Content */
.srv-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 3rem 5%;
    color: white;
}

.srv-half .srv-content {
    padding: 2rem;
}

.srv-number {
    position: absolute;
    top: 2rem;
    left: 5%;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    background: rgba(197, 160, 89, 0.2);
    border-radius: 100px;
}

.srv-half .srv-number {
    left: 2rem;
}

.srv-info h3 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.srv-half .srv-info h3 {
    font-size: 2rem;
}

.srv-info p {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 500px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.srv-half .srv-info p {
    font-size: 0.95rem;
}

.srv-stats {
    display: flex;
    gap: 2rem;
}

.srv-stats div {
    text-align: left;
}

.srv-stats strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.srv-half .srv-stats strong {
    font-size: 1.5rem;
}

.srv-stats span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

/* ==================== RESOURCES - IMPROVED SPLIT ==================== */
.resources-section {
    min-height: 100vh;
    display: flex;
}

/* White Side */
.res-white {
    width: 50%;
    background: var(--bg-body);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8rem 4rem;
}

.res-white-inner {
    max-width: 480px;
    width: 100%;
}

.res-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 1rem 0 2.5rem;
}

/* Cards */
.res-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.res-card {
    position: relative;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.res-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.res-card-main {
    background: linear-gradient(145deg, #fff 0%, #f8f5f0 100%);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.rc-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--accent-gold);
    filter: blur(80px);
    opacity: 0.2;
}

.rc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.rc-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-icon i {
    font-size: 1.1rem;
    color: white;
}

.rc-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    background: var(--accent-gold);
    color: white;
    border-radius: 100px;
}

.rc-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.rc-value span {
    font-size: 0.4em;
    font-weight: 500;
}

.res-card-sm .rc-value {
    font-size: 2rem;
}

.rc-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.res-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.rc-bar {
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.rc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), #d4b068);
    border-radius: 2px;
}

/* Gold Side - Improved Glassmorphic */
.res-gold {
    width: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
}

.res-gold-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.res-gold-inner {
    position: relative;
    z-index: 2;
    max-width: 480px;
    width: 100%;
}

.res-gold-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--bg-dark);
    margin-bottom: 2.5rem;
}

/* Gold Glassmorphic Cards */
.res-gold-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.rg-card {
    position: relative;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.rg-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.rg-card-main {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.3);
}

.rg-glow {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.4);
    filter: blur(50px);
    pointer-events: none;
}

.rg-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.rg-icon i {
    font-size: 1.25rem;
    color: var(--accent-gold);
}

.rg-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-dark);
    line-height: 1;
}

.rg-card-main .rg-value {
    font-size: 3.5rem;
}

.rg-label {
    font-size: 0.85rem;
    color: var(--bg-dark);
    opacity: 0.7;
    margin-top: 0.5rem;
}

.rg-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.rg-card-wide {
    padding: 1.5rem 2rem;
}

.rg-wide-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rg-badge-safe {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-dark);
    color: var(--accent-gold);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

.rg-badge-safe i {
    font-size: 1rem;
}

/* Equipment Chips */
.rg-equip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.rg-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--bg-dark);
    transition: all 0.3s ease;
}

.rg-chip:hover {
    background: rgba(0, 0, 0, 0.2);
}

.rg-chip span {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .srv-duo {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .srv-half {
        height: 60vh;
        border-radius: 0;
    }

    .srv-full {
        height: 60vh;
    }

    .resources-section {
        flex-direction: column;
        min-height: auto;
    }

    .res-white,
    .res-gold {
        width: 100%;
        padding: 4rem 2rem;
    }

    .res-cards-row,
    .rg-cards-row {
        grid-template-columns: 1fr;
    }
}

/* ==================== ASSOCIATES - GRAND ==================== */
.associates-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0;
    background: var(--bg-surface);
    overflow: hidden;
}

.assoc-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(197, 160, 89, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(197, 160, 89, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.assoc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.assoc-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 1;
    margin: 1rem 0 1.5rem;
}

.assoc-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 400px;
    margin: 0 auto;
}

/* Partner Cards */
.assoc-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.assoc-card {
    position: relative;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.assoc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.assoc-card-accent {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
}

.assoc-card-accent .ac-name {
    color: white;
}

.assoc-card-accent .ac-type {
    color: var(--accent-gold);
}

.ac-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.4s;
}

.assoc-card:hover .ac-glow {
    opacity: 0.3;
}

.ac-content {
    position: relative;
    z-index: 2;
}

.ac-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.ac-type {
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Bottom Stats */
.assoc-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    margin: 0 5%;
}

.ab-stat {
    text-align: center;
}

.ab-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ab-stat span:last-child {
    font-size: 0.9rem;
    color: var(--text-light);
}

.ab-divider {
    width: 1px;
    height: 50px;
    background: var(--border-light);
}

@media (max-width: 1024px) {
    .assoc-showcase {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .assoc-showcase {
        grid-template-columns: 1fr;
    }

    .assoc-bottom {
        flex-direction: column;
        gap: 2rem;
    }

    .ab-divider {
        width: 50px;
        height: 1px;
    }
}

/* ==================== PROJECTS ==================== */
.projects-reel {
    background: #000;
    overflow: visible;
}

.project-slide {
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
    box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.5);
}

.project-slide:nth-child(1) {
    z-index: 10;
}

.project-slide:nth-child(2) {
    z-index: 20;
}

.project-slide:nth-child(3) {
    z-index: 30;
}

.project-slide:nth-child(4) {
    z-index: 40;
}

.project-slide:nth-child(5) {
    z-index: 50;
}

.project-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 1s var(--ease-out), opacity 0.5s;
}

.project-slide:hover img {
    transform: scale(1.03);
    opacity: 0.7;
}

.project-overlay {
    position: absolute;
    inset: 0;
    /* Added top gradient for navbar visibility */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 15%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.project-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.project-info {
    color: white;
    max-width: 700px;
}

.project-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.project-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.project-meta {
    display: flex;
    gap: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.project-meta span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.project-meta p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* ==================== CONTACT - GRAND ==================== */
.contact-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0;
    background: var(--bg-body);
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(197, 160, 89, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 1;
    margin: 1rem 0 1.5rem;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 450px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

/* Left Side */
.contact-left {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cl-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.director-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.dir-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.dir-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dc-glow {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    filter: blur(50px);
    opacity: 0;
    transition: opacity 0.4s;
}

.dir-card:hover .dc-glow {
    opacity: 0.2;
}

.dc-avatar {
    width: 50px;
    height: 50px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.dc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dc-avatar i {
    font-size: 1.25rem;
    color: var(--accent-gold);
}

.dc-role {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
}

.dc-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.25rem 0;
}

.dc-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: color 0.3s;
}

.dc-phone:hover {
    color: var(--accent-gold);
}

.dc-phone i {
    font-size: 0.8rem;
}

/* Office Card */
.office-card {
    margin-top: auto;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-dark);
    border-radius: 16px;
    color: white;
}

.oc-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.oc-icon i {
    font-size: 1.25rem;
    color: white;
}

.oc-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.oc-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.8;
    margin: 0;
}

/* Right Side - Form */
.contact-right {
    height: 100%;
    padding-top: 4rem;
    /* Align with first card below title */
}

.contact-form-card {
    position: relative;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cfc-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: var(--accent-gold);
    filter: blur(100px);
    opacity: 0.1;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: var(--bg-surface);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: white;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn:hover {
    background: #b8954f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.form-btn i {
    font-size: 0.9rem;
}

/* ==================== FOOTER - GRAND ==================== */
.grand-footer {
    position: relative;
    background: var(--bg-dark);
    color: white;
    padding: 6rem 0 0;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 100%, rgba(197, 160, 89, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Footer Hero */
.footer-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4rem;
}

.footer-brand-text {
    text-align: right;
}

.footer-brand-big {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer-hero {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand-text {
        text-align: center;
    }

    .footer-brand-big {
        font-size: 2rem;
    }
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr 1.2fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    opacity: 0.6;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-about p {
    font-size: 0.95rem;
    opacity: 0.6;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hc-row {
    display: flex;
    align-items: center;
    /* Centered vertical alignment */
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.hc-row:hover {
    padding-left: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
}

/* ... existing code ... */

/* Fixed Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.fs-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fs-link i {
    font-size: 1.1rem;
    line-height: normal;
    /* Reset line-height */
    z-index: 2;
    transition: color 0.3s ease;
}

.fs-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.fs-link:hover {
    border-color: var(--accent-gold);
}

.fs-link:hover::before {
    transform: scale(1);
}

.fs-link:hover i {
    color: #000;
}

/* Footer Contact */
.fc-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.fc-item i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 0.25rem;
}

.fc-item span,
.fc-item a {
    font-size: 0.9rem;
    opacity: 0.6;
    line-height: 1.6;
}

.fc-item a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.fb-copy {
    font-size: 0.85rem;
    opacity: 0.4;
}

.fb-credit {
    font-size: 0.75rem;
    opacity: 0.35;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.fb-credit a {
    color: var(--accent-gold);
    opacity: 1;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    background: linear-gradient(135deg, #C5A059 0%, #e8c878 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fb-credit a:hover {
    filter: brightness(1.2);
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
}

.fb-links {
    display: flex;
    gap: 2rem;
}

.fb-links a {
    font-size: 0.85rem;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.fb-links a:hover {
    opacity: 1;
}

.fb-top {
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fb-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.fb-top i {
    font-size: 1rem;
    color: white;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ==================== UTILITIES ==================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(197, 160, 89, 0.4));
    animation: logoBreathePulse 2s ease-in-out infinite;
}

@keyframes logoBreathePulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(197, 160, 89, 0.4));
    }

    50% {
        transform: scale(1.08);
        filter: brightness(0) invert(1) drop-shadow(0 0 50px rgba(197, 160, 89, 0.6));
    }
}

/* Custom Cursor */
.cursor-dot,
.cursor-circle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
}

.cursor-circle {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(197, 160, 89, 0.4);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {

    .hero-content-wrap,
    .about-grid,
    .resources-main,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .equip-row {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .equip-item {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .services-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
    }

    50% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0);
        opacity: 0;
    }
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero animations */
.hero-text {
    animation: slideInLeft 1s var(--ease-out) 0.3s both;
}

.hero-card {
    animation: fadeInUp 1s var(--ease-out) 0.6s both;
}

.scroll-line {
    animation: scrollLine 2s ease-in-out infinite;
    transform-origin: top;
}

/* Hover effects */
.service-item {
    transition: all 0.4s var(--ease-out);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.stat-box {
    transition: all 0.3s var(--ease-out);
}

.stat-box:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.res-item {
    transition: all 0.3s var(--ease-out);
}

.res-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.director-card {
    transition: all 0.3s var(--ease-out);
}

.director-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hero-btn {
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Button magnetic effect */
.magnetic-btn {
    transition: transform 0.2s ease;
}

/* Nav item underline animation */
.nav-item {
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

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

/* Project slide parallax */
.project-slide img {
    transition: transform 0.5s var(--ease-out);
}

.project-slide:hover img {
    transform: scale(1.05);
}

/* Footer link animations */
.footer-col a {
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Associates hover */
.logo-row span {
    transition: all 0.3s ease;
    cursor: default;
}

.logo-row span:hover {
    opacity: 0.6;
    color: var(--accent-gold);
}

/* Input focus states */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.contact-form button {
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* ==================== NEW ASSIGNED STYLES (GENERATED) ==================== */

/* About Section Button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--text-main);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.about-features-title {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Services Section Redesign */
.services-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin-top: 2rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.svc-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.svc-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
}

.svc-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.svc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.svc-card:hover .svc-image img {
    transform: scale(1.1);
}

.svc-content {
    padding: 2rem;
    color: white;
}

.svc-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.svc-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.services-footer {
    display: flex;
    justify-content: center;
    padding-bottom: 4rem;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--accent-gold);
    color: black;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.services-btn:hover {
    background: white;
    transform: scale(1.05);
}

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

/* Procedure Section (from Resources) */
.procedure-section {
    padding: 8rem 0;
    background: #f4f4f4;
}

.proc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.proc-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
}

.proc-desc {
    font-size: 1.2rem;
    color: var(--text-light);
}

.proc-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.proc-item {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.proc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proc-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .proc-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .proc-gallery {
        grid-template-columns: 1fr;
    }
}

/* Projects Header & Wrapper */
.projects-section-wrapper {
    background: #000;
    position: relative;
}

.project-header-container {
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.project-head {
    max-width: 800px;
}

.project-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: white;
    margin: 1rem 0;
}

.project-main-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

.project-footer-btn {
    text-align: center;
    padding: 4rem 0 6rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: white;
    color: black;
}

/* ==================== GRAND TESTIMONIALS (LIGHT THEME) ==================== */
.grand-testimonials-wrapper {
    margin-top: 8rem;
    padding: 8rem 0;
    background: #ffffff;
    /* Reverted to light */
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

/* Background flourish */
.grand-testimonials-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.gt-header {
    text-align: center;
    margin-bottom: 5rem;
}

.gt-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-main);
    /* Dark text */
    margin-top: 1rem;
}

.gt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    /* Vertically center for the featured affect */
}

.gt-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
}

/* Featured (Middle) Card */
.gt-card.gt-featured {
    background: #ffffff;
    border-color: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(197, 160, 89, 0.15);
    /* Gold glow shadow */
    z-index: 2;
}

.gt-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.gt-card.gt-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.gt-quote-mark {
    font-family: 'Times New Roman', serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--accent-gold);
    opacity: 0.3;
    margin-bottom: 1rem;
    height: 40px;
    /* Compress spacing */
}

.gt-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    /* Grey text */
    margin-bottom: 2.5rem;
    font-weight: 400;
    /* Normal weight for readability */
}

.gt-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.gt-company-logo {
    width: 45px;
    height: 45px;
    background: var(--bg-surface);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.2rem;
}

.gt-author-info h4 {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.gt-author-info span {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 1024px) {
    .gt-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gt-card.gt-featured {
        transform: none;
    }

    .gt-card.gt-featured:hover {
        transform: translateY(-10px);
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    z-index: 1001;
}

/* ==================== GLOBAL RESPONSIVE STYLES ==================== */

/* Tablet & Smaller Desktop */
@media (max-width: 1024px) {

    /* Hero */
    .hero-content-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 8rem;
        /* Space for navbar */
    }

    .hero-badge {
        margin: 0 auto 2rem;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-card {
        margin: 0 auto;
        max-width: 500px;
    }

    .hero-stats-bar {
        position: relative;
        bottom: auto;
        right: auto;
        background: rgba(0, 0, 0, 0.5);
        justify-content: center;
        width: 100%;
        border-radius: 0;
        margin-top: 2rem;
        padding: 1.5rem;
    }

    /* About Responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-intro-block {
        margin-bottom: 2rem;
        text-align: left;
    }

    .about-text {
        padding-right: 0;
    }

    .about-image-stack {
        height: 400px;
        margin-top: 2rem;
    }

    .about-stats-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: -50px;
        flex-direction: column;
        gap: 1rem;
        width: 90%;
        margin-left: 5%;
    }

    .asc-divider {
        width: 100%;
        height: 1px;
    }

    /* Services */
    .srv-duo {
        grid-template-columns: 1fr;
    }

    .srv-block {
        margin-bottom: 1.5rem;
    }

    /* Testimonials */
    .gt-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .gt-card.gt-featured {
        transform: none;
    }

    .gt-card.gt-featured:hover {
        transform: translateY(-10px);
    }

    /* Navbar Tablet/Mobile Stack */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Slide out */
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        /* Slide in */
    }

    .nav-item {
        font-size: 1.25rem;
        color: white;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .container {
        width: 92%;
        padding: 0;
    }

    /* Navbar */
    .navbar,
    .navbar.dark-mode {
        padding: 1rem 5%;
        background: rgba(255, 255, 255, 0.95) !important;
        color: #000 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .logo,
    .mobile-menu-btn {
        color: #000 !important;
    }

    /* Hero Quick Contact Fix */
    .hero-card {
        padding: 1.5rem;
        /* Less padding on mobile */
    }

    .hc-row {
        display: flex !important;
        /* Force flex */
        align-items: center !important;
        /* Force vertical center */
        flex-direction: row !important;
        /* Keep row direction */
        gap: 1rem;
        text-align: left;
    }

    .hc-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    /* Hero Stats */
    .hero-stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hsb-divider {
        width: 100%;
        height: 1px;
    }

    /* Footer Social Icons Fix */
    .footer-social {
        justify-content: center;
        /* Center icons in footer on mobile */
        margin-top: 2rem;
    }

    .fs-link {
        width: 45px !important;
        height: 45px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* About */
    .about-section {
        padding: 4rem 0;
    }

    .about-img-stack {
        height: 350px;
        /* Smaller image stack */
    }

    /* Procedure */
    .pw-container {
        padding: 0;
    }

    .pw-card {
        height: 250px;
        margin-bottom: 1rem;
    }

    .pw-card:hover {
        flex: none;
    }

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

    /* Expandable Text - Explicit Mobile Support */
    .expandable-text::after {
        display: block !important;
        margin-top: 0.5rem;
    }
}


/* ==================== PICTURE WORKFLOW ==================== */
.procedure-section {
    padding: 8rem 0;
    background: #050505;
    color: white;
    overflow: hidden;
}

.proc-header {
    margin-bottom: 5rem;
}

/* Container for the strip */
.pw-container {
    display: flex;
    gap: 1.5rem;
    /* Gap between cards */
    height: 600px;
    /* Tall cards */
    padding: 0 2rem;
}

/* Individual Card */
.pw-card {
    position: relative;
    flex: 1;
    /* All start equal width */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover Effect: Accordion Expansion */
.pw-card:hover {
    flex: 2.5;
    /* Expands significantly */
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Background Image */
.pw-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: all 0.6s ease;
    filter: grayscale(80%);
}

.pw-card:hover .pw-img {
    opacity: 0.8;
    transform: scale(1.1);
    /* Subtle zoom */
    filter: grayscale(0%);
}

/* Dark Gradient Overlay */
.pw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

/* Content Wrapper */
.pw-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    transform: translateY(20px);
    /* Slightly pushed down initially */
    transition: all 0.6s ease;
}

.pw-card:hover .pw-content {
    transform: translateY(0);
}

/* Step Number Badge */
.pw-num-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
    transition: all 0.4s ease;
}

/* Connector Line (The Workflow Element) */
.pw-card::after {
    content: '';
    position: absolute;
    top: 2rem;
    /* Aligned with badge center */
    right: -2rem;
    /* Extends into the gap */
    width: 2rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    opacity: 0;
    /* Hidden by default */
    transition: all 0.4s ease;
}

/* Show connector only when NOT hovering (to keep clean) or customize logic */
.pw-container:hover .pw-card::after {
    background: var(--accent-gold);
}

/* Active State Badge */
.pw-card:hover .pw-num-badge {
    background: var(--accent-gold);
    color: black;
    transform: scale(1.1);
    border-color: var(--accent-gold);
}

/* Text Styles */
.pw-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    transform: translateX(-10px);
    opacity: 0.9;
    transition: all 0.5s ease;
}

.pw-card:hover .pw-title {
    transform: translateX(0);
    opacity: 1;
    color: var(--accent-gold);
}

.pw-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-height: 0;
    /* Hidden initially */
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s ease;
}

/* Reveal text on hover */
.pw-card:hover .pw-desc {
    max-height: 200px;
    /* Enough height to show text */
    opacity: 1;
    margin-top: 1rem;
}

/* Arrow Icon */
.pw-arrow {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--accent-gold);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease 0.1s;
}

.pw-card:hover .pw-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .pw-container {
        flex-direction: column;
        height: auto;
    }

    .pw-card {
        height: 350px;
        flex: none;
        width: 100%;
    }

    .pw-card:hover {
        flex: none;
        /* Disable flex growth on mobile */
    }

    .pw-desc {
        max-height: fit-content;
        opacity: 1;
        margin-top: 1rem;
    }

    .pw-img {
        filter: grayscale(0%);
        opacity: 0.6;
    }
}

/* Expandable Text for Services */
.expandable-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.5s ease;
}

.expandable-text::after {
    content: ' Read More';
    display: block;
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-top: 0.5rem;
    font-weight: 600;
}

.expandable-text.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.expandable-text.expanded::after {
    display: none;
}


/* ==================== FORCED FIXES ==================== */

/* Unified About Section Text */
.about-section p,
.about-intro-block p,
.about-text p,
.about-lead {
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    color: #666666 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 400 !important;
}

/* Expandable Text Styles (Re-applied) */
.expandable-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.5s ease;
}

.expandable-text::after {
    content: ' Read More';
    display: block;
    font-size: 0.9rem;
    color: #C5A059;
    /* accent-gold */
    margin-top: 0.5rem;
    font-weight: 600;
}

.expandable-text.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.expandable-text.expanded::after {
    display: none;
}

/* ==================== FLOATING CHATBOT ==================== */
.chatbot-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.chatbot-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: #000;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-btn:hover {
    transform: scale(1.1);
}

.chatbot-btn .fa-xmark {
    display: none;
}

.chatbot-wrapper.active .chatbot-btn {
    background: #fff;
    color: #000;
    transform: rotate(180deg);
}

.chatbot-wrapper.active .chatbot-btn .fa-message {
    display: none;
}

.chatbot-wrapper.active .chatbot-btn .fa-xmark {
    display: block;
}

.chatbot-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-wrapper.active .chatbot-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.cb-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.cb-item:hover {
    transform: translateY(-3px);
}

.cb-item.whatsapp {
    background: #25D366;
}

.cb-item.mail {
    background: #EA4335;
}

/* Footer Logo */
.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(197, 160, 89, 0.3));
    opacity: 1;
    transition: all 0.4s ease;
}

.footer-logo:hover {
    transform: scale(1.1) rotate(-2deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(197, 160, 89, 0.5));
}

/* ==================== PARTNERS / ASSOCIATES ==================== */
.associates-section {
    padding: 8rem 0;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.assoc-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(197, 160, 89, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(197, 160, 89, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.assoc-header {
    text-align: center;
    margin-bottom: 5rem;
}

.assoc-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-top: 1rem;
    color: var(--text-main);
}

.assoc-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.assoc-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.assoc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 89, 0.3);
}

.ac-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.assoc-card:hover .ac-glow {
    transform: scaleX(1);
}

.ac-logo-wrap {
    height: 140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ac-logo {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
    transition: all 0.4s ease;
}

.assoc-card:hover .ac-logo {
    transform: scale(1.1);
}

.ac-content {
    display: none;
}

@media (max-width: 768px) {
    .assoc-showcase {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }

    .assoc-card {
        padding: 1.5rem;
    }

    .ac-logo-wrap {
        height: 100px;
    }

    .ac-logo {
        max-width: 140px;
        max-height: 70px;
    }

    /* ==================== MOBILE NAVIGATION ==================== */
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
        color: inherit;
        transition: color 0.3s ease;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        display: flex !important;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-item {
        font-size: 1.5rem;
        color: white !important;
    }

    .nav-cta {
        margin-top: 1rem;
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }

    /* Fix Navbar Logo/Icon Size on Mobile */
    .nav-logo {
        height: 45px;
    }

    .navbar {
        padding: 1rem 5%;
    }

    /* ==================== PARTNERS RESPONSIVE ==================== */
    .assoc-track {
        gap: 2rem !important;
        /* Smaller gap on mobile */
        animation-duration: 25s !important;
        /* Faster for smaller screens */
    }

    .assoc-logo-item img {
        height: 40px !important;
        /* Scale down logos */
        width: auto;
    }

    .assoc-logo-item {
        font-size: 0.9rem !important;
        /* For text-only logos like COLORTONE */
    }

    .assoc-title {
        font-size: 2.25rem !important;
    }

    /* ==================== PROJECTS RESPONSIVE ==================== */
    .project-title {
        font-size: 2.25rem !important;
        margin-bottom: 1.5rem !important;
    }

    .project-meta {
        flex-direction: column !important;
        gap: 1.5rem !important;
        padding-top: 1.5rem !important;
    }

    .project-slide {
        height: 100vh !important;
        position: sticky !important;
        top: 0;
        display: flex;
        align-items: center;
        overflow: hidden;
        will-change: transform;
    }

    .project-slide img {
        opacity: 0.3 !important;
    }
}