:root {
    --accent: #d4af37; /* Metallic Gold */
    --bg-dark: #0f0f0f;
    --bg-light: #1a1a1a;
    --text-gold: #e5c05b;
    --white: #ffffff;
    --gray: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--bg-dark); color: var(--white); line-height: 1.6; }
img, video { max-width: 100%; }
h1, h2, h3, .luxury-font { font-family: 'Cinzel', serif; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* --- Navigation --- */
nav {
    position: fixed;
    width: 100%;
    padding: 8px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: 0.5s;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

nav.sticky {
    padding: 5px 8% 8px;
    background: rgba(15, 15, 15, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.logo { display: inline-block; line-height: 0; }
.logo img { height: 80px; width: auto; display: block; }
nav.sticky .logo img { height: 70px;  }
.logo span { color: var(--accent); }
footer .logo { font-size: 24px; font-weight: 700; color: var(--white); letter-spacing: 3px; line-height: 1.6; }
footer .logo img { height: 80px; }

.nav-links { display: flex; align-items: center; }
.menu-logo { display: none; }
.nav-links li { margin-left: 40px; }
.nav-links a { color: var(--white); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
    background: var(--accent);
    color: var(--bg-dark) !important;
    padding: 10px 20px;
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .menu-overlay {
    opacity: 1;
    visibility: visible;
}

body.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 1;
}

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

.hero-content h1 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 15px; color: var(--white); }
.hero-content p { font-size: 1.2rem; letter-spacing: 5px; text-transform: uppercase; color: var(--accent); margin-bottom: 40px; }
.hero-cta { margin-top: 20px; }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

/* --- Founder Section --- */
.about { padding: 120px 10%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; border: 1px solid var(--accent); padding: 15px; }
.about-image img { width: 100%; display: block; filter: grayscale(40%); }
.about-text h2 { font-size: 2.8rem; margin-bottom: 25px; color: var(--accent); }
.about-text p { color: var(--gray); font-size: 1.1rem; margin-bottom: 20px; font-weight: 200; }
.founder-sign { margin-top: 30px; font-family: 'Cinzel'; border-left: 3px solid var(--accent); padding-left: 20px; }
.founder-sign h3 { color: var(--white); }
.founder-sign small { color: var(--accent); letter-spacing: 2px; }

/* --- Services Grid --- */
.services { padding: 100px 8%; background: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-size: 3rem; margin-bottom: 10px; letter-spacing: 4px; }
.section-header .line { width: 100px; height: 2px; background: var(--accent); margin: 0 auto; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr)); gap: 40px; }
.service-card { 
    background: #111; 
    padding: 50px; 
    border: 1px solid #222; 
    transition: 0.5s; 
    position: relative;
    overflow: hidden;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-10px); }
.service-card i { font-size: 40px; color: var(--accent); margin-bottom: 25px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { color: var(--gray); font-size: 0.9rem; }

/* --- Brands --- */
.brands { padding: 100px 8%; text-align: center; }
.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}
.brand-item {
    background: #fff; 
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    width: 140px;
    flex: 0 0 140px;
    transition: 0.3s;
}
.brand-item:hover { transform: translateY(-5px); }
.brand-item img {
    display: block;
    max-height: 90px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* --- Gallery --- */
.gallery {
    padding: 100px 0 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.gallery-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 8% 40px;
    gap: 30px;
}

.gallery-controls {
    display: flex;
    align-items: center;
    gap: 18px;
}

.gallery-prev,
.gallery-next {
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.gallery-prev:hover,
.gallery-next:hover {
    color: var(--accent);
}

.gallery-divider {
    color: #444;
    font-size: 14px;
}

.gallery-heading {
    position: relative;
    text-align: right;
    min-width: 280px;
}

.gallery-watermark {
    position: absolute;
    right: 0;
    bottom: -10px;
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: 6px;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.gallery-heading h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: 2px;
    color: var(--white);
}

.gallery-carousel {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-carousel::-webkit-scrollbar { display: none; }

.gallery-item {
    flex: 0 0 25%;
    min-width: 280px;
    height: 420px;
    scroll-snap-align: start;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-name {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: right;
    max-width: calc(100% - 48px);
}

.gallery-category {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 18px;
}

.gallery-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: 0.3s;
}

.gallery-icon:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    text-align: center;
    max-width: 90vw;
    padding: 60px 20px 20px;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--accent);
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    z-index: 2001;
    transition: 0.3s;
}

.lightbox-close:hover { color: var(--accent); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(15, 15, 15, 0.8);
    color: var(--accent);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 2001;
}

.lightbox-nav:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

body.lightbox-open { overflow: hidden; }

/* --- Instagram --- */
.instagram-gallery {
    padding: 100px 8%;
    background: var(--bg-light);
    text-align: center;
}

.instagram-content {
    position: relative;
    display: inline-block;
}

.instagram-watermark {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: 6px;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

.instagram-content h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 25px;
}

.instagram-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.instagram-link i {
    font-size: 32px;
    color: var(--accent);
    transition: 0.3s;
}

.instagram-link:hover {
    color: var(--accent);
}

.instagram-link:hover i {
    transform: scale(1.1);
}

.footer-social a {
    color: inherit;
}

.footer-social a:hover {
    color: var(--accent);
}

/* --- Luxury Process --- */
.process { padding: 100px 10%; text-align: center; }
.process-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); gap: 20px; margin-top: 60px; }
.step { position: relative; }
.step-num { font-size: 4rem; font-weight: 700; color: rgba(212, 175, 55, 0.1); position: absolute; top: -30px; left: 50%; transform: translateX(-50%); }
.step h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-top: 20px; color: var(--accent); }

