:root {
    /* Light Luxury Color Palette */
    --navy-blue: #16264c;
    --navy-blue-dark: #0f1a36;
    --navy-blue-light: #20366b;
    
    --gold: #cfa228;
    --gold-light: #e6b83c;
    --gold-dark: #b58c21;
    --gold-gradient: linear-gradient(135deg, #cfa228, #fcf0a4, #cfa228);
    
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(32, 54, 107, 0.1);
    
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --text-light: #f0f0f0;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto;
}

input, textarea {
    cursor: text !important;
}

select, button, a {
    cursor: pointer;
}

.admin-page, .admin-page * {
    cursor: auto !important;
}
.admin-page a, .admin-page button, .admin-page select {
    cursor: pointer !important;
}
.admin-page input, .admin-page textarea {
    cursor: text !important;
}

/* Custom Luxury Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(207, 162, 40, 0.5);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-hover.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
}

.cursor-hover.cursor-outline {
    width: 60px;
    height: 60px;
    border-color: rgba(207, 162, 40, 0.8);
    background-color: rgba(207, 162, 40, 0.1);
    backdrop-filter: blur(2px);
}

::selection {
    background-color: var(--gold);
    color: var(--navy-blue-dark);
}

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

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography & Globals */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-weight: 600;
}

.section-heading {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
}

.section-heading.light-text,
.light-text {
    color: var(--bg-white);
}

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: var(--gold);
    color: var(--navy-blue-dark);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: 1px solid var(--gold);
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: var(--navy-blue);
    border-color: var(--navy-blue);
    color: var(--gold);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--navy-blue);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: 1px solid var(--navy-blue);
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--navy-blue);
    color: var(--gold);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(32, 54, 107, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* .brand-logo {
    height: 50px;
    transition: var(--transition);
} */

.main-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}

.nav-item {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.header.scrolled .nav-item {
    color: var(--navy-blue);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

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

.cta-link {
    color: var(--gold);
    font-weight: 600;
}

.cta-link::after {
    background-color: var(--navy-blue);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--navy-blue);
    transition: var(--transition);
}

/* Mobile Nav */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--navy-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .main-nav.open {
        right: 0;
    }

    .main-nav .nav-links {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-item {
        color: var(--bg-white);
        font-size: 1.25rem;
    }

    .cta-link {
        color: var(--gold);
    }

    .menu-btn {
        display: flex;
    }

    .menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--gold);
    }
    .menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--gold);
    }
}

/* ============================
   PREMIUM HERO SECTION
   ============================ */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Sky gradient background */
    background: linear-gradient(
        180deg,
        #0a0f1e 0%,
        #111e42 30%,
        #16264c 60%,
        #1e3a6e 80%,
        #2a4f8f 100%
    );
}

/* Sky Particles / Stars */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 0;
}

.star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle var(--duration, 4s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1.2); box-shadow: 0 0 10px 2px rgba(255,255,255,0.4); }
}

.s1 { top: 15%; left: 10%; width: 2px; height: 2px; --duration: 3s; --delay: 0.5s; }
.s2 { top: 25%; left: 25%; width: 3px; height: 3px; --duration: 5s; --delay: 1.2s; }
.s3 { top: 10%; left: 45%; width: 2px; height: 2px; --duration: 4s; --delay: 0.8s; }
.s4 { top: 35%; left: 60%; width: 4px; height: 4px; --duration: 6s; --delay: 2.5s; }
.s5 { top: 20%; left: 80%; width: 2px; height: 2px; --duration: 3.5s; --delay: 0.2s; }
.s6 { top: 40%; left: 90%; width: 3px; height: 3px; --duration: 4.5s; --delay: 1.8s; }
.s7 { top: 5%; left: 70%; width: 2px; height: 2px; --duration: 5.5s; --delay: 0.9s; }
.s8 { top: 30%; left: 5%; width: 3px; height: 3px; --duration: 4s; --delay: 2.1s; }

