:root {
    --metallic-black: #0a0a0b;
    --metallic-gradient: linear-gradient(135deg, #0f0f11 0%, #1a1a1d 50%, #0f0f11 100%);
    --cream: #FAF9F6;
    --off-white: #f5f5f7;
    --pure-white: #ffffff;
    --rose-gold: #c38c8c;
    --rose-gold-light: #E0C1C6;
    --text-dark: #f5f5f7; /* Now light for dark theme */
    --text-muted: #a0a0a0;
    --border-radius: 12px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --accent-glow: rgba(195, 140, 140, 0.2);
    --border-glass: rgba(255, 255, 255, 0.1);
}

/* Custom Cursor - Now floating above the default arrow */
/* We keep the default cursor visible as requested */

#custom-cursor {
    width: 40px;
    height: 40px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    /* Offset so it appears above and slightly to the right of the arrow */
    transform: translate(5px, -45px); 
    transition: transform 0.05s linear;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--off-white);
    background-color: var(--metallic-black);
    line-height: 1.6;
    overflow-x: hidden;
    background-attachment: fixed;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
    background-color: var(--metallic-black);
}

.bg-light { background: var(--metallic-gradient) !important; }
.bg-accent { background: #121214 !important; }
.text-center { text-align: center !important; }
.text-center h2 { margin: 0 auto; color: var(--pure-white); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--rose-gold);
    color: white;
}

.btn-primary:hover {
    background-color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(183, 110, 121, 0.3);
}

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

.btn-outline:hover {
    background-color: white;
    color: var(--text-dark);
}

.btn-secondary {
    background-color: var(--text-dark);
    color: #000000; /* Black for contrast on light button */
}

.btn-block {
    width: 100%;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #000000; /* Dark premium background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.nav-container.nav-container {
    height: 60px; /* Reduced for metallic feel */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-nav-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--pure-white);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #FFFFFF; /* White letters */
    font-size: 0.85rem;
    font-weight: 700; /* Bold */
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 10px 0;
}

/* Hover effects for nav links */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--rose-gold-light);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--rose-gold-light);
}

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

/* Hero */
.hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: flex-end; /* Lower the content on desktop */
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
    padding-bottom: 8vh; /* Original cinematic spacing */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Between video and content */
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hero-logo-container {
    margin-bottom: 20px;
    display: none; /* Hidden on desktop */
    justify-content: center;
    width: 100%;
}

.hero-logo {
    max-width: 600px; /* Balanced size for desktop */
    width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

.hero h1 {
    font-size: 3.5rem; /* Slightly smaller for balance */
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    text-align: center;
}

.hero .accent {
    font-style: italic;
    color: var(--rose-gold-light);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 1; /* Full opacity for better contrast */
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0,0,0,0.8); /* Making text pop */
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Grid & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: rgba(20, 20, 23, 0.8);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px var(--accent-glow);
    border-color: var(--rose-gold);
}

.card-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.rounded-img {
    border-radius: var(--border-radius);
    width: 100%;
}

.shadow-lg {
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.subtitle {
    display: block;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.split-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Carousel */
.gallery-carousel {
    overflow: hidden;
    margin-top: 50px;
    background: var(--cream);
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

.carousel-item {
    width: 350px;
    height: 450px;
    padding: 0 15px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 4)); }
}

/* Testimonials */
.testimonials-container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.testimonial-item {
    max-width: 500px;
    text-align: center;
    padding: 40px;
    background: rgba(20, 20, 23, 0.8);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(5px);
}

.stars {
    color: #F3CA52;
    margin-bottom: 20px;
}

.testimonial-item p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.client-name {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Footer & Form */
#contact-form {
    background: rgba(20, 20, 23, 0.9);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #EEEEEE;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--rose-gold);
}

footer {
    padding: 30px 0; /* Thinner/Delgado */
    background: #000000;
    color: var(--pure-white);
    border-top: 1px solid var(--border-glass);
}

.footer-logo {
    height: 40px; /* Smaller logo for thinner footer */
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--rose-gold-light);
}

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

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-wa 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-container.nav-container { padding: 0 20px; }

    /* Mobile Nav Toggle */
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: rgba(10, 10, 11, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

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

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.4rem;
        display: block;
    }

    /* Hero Responsive */
    .hero {
        height: 100vh;
        height: 100dvh;
        background: url('assets/hero.png') center/cover no-repeat;
        padding-bottom: 0;
        align-items: center;
        justify-content: center;
    }

    .hero-video {
        display: none;
    }

    .hero-content {
        padding-top: 60px; /* Account for fixed header if needed, but centering should handle it */
    }

    .hero-logo-container {
        display: flex; /* Shown only on mobile */
    }

    .hero-logo {
        max-width: 280px; /* Slightly smaller for better balance on small screens */
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.95rem;
        padding: 0 15px;
        max-width: 100%;
    }

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

    .hero-btns .btn {
        width: 100%;
        margin: 0;
    }

    /* Hamburger Animation to X */
    .mobile-nav-toggle.open span:first-child { 
        transform: rotate(45deg) translate(5px, 5px); 
    }
    .mobile-nav-toggle.open span:nth-child(2) { 
        opacity: 0; 
    }
    .mobile-nav-toggle.open span:last-child { 
        transform: rotate(-45deg) translate(5px, -5px); 
    }
}
