/* --- LUXURY THEME VARIABLES (UPDATED WITH LOGO PALETTE) --- */
:root {
    /* Palette from Logo */
    --gold-primary: #FFD700;
    /* Vibrant Construction Yellow/Gold */
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --navy-deep: #151515;
    /* Matte Black (matching logo bg) */
    --navy-light: #222222;
    --gray-bg: #F0F0F0;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #555555;

    /* Fonts */
    --font-serif: 'Cinzel', serif;
    /* Luxury Headings */
    --font-sans: 'Outfit', sans-serif;
    /* Modern Body */

    /* Layout */
    --container-width: 1300px;
    --transition-slow: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);

    /* Effects */
    --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-gray);
    display: block;
    margin-bottom: 1.5rem;
}

.section-label-gold {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 3.5rem;
    color: var(--navy-deep);
    margin-bottom: 2rem;
}

.section-heading-white {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.section-body {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-slow);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--navy-deep);
    border: none;
}

.btn-gold:hover {
    background: var(--white);
    color: var(--navy-deep);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-transparent {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-transparent:hover {
    background: var(--white);
    color: var(--navy-deep);
    border-color: var(--white);
}

.btn-outline-gold {
    background: transparent;
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

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

.link-arrow {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--navy-deep);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.link-arrow:hover i {
    transform: translateX(5px);
}

.link-arrow:hover {
    color: var(--gold-primary);
}


/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    /* Reduced padding for smaller bar */
    z-index: 1000;
    transition: var(--transition-slow);
    background: transparent;
}

/* HIDE HEADER LOGO COMPLETELY ON HOMEPAGE - RESTORED VISIBILITY */
/*
.homepage .header .logo {
    display: none !important;
}
*/

/* ALIGN NAV TO RIGHT WHEN LOGO IS GONE - RESTORED DEFAULT ALIGNMENT */
/*
.homepage .header-container {
    justify-content: flex-end;
}
*/

.header.scrolled {
    background: var(--navy-deep);
    /* Dark background to match logo */
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    /* Consistent slim height */
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO IMAGE STYLES */
/* LOGO IMAGE STYLES - Optimized for Visibility */
.logo {
    display: block;
    max-height: 220px;
    /* Adjusted container */
    margin-top: 0;
    /* Removed margin to fix alignment */
    display: flex;
    align-items: center;
}

/* Increased height space */
.logo-img {
    height: 200px;
    /* Big logo size */
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    /* Pop out from bg */
}

/* Nav Links need to be white always now since header is dark on scroll */
.nav-list {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link.active {
    color: var(--white);
    font-weight: 700;
}

.header.scrolled .nav-link {
    color: var(--white);
}

/* Keep white on scroll */

/* Default Hidden for Desktop */
.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

.btn-nav.btn-gold {
    padding: 10px 25px;
}

/* --- HERO --- */
/* --- HERO (Redesigned) --- */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #555e69;
    /* Elegant Grey Base */
}

/* Background Image/Texture - Subtle */
.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use a solid color or very subtle texture instead of image per request 'fondo gris' */
    background: url('assets/hero_bg.jpg') no-repeat center center/cover;
    /* background: radial-gradient(circle at center, #636e7a 0%, #4a525a 100%); */
    z-index: 1;
}

.hero-overlay {
    /* Optional: noise texture or vignette */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    /* Slight darken */
    z-index: 2;
}

/* HERO CENTER LAYOUT */
.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 900px;
    /* Narrower for centered reading */
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-center-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* DECORATION: Line & Overline */
.hero-top-decoration {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.hero-vertical-line {
    width: 2px;
    height: 60px;
    background-color: var(--gold-primary);
}

.hero-overline {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    display: inline-block;
}

/* Add strike-through effect to overline? Image has line BELOW? No, image has line above construction/arch? 
   Actually, let's keep it simple: Line then Text just like image implies structure.
   Wait, image has red underline in user markup? No, user drew red lines.
   Original design image shows: Gold vertical line, then text CONSTRUCCION...
*/

.hero-overline::after {
    /* Optional underline if needed, but let's stick to vertical line top */
    content: '';
    display: none;
}

/* TEXT */
.hero-title {
    font-family: 'Cinzel', serif;
    /* Serif as requested */
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 400;
    /* Cinzel fits better regular */
    margin-bottom: 10px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.btn-outline-light {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--white);
    transition: var(--transition-slow);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy-deep);
    border-color: var(--white);
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        padding-top: 60px;
        /* Space for nav */
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* SCROLL INDICATOR */
.scroll-indicator-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--gold-primary);
    /* Hidden as per user request */
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: var(--gold-primary);
}

/* --- METRICS STRIP --- */
.metrics-strip {
    background: var(--white);
    position: relative;
    z-index: 4;
    margin-top: -80px;
    box-shadow: var(--shadow-luxury);
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    border-bottom: 4px solid var(--gold-primary);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px 0;
}

.metric-item {
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

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

.metric-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--navy-deep);
}