/* Cityscape container */
.hero-cityscape {
    position: absolute;
    bottom: 85px;
    left: 0;
    width: 100%;
    height: 75%;
    z-index: 1;
}

/* All buildings share these base styles */
.building {
    position: absolute;
    bottom: 30px;
    background-color: #0d1c3a;
    border-top: 2px solid rgba(207, 162, 40, 0.15);
    transform-origin: bottom;
    animation: buildingRise 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transform: scaleY(0);
}

@keyframes buildingRise {
    to { transform: scaleY(1); }
}

/* Windows effect using repeating gradient */
.b-back {
    background: repeating-linear-gradient(
        180deg,
        #0d1c3a 0px, #0d1c3a 14px,
        #12233e 14px, #12233e 16px
    );
    opacity: 0.85;
}
.b-front {
    background: repeating-linear-gradient(
        180deg,
        #0b1730 0px, #0b1730 12px,
        #0e1e3a 12px, #0e1e3a 14px
    );
    opacity: 1;
}

/* Individual back buildings */
.b1 { left: 2%;  width: 6%;  height: 38%; animation-delay: 0.1s; }
.b2 { left: 9%;  width: 9%;  height: 55%; border-top: 3px solid rgba(207,162,40,0.3); animation-delay: 0.3s; }
.b3 { left: 19%; width: 7%;  height: 42%; animation-delay: 0.2s; }
.b4 { left: 30%; width: 12%; height: 65%; border-top: 3px solid rgba(207,162,40,0.25); animation-delay: 0.4s; }
.b5 { left: 50%; width: 8%;  height: 50%; animation-delay: 0.2s; }
.b6 { left: 70%; width: 10%; height: 58%; border-top: 3px solid rgba(207,162,40,0.3); animation-delay: 0.5s; }

/* Individual front buildings */
.bf1 { left: 0%;  width: 8%;  height: 28%; background: #0a1428; animation-delay: 0.6s; }
.bf2 { left: 15%; width: 11%; height: 35%; background: #0a1428; animation-delay: 0.8s; }
.bf3 { left: 35%; width: 16%; height: 45%; background: #091326; border-top: 3px solid rgba(207,162,40,0.4); animation-delay: 0.7s; }
.bf4 { left: 60%; width: 10%; height: 30%; background: #0a1428; animation-delay: 0.9s; }
.bf5 { left: 78%; width: 22%; height: 38%; background: #091326; animation-delay: 0.6s; }

/* Ground strip & Vehicles */
.city-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 32px;
    background: #06101f;
    overflow: hidden;
}

.car {
    position: absolute;
    height: 2px;
    border-radius: 1px;
    z-index: 5;
}

/* Headlights moving right */
.car-headlights {
    width: 10px;
    background: #fff;
    box-shadow: 0 0 6px #fff, 15px 0 0 -1px #fff, 15px 0 6px -1px #fff;
    top: 6px;
    left: -10%;
    animation: driveRight 12s linear infinite;
}

.car-headlights-2 {
    width: 10px;
    background: #fff;
    box-shadow: 0 0 6px #fff, 15px 0 0 -1px #fff, 15px 0 6px -1px #fff;
    top: 20px;
    left: -10%;
    animation: driveRight 18s linear infinite 5s;
}

/* Taillights moving left */
.car-taillights {
    width: 10px;
    background: #ff3333;
    box-shadow: 0 0 6px #ff3333, -15px 0 0 -1px #ff3333, -15px 0 6px -1px #ff3333;
    top: 13px;
    right: -10%;
    animation: driveLeft 15s linear infinite 2s;
}

@keyframes driveRight {
    0% { left: -10%; }
    100% { left: 110%; }
}

@keyframes driveLeft {
    0% { right: -10%; }
    100% { right: 110%; }
}

/* Building Windows */
.window {
    position: absolute;
    width: 4px;
    height: 8px;
    background-color: #fff;
    box-shadow: 0 0 12px 2px rgba(207, 162, 40, 0.8);
    border-radius: 1px;
    opacity: 0;
    animation: windowFlicker var(--t) ease-in-out infinite;
    animation-delay: var(--d);
}

@keyframes windowFlicker {
    0%, 10%, 90%, 100% { opacity: 0; }
    30%, 70% { opacity: 0.8; }
}

/* Gradient overlay to fade buildings into content */
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 30, 0.2) 0%,
        rgba(10, 15, 30, 0.0) 30%,
        rgba(10, 15, 30, 0.5) 70%,
        rgba(10, 15, 30, 0.85) 100%
    );
    z-index: 2;
}

/* Main hero text content */
.hero-premium-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    margin-top: -60px;
    animation: heroFadeIn 1.2s ease-out both;
}

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

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
    font-weight: 600;
}

