:root {
    --nude: #D9C5B2;
    --dark: #121212;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: white;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* NAVBAR - EXACT MATCH WITH INDEX */
nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 5%;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    height: 75px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--nude);
}

/* BURGER MENU */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: white;
    transition: 0.3s;
}

/* HERO & GRID CONTENT */
.services-hero {
    position: relative;
    min-height: 100vh;
    padding: 180px 5% 60px;
    display: flex;
    justify-content: center;
}

.bg-img {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('mood (33).jpg') center/cover no-repeat;
    z-index: 1;
}

.overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(50px, 10vw, 100px);
    color: white;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.letter {
    display: inline-block;
    opacity: 0;
    animation: letterDrop 0.8s cubic-bezier(0.2, 0.5, 0.3, 1.3) forwards;
}

@keyframes letterDrop {
    0% { opacity: 0; transform: translateY(-100px); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 120px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    padding: 45px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--nude);
}

.service-card i {
    font-size: 2.2rem;
    color: var(--nude);
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.7;
}

/* GALLERY */
.services-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.brand-logo-footer {
    width: 180px;
    margin-top: 50px;
    opacity: 0.8;
    transition: 0.5s;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center; align-items: center;
}

.lightbox-content {
    max-width: 85vw; max-height: 80vh;
    object-fit: contain;
}

.close-lightbox { position: absolute; top: 30px; right: 40px; color: white; font-size: 40px; cursor: pointer; }
.prev-btn, .next-btn { position: absolute; color: white; font-size: 50px; cursor: pointer; padding: 20px; transition: 0.3s; }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: #121212;
    margin: 10% auto;
    padding: 45px;
    border: 1px solid var(--nude);
    border-radius: 15px;
    width: 90%; max-width: 450px;
    position: relative;
    text-align: center;
}

.close-modal { position: absolute; right: 20px; top: 15px; font-size: 28px; cursor: pointer; color: var(--nude); }

#mini-contact-form input, #mini-contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: white;
    margin-bottom: 10px;
}

.send-btn {
    width: 100%;
    background: var(--nude);
    color: black;
    border: none;
    padding: 18px;
    font-weight: 700;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: #000;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
        z-index: 2001;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; }
    
    .is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .is-active .bar:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

    .services-gallery { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .services-hero { padding-top: 140px; }
}

@media (max-width: 600px) {
    .services-gallery { grid-template-columns: 1fr; }
    .main-title { font-size: 45px; }
    .service-card { padding: 35px 20px; }
}