.metric-txt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
}

/* --- ABOUT LUXURY --- */
.section {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.visual-main {
    box-shadow: var(--shadow-luxury);
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.visual-secondary {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 50%;
    box-shadow: var(--shadow-luxury);
    border: 8px solid var(--white);
    z-index: 2;
}

.visual-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--gold-primary);
    z-index: 0;
}

/* --- SERVICES DARK PARALLAX --- */
.section-dark-parallax {
    background-color: var(--navy-deep);
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    padding-bottom: 150px;
}

.services-luxury-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.svc-card {
    flex: 0 1 350px;
    /* Base width */
    max-width: 400px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    transition: var(--transition-slow);
    border-radius: 8px;
    /* Softer look */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.svc-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.svc-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    margin-bottom: 20px;
}

.svc-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.svc-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 30px;
}

.svc-line {
    width: 40px;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.svc-card:hover .svc-line {
    width: 100%;
}

/* --- SHOWCASE --- */
.no-pad-bottom {
    padding-bottom: 0;
}

.project-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 600px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    z-index: 2;
}

.showcase-item .cat {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.showcase-item h3 {
    font-size: 1.8rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.showcase-item:hover h3 {
    transform: translateY(0);
}

/* --- VIDEO ITEMS --- */
.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    cursor: pointer;
    /* Show pointer to indicate clickability */
}

/* 
   Crucial: This overlay must be on TOP of the iframe 
   to capture the click event for the modal.
*/
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    /* Higher than iframe */
    background: transparent;
    /* Invisible */
}

.video-wrapper iframe {
    position: relative;
    z-index: 1;
    /* Lower than overlay */
    pointer-events: none;
    /* Double insurance: disable iframe interaction */
}

/* Play Icon Overlay */
.video-wrapper::after {
    content: '\f144';
    /* Font Awesome Play Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-item:hover .video-wrapper::after {
    opacity: 1;
}

.video-item .showcase-info {
    pointer-events: none;
    /* Let clicks pass through text to video */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 50%);
}

.video-item:hover img {
    /* No image to zoom, but maybe scale iframe? */
    transform: none;
}

/* --- VIDEO MODAL --- */
.modal {
    display: none;
    position: fixed !important;
    z-index: 9999 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    /* Flexbox for centering */
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    margin: 0;
    /* Centered by flex parent */
    padding: 0;
    width: 90%;
    /* Increased from 80% */
    max-width: 1200px;
    /* Increased from 900px */
}

.close-modal {
    color: #fff;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

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

.modal-video-container {
    position: relative;
    /* Removed fixed aspect ratio to allow vertical videos to maximize height */
    padding-bottom: 0;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    background: #000;
    /* Black background for bars */
}

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


/* --- CTA LUXURY --- */
.cta-luxury {
    background-color: var(--gray-bg);
    padding: 150px 0;
}

.cta-heading {
    font-size: 3rem;
    color: var(--navy-deep);
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* --- FOOTER LUXURY REDESIGN --- */
.footer-luxury {
    background-color: var(--navy-deep);
    color: var(--white);
    padding: 100px 0 30px 0;
    border-top: 4px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
}

.logo-footer {
    display: block;
    margin-bottom: 25px;
}

.logo-footer img {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.footer-links a::before {
    content: '›';
    color: var(--gold-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

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

.social-btn:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

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

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

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
}

/* --- FLOATING WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- UTILITIES --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

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

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

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

.hide-mobile {
    display: flex;
}

/* --- PROJECT CAROUSEL (SWIPER) --- */
.projects-slider {
    padding-bottom: 50px;
    /* Space for pagination */
    overflow: hidden;
}

.swiper-slide.showcase-item {
    height: 400px;
    /* Force height */
    width: 100%;
}

/* Custom Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: var(--text-gray);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--gold-primary);
    opacity: 1;
    width: 12px;
    height: 12px;
}

@media screen and (max-width: 992px) {
    .header.scrolled {
        padding: 10px 0;
    }

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

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

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

    .project-showcase {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-item {
        height: 400px;
    }

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

    .metric-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 20px;
    }

    .metric-item:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: block;
        color: var(--white);
    }

    .header.scrolled .nav-toggle {
        color: var(--white);
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--navy-deep);
        /* Dark Mobile Menu */
        padding: 80px 40px;
        transition: 0.4s;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

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

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .nav-link {
        color: var(--white);
        font-size: 1.2rem;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        color: var(--white);
    }

    .hide-mobile {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .section-heading {
        font-size: 2.5rem;
    }

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

    .cta-heading {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}