.hero-premium-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-premium-title span {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-premium-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.5;
}

.hero-premium-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gold);
    color: #0a0f1e;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(207,162,40,0.35);
}

.btn-hero-ghost {
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-hero-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Stats strip at the bottom */
.hero-stats-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 15px 0px;
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(207,162,40,0.2);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(207,162,40,0.25);
}

@media (max-width: 768px) {
    .hero-premium-content { margin-top: -48px!important; }
    .hero-stats-strip { gap: 1.5rem; flex-wrap: wrap; }
    .hero-stat-divider { display: none; }
    
    .hero-premium-title {
    font-size: 39px !important;
    font-weight: 800;
 
 
}

}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
    }
    .hero-content-side, .hero-image-side {
        width: 100%;
    }
    .hero-content-side {
        padding: 10rem 2rem 5rem 2rem;
    }
    .hero-image-side {
        height: 50vh;
        clip-path: none;
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-stats {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 3rem;
        width: 100%;
        justify-content: space-around;
    }
}

/* Editorial Utilities */
.relative-section {
    position: relative;
    overflow: hidden;
}

.relative-z {
    position: relative;
    z-index: 10;
}

.watermark-text {
    position: absolute;
    top: -5%;
    left: -2%;
    font-size: 25vw;
    font-weight: 800;
    font-family: var(--font-heading);
    color: rgba(32, 54, 107, 0.04);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -5px;
}

.floating-badge {
    position: absolute;
    top: -40px;
    right: 10%;
    width: 140px;
    height: 140px;
    z-index: 15;
    animation: rotateBadge 20s linear infinite;
    pointer-events: none;
}

.floating-badge .badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--gold);
    animation: counterRotate 20s linear infinite;
}