/* --- Contact --- */
.contact { padding: 100px 10%; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact h2 { font-size: 3rem; color: var(--accent); }
.contact-intro { margin: 20px 0; color: var(--gray); }
.contact-info i { color: var(--accent); }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}
.contact-form .form-group {
    margin-bottom: 8px;
}
.contact-form input.invalid,
.contact-form textarea.invalid {
    border-bottom-color: #ff8a8a;
}
.contact-form input.invalid:focus,
.contact-form textarea.invalid:focus {
    border-bottom-color: #ff8a8a;
}
.contact-form input.valid,
.contact-form textarea.valid {
    border-bottom-color: var(--accent);
}
.field-error {
    display: block;
    min-height: 20px;
    font-size: 12px;
    line-height: 1.4;
    color: #ff8a8a;
    margin: 6px 0 18px;
    padding-left: 2px;
}
.field-error:empty {
    margin-bottom: 10px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--accent);
}
.contact-btn { background: var(--accent); color: #000; padding: 15px 40px; border: none; cursor: pointer; font-family: 'Cinzel'; font-weight: 700; margin-top: 10px; }
.contact-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.form-message {
    min-height: 22px;
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0 12px;
    padding-left: 2px;
}
.form-message.success { color: #6ecf8f; }
.form-message.error { color: #ff8a8a; }

/* --- Thank You Page --- */
.thankyou-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 10% 100px;
    text-align: center;
}
.thankyou-card {
    max-width: 620px;
    width: 100%;
    border: 1px solid #2a2a2a;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 60px 40px;
}
.thankyou-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 28px;
}
.thankyou-label {
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 12px;
}
.thankyou-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}
.thankyou-text {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 36px;
}
.thankyou-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.thankyou-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.thankyou-link:hover {
    color: var(--white);
}

/* --- Footer --- */
footer { padding: 80px 10% 30px; border-top: 1px solid #222; background: #0a0a0a; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer-desc { margin-top: 20px; font-size: 13px; color: #666; }
.footer-grid h4 { color: var(--accent); margin-bottom: 20px; }
.footer-links { font-size: 13px; color: #666; }
.footer-social { font-size: 20px; letter-spacing: 15px; }
.footer-bottom { text-align: center; margin-top: 60px; color: #444; font-size: 12px; border-top: 1px solid #111; padding-top: 20px; }

/* Floating WhatsApp */
.whatsapp { position: fixed; bottom: 30px; right: 30px; background: #25d366; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; color: white; z-index: 1000; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);} 40% {transform: translateY(-10px) translateX(-50%);} 60% {transform: translateY(-5px) translateX(-50%);} }

@media (max-width: 968px) {
    .about, .contact, .footer-grid { grid-template-columns: 1fr; }

    nav {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 8px 5%;
    }

    nav.sticky {
        padding: 10px 5%;
    }

    .logo {
        grid-column: 2;
        justify-self: center;
    }

    .logo img {
        height: 80px;
    }

    .menu-toggle {
        display: flex;
        grid-column: 3;
        justify-self: end;
        margin-left: 0;
        flex-shrink: 0;
    }

    .hero-content {
        padding: 0 20px;
        width: 100%;
    }

    .hero-content p {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .about {
        padding: 80px 5%;
        gap: 40px;
    }

    .services {
        padding: 80px 5%;
    }

    .brands {
        padding: 80px 5%;
    }

    .brand-grid {
        gap: 20px;
    }

    .brand-item {
        width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        max-width: 160px;
        padding: 15px;
        min-height: 90px;
    }

    .brand-item img {
        max-height: 50px;
    }

    .gallery {
        padding: 80px 0 0;
    }

    .gallery-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5% 30px;
        gap: 25px;
    }

    .gallery-heading {
        text-align: left;
        min-width: 0;
        width: 100%;
    }

    .gallery-watermark {
        right: auto;
        left: 0;
        bottom: -5px;
        font-size: 3rem;
    }

    .gallery-item {
        flex: 0 0 75%;
        min-width: 240px;
        height: 320px;
    }

    .gallery-name,
    .gallery-category {
        font-size: 10px;
    }

    .gallery-name {
        top: 16px;
        right: 16px;
    }

    .gallery-category {
        bottom: 16px;
        left: 16px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }

    .instagram-gallery {
        padding: 80px 5%;
    }

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

    .service-card {
        padding: 30px;
    }

    .process {
        padding: 80px 5%;
    }

    .section-header h2,
    .about-text h2,
    .contact h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        letter-spacing: 2px;
    }

    .contact {
        padding: 80px 5%;
        gap: 40px;
    }

    footer {
        padding: 60px 5% 30px;
    }

    .footer-social {
        letter-spacing: 8px;
    }

    .footer-bottom {
        font-size: 11px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .whatsapp {
        right: 20px;
        bottom: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: min(280px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: rgba(15, 15, 15, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 40px 40px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        border-right: 1px solid rgba(212, 175, 55, 0.3);
    }

    body.menu-open .nav-links {
        transform: translateX(0);
    }

    .menu-logo {
        display: block;
        margin-bottom: 30px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .menu-logo a {
        display: inline-block;
        line-height: 0;
    }

    .menu-logo img {
        height: 70px;
        width: auto;
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: 25px;
        width: 100%;
    }

    .nav-links a {
        display: block;
        font-size: 14px;
    }

    .nav-cta {
        display: inline-block;
        text-align: center;
    }
}