@keyframes rotateBadge {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes counterRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Editorial About */
.editorial-section {
    padding: 60px 0px;
    background-color: var(--bg-light);
}

.editorial-layout {
    display: flex;
    gap: 5rem;
    margin-bottom: 5rem;
}

.editorial-sidebar {
    width: 30%;
}

.gold-line {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin-top: 2rem;
}

.editorial-content {
    width: 70%;
}

.sub-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.text-columns {
    display: column;
    column-count: 2;
    column-gap: 3rem;
    color: var(--text-muted);
}

.about-gallery {
    column-count: 2;
    column-gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(32, 54, 107, 0.12);
    border: 1px solid rgba(207, 162, 40, 0.15);
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(32, 54, 107, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .editorial-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .editorial-sidebar, .editorial-content {
        width: 100%;
    }
    .text-columns {
        column-count: 1;
    }
    .about-images {
        flex-direction: column;
    }
    .img-large, .img-small {
        width: 100%;
        margin-top: 0;
        height: auto;
    }
}

/* Services Simple Grid */
.services-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.services-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.simple-service-card {
    background: #ffffff;
    border: 1px solid rgba(32, 54, 107, 0.03);
    box-shadow: 0 10px 40px rgba(32, 54, 107, 0.06);
    padding: 4rem 2.5rem;
    text-align: center;
    border-radius: 6px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Elegant expanding gold border on top */
.simple-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: width 0.5s ease;
}

.simple-service-card:hover::before {
    width: 100%;
}

.simple-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(32, 54, 107, 0.12);
    border-color: rgba(207, 162, 40, 0.2);
}

.simple-service-card .service-icon {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

.simple-service-card:hover .service-icon {
    transform: scale(1.1);
}

.simple-service-card h3 {
    color: var(--navy-blue);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.simple-service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Channel Partners Section */
.partners-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.partners-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-logo-card {
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(32, 54, 107, 0.03);
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(32, 54, 107, 0.1);
    border-color: rgba(207, 162, 40, 0.3);
}

.text-logo {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--navy-blue);
    text-transform: uppercase;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.partner-logo-card:hover .text-logo {
    opacity: 1;
    color: var(--gold);
    transform: scale(1.05);
}

/* Creative Portfolio */
.portfolio-section {
    background-color: var(--navy-blue-dark);
    padding: 4rem 0;
}

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

.section-subtext {
    font-size: 1.1rem;
    margin-top: 1rem;
    opacity: 0.8;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-auto-rows: 350px;
    gap: 1.5rem;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    display: block;
}

.card-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 38, 76, 0.9) 0%, rgba(22, 38, 76, 0.2) 100%);
    opacity: 0.8;
    transition: var(--transition);
}

.portfolio-card:hover .card-img-wrap img {
    transform: scale(1.1);
}

.portfolio-card:hover .card-overlay {
    opacity: 0.6;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2.5rem 2rem;
    width: 100%;
    color: var(--bg-white);
    transform: translateY(15px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 10;
}

.portfolio-card:hover .card-info {
    transform: translateY(0);
}

.status {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(207, 162, 40, 0.5);
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1.2rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-info h3 {
    color: #ffffff;
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.large-card .card-info h3 {
    font-size: 2.8rem;
    font-weight: 600;
}

.card-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-info p::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 1px;
    background-color: var(--gold);
}

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

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

/* Elevated Contact */
.inquiry-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}
/* .hero-stats-strip {
    position: absolute;
    bottom: -93px;
    left: 0;
 
} */
.inquiry-box {
    background-color: var(--navy-blue);
    display: flex;
    box-shadow: 0 30px 60px rgba(32, 54, 107, 0.2);
}

.inquiry-info {
    width: 40%;
    padding: 5rem 4rem;
    background-color: var(--navy-blue-dark);
}

.contact-methods {
    margin-top: 3rem;
}

.method {
    margin-bottom: 2rem;
}

.method-title {
    display: block;
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.method p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.inquiry-form-container {
    width: 60%;
    padding: 5rem 4rem;
    background-color: var(--bg-white);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-row {
    display: flex;
    gap: 2rem;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--navy-blue);
}

.input-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--navy-blue);
}

.submit-btn {
    align-self: flex-start;
    padding: 1rem 3rem;
    background-color: var(--navy-blue);
    color: var(--gold);
    border: none;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: var(--gold);
    color: var(--navy-blue-dark);
}

.success-panel {
    text-align: center;
    padding: 3rem 0;
}

.success-panel h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .inquiry-box {
        flex-direction: column;
    }
    .inquiry-info, .inquiry-form-container {
        width: 100%;
        padding: 3rem 2rem;
    }
    .input-row {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Minimalist Footer */
.site-footer {
    background-color: var(--bg-white);
    padding: 3rem 0;
    border-top: 1px solid #eaeaea;
}

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

.footer-brand img {
    height: 40px;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--navy-blue);
}

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

.footer-legal {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-legal {
        text-align: center;
    }
}

/* Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal-text.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-image {
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: opacity 1.5s ease-out, clip-path 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-image.active {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- PREMIUM DARK MODE & GLASSMORPHISM UPGRADES --- */

/* Utility Classes */
.text-light-muted {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Services Section - Dark & Glowing */
.dark-section {
    background: linear-gradient(135deg, var(--navy-blue-dark) 0%, var(--navy-blue) 100%) !important;
    position: relative;
    overflow: hidden;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(207, 162, 40, 0.15);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(32, 54, 107, 0.5);
    bottom: -150px;
    left: -150px;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    border-radius: 12px !important;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(207, 162, 40, 0.3) !important;
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
}

.glass-card::before {
    background: linear-gradient(90deg, transparent, rgba(207, 162, 40, 0.8), transparent) !important;
}

/* Contact Section Enhancements */
.contact-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(207, 162, 40, 0.05) 2px, transparent 2px);
    background-size: 40px 40px;
    z-index: 0;
}

.glass-panel-dark {
    background: rgba(15, 26, 54, 0.95) !important;
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.glass-panel-light {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
}

.method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.method-icon {
    font-size: 1.5rem;
    background: rgba(207, 162, 40, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
    border: 1px solid rgba(207, 162, 40, 0.2);
}

.input-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.4s ease;
}

.input-group input:focus ~ .input-focus-line,
.input-group textarea:focus ~ .input-focus-line {
    width: 100%;
}

.btn-glow {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    border-radius: 4px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-glow:hover .btn-arrow {
    transform: translateX(5px);
}

/* Editorial & Partner Enhancements */
.editorial-section {
    background: radial-gradient(circle at top right, #ffffff, #f4f6f9) !important;
}

.partners-section {
    background: linear-gradient(to bottom, #f4f6f9, #ffffff) !important;
}

.partner-name {
    border-radius: 8px !important;
}

/* --- BENTO BOX GALLERY & IMAGE ENHANCEMENTS --- */

.bento-gallery {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-auto-rows: 250px !important;
    gap: 1.5rem !important;
    margin-top: 3rem !important;
    column-count: auto !important;
}

.bento-gallery .gallery-item {
    margin-bottom: 0 !important;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(32, 54, 107, 0.1);
    transform: translateZ(0); 
    background: #000;
}

.bento-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
    opacity: 0.9;
}

.bento-gallery .gallery-item:hover img {
    transform: scale(1.08);
    opacity: 0.6;
}

.bento-gallery .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 54, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.bento-gallery .gallery-item:hover::after {
    opacity: 1;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.bento-gallery .gallery-item:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Grid Spans */
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-tall { grid-column: span 1; grid-row: span 2; }
.bento-small { grid-column: span 1; grid-row: span 1; }
.bento-wide { grid-column: span 4; grid-row: span 1; }

@media (max-width: 992px) {
    .bento-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 200px !important;
    }
    .bento-large { grid-column: span 2; grid-row: span 2; }
    .bento-tall { grid-column: span 1; grid-row: span 2; }
    .bento-small { grid-column: span 1; grid-row: span 1; }
    .bento-wide { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 576px) {
    .bento-gallery {
        display: flex !important;
        flex-direction: column !important;
    }
    .bento-gallery .gallery-item {
        height: 300px;
    }
}

/* Portfolio Enhancements */
.portfolio-card {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.portfolio-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: border-color 0.4s ease;
    z-index: 5;
    pointer-events: none;
}
.portfolio-card:hover::after {
    border-color: rgba(207, 162, 40, 0.5);
}

/* Service Card Glass Enhancements */
.glass-card h3 {
    color: #ffffff !important;
    letter-spacing: 0.5px;
}

.glass-card p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.glass-card .service-icon {
    color: var(--gold) !important;
    text-shadow: 0 0 15px rgba(207, 162, 40, 0.4);
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.glass-card:hover .service-icon {
    text-shadow: 0 0 25px rgba(207, 162, 40, 0.8);
    transform: scale(1.2) rotate(15deg) !important;
}

.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* --- PREMIUM EDITORIAL SERVICES LIST --- */
.services-editorial-list {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
}

.service-row {
    display: flex;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.service-row:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(207, 162, 40, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.service-row:hover::before {
    opacity: 1;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    width: 15%;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.service-row:hover .service-number {
    color: rgba(207, 162, 40, 0.1);
    -webkit-text-stroke: 1px var(--gold);
    transform: translateX(15px);
}

.service-content {
    width: 65%;
    padding-right: 3rem;
    z-index: 1;
}

.service-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    transition: color 0.4s ease;
}

.service-row:hover .service-content h3 {
    color: var(--gold) !important;
}

.service-content p {
    font-size: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.4s ease;
}

.service-row:hover .service-content p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.service-arrow {
    width: 20%;
    display: flex;
    justify-content: flex-end;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.service-arrow svg {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-row:hover .service-arrow {
    color: var(--gold);
}

.service-row:hover .service-arrow svg {
    transform: translateX(20px);
}

@media (max-width: 992px) {
    .service-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 0;
    }
    .service-number {
        width: 100%;
        font-size: 4rem;
        margin-bottom: 1rem;
    }
    .service-content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .service-arrow {
        width: 100%;
        justify-content: flex-start;
    }
}

/* --- DEDICATED SERVICE PAGE COMPONENTS --- */

.service-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    transition: transform 10s ease-out;
}

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

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.7) 0%, rgba(10, 15, 30, 0.95) 100%);
    z-index: 1;
}

.service-metrics-strip {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.metric-item {
    padding: 0 1rem;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--navy-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--gold);
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.service-advantage-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.advantage-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 35px rgba(10, 15, 30, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 3px solid var(--gold);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(10, 15, 30, 0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: rgba(207, 162, 40, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    border: 1px solid rgba(207, 162, 40, 0.2);
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    background: var(--gold);
    color: #fff;
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(207, 162, 40, 0.4);
}

.advantage-card h3 {
    font-size: 1.7rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.advantage-card p {
    color: #4a5568;
    line-height: 1.7;
}

.service-cta-block {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #0a1122 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(207, 162, 40, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

@media (max-width: 992px) {
    .metrics-grid, .advantage-bento-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Methodology & Quote Sections */
.service-methodology {
    padding: 5rem 0;
    background: #ffffff;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.methodology-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(207, 162, 40, 0.3);
    z-index: 0;
}

.methodology-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin: 0 auto 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.methodology-step h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.methodology-step p {
    color: #4a5568;
    line-height: 1.7;
}

.service-quote-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-icon {
    font-size: 6rem;
    color: rgba(207, 162, 40, 0.2);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: -2rem;
}

.service-quote {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--navy-blue);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-author {
    margin-top: 3rem;
    color: var(--gold);
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .methodology-grid::before {
        display: none;
    }
    .service-quote {
        font-size: 1.8rem;
    }
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: #ffffff !important;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid var(--gold-light);
    cursor: pointer;
}

.btn-primary:hover {
    background: #ffffff;
    color: var(--navy-blue) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(207, 162, 40, 0.4);
    border-color: #ffffff;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-glow:hover::before {
    left: 100%;
}

/* Premium Dark Footer */
.dark-footer {
    background: var(--navy-blue-dark);
    color: #ffffff;
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-col img {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ============================
   PROPERTY MODAL
   ============================ */
.property-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.property-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(8px);
}

.property-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: var(--bg-white);
    border-radius: 4px;
    z-index: 1;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.property-modal.active .property-modal-content {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .property-modal-content {
        flex-direction: row;
    }
}

.property-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-dark);
    background: var(--bg-white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 10;
    transition: color 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .property-modal-close {
        color: var(--text-dark);
        background: none;
        box-shadow: none;
    }
}

.property-modal-close:hover {
    color: var(--gold);
}

.property-modal-image-container {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.property-modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-modal-status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--navy-blue-dark);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-modal-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.property-modal-details h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.property-modal-location {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.property-modal-price {
    font-size: 1.8rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.property-modal-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-value {
    font-weight: 600;
    color: var(--navy-blue);
}

.property-modal-description h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.property-modal-description p {
    color: var(--text-muted);
    line-height: 1.8;
}

.property-modal-actions {
    margin-top: auto;
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .property-modal-details {
        padding: 2rem;
    }
    .property-modal-features {
        gap: 1rem;
        flex-wrap: wrap;
    }
}

/* ============================
   PROPERTY DETAILS PAGE STYLES (LIGHT LUXURY)
   ============================ */
.prop-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: #f8f9fa;
}

.prop-hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.prop-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(22, 38, 76, 0.6) 60%,
        rgba(15, 26, 54, 0.88) 100%
    );
}

.prop-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.prop-back-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-blue-dark);
    transform: translateX(-4px);
}

.prop-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-blue-dark);
    padding: 0.4rem 1.2rem;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.prop-hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.prop-hero-location {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.prop-hero-price {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-light);
    font-weight: 800;
    font-family: var(--font-heading);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.prop-stats-bar {
    background: #ffffff;
    border-top: 1px solid rgba(32, 54, 107, 0.08);
    border-bottom: 1px solid rgba(32, 54, 107, 0.08);
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.prop-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.prop-stat-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: #f8f9fa;
    border: 1px solid rgba(32, 54, 107, 0.08);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.prop-stat-card:hover {
    border-color: var(--gold);
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(207, 162, 40, 0.15);
    transform: translateY(-2px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(207, 162, 40, 0.12);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.stat-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-top: 2px;
}

.prop-body-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.prop-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
}

@media (min-width: 993px) {
    .prop-layout-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.prop-section-title {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.prop-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.prop-gallery-item {
    height: 240px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

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

.prop-gallery-item:hover img {
    transform: scale(1.06);
}

.prop-desc-block,
.prop-amenities-block {
    margin-top: 3.5rem;
}

.prop-desc-text {
    font-size: 1.15rem;
    line-height: 1.95;
    color: var(--text-muted);
}

.amenities-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.amenity-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(32, 54, 107, 0.08);
    border-radius: 4px;
    font-weight: 500;
    color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(207, 162, 40, 0.12);
}

.amenity-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(207, 162, 40, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prop-inquiry-card {
    background: #ffffff !important;
    border: 1px solid rgba(32, 54, 107, 0.1) !important;
    box-shadow: 0 15px 40px rgba(32, 54, 107, 0.08) !important;
    border-radius: 4px;
}

.prop-inquiry-card .input-group input,
.prop-inquiry-card .input-group textarea {
    color: var(--navy-blue);
    border-bottom-color: rgba(32, 54, 107, 0.2);
}

.prop-inquiry-card .input-group label {
    color: var(--text-muted);
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    padding: 2.5rem 2rem;
}

.other-props-section {
    padding: 5rem 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(32, 54, 107, 0.06);
}

.other-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Fix menu button visibility on dark and light headers */
.menu-btn {
    padding: 0.5rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
}
.menu-btn span {
    background-color: var(--gold) !important;
}

@media (max-width: 992px) {
    .menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    .brand-logo {
        width: 60px !important;
    }
    .props-grid, .masonry-grid {
        grid-template-columns: 1fr;
    }
}

/* Channel Partners Section */
.partners-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 3rem;
}

.partner-logo-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    padding: 1.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.partner-logo-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(207, 162, 40, 0.12);
}

.partner-logo-card .text-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--navy-blue);
}

@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        margin-top: 2rem;
    }
    
    .partner-logo-card {
        padding: 1.2rem 0.6rem;
    }

    .partner-logo-card .text-logo {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}



.footer-brand-col img {
    height: 121px;
    margin-bottom: 1.5rem;
    filter: unset;
    border-radius: 20px;
}

.brand-logo {
    transition: var(--transition);
    width: 74px ;
    border-radius: 20px;
}