/* ===== BASE & RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg-main: #0a0a0a;
    --bg-card: #151515;
    --text-main: #f5f5f5;
    --text-dim: #a0a0a0;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #aa8529;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 80px;
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.gold-text { color: var(--gold); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s ease; }
.fade-left { opacity: 0; transform: translateX(-30px); transition: 0.8s ease; }
.fade-right { opacity: 0; transform: translateX(30px); transition: 0.8s ease; }
.visible { opacity: 1; transform: translate(0, 0); }

/* ===== BUTTONS ===== */
.btn-gold, .btn-outline, .btn-insta {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
    border-radius: 4px; transition: all 0.3s ease; font-size: 0.9rem; cursor: pointer; border: none;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5); }
.btn-outline {
    background: transparent; border: 1px solid var(--gold); color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #000; }
.btn-insta { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
.btn-insta:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4); }
.full-width { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height);
    background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1); z-index: 1000;
    transition: 0.3s ease;
}
.navbar.scrolled { background: rgba(10, 10, 10, 0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.nav-inner {
    max-width: 1400px; margin: 0 auto; padding: 0 3%; height: 100%;
    display: flex; justify-content: space-between; align-items: center;
}
.brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold); }
.brand-name { display: block; font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold); letter-spacing: 2px; line-height: 1; }
.brand-sub { display: block; font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-main); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--gold); transition: 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
    background: #25d366; color: #fff; padding: 10px 20px; border-radius: 4px;
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase; display: flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: #128c7e; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--gold); transition: 0.3s ease; }
.mobile-drawer {
    position: fixed; top: var(--nav-height); left: 0; width: 100%; background: var(--bg-card);
    display: flex; flex-direction: column; padding: 20px 5%; gap: 15px; border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transform: translateY(-100%); opacity: 0; pointer-events: none; transition: 0.4s ease; z-index: 999;
}
.mobile-drawer.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-drawer a { font-family: var(--font-heading); font-size: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background: linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.9));
}
.hero-content { position: relative; z-index: 1; max-width: 900px; padding: 0 5%; }
.hero-badge {
    display: inline-block; padding: 6px 15px; border: 1px solid var(--gold); border-radius: 30px;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 25px;
}
.hero-title { font-size: clamp(3rem, 8vw, 5.5rem); margin-bottom: 20px; text-transform: uppercase; }
.gold-shine { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shine 3s linear infinite; }
@keyframes shine { to { background-position: 200% center; } }
.hero-desc { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 40px; }
.hero-desc strong { color: var(--gold); font-weight: 400; }
.hero-btns { display: flex; gap: 20px; justify-content: center; margin-bottom: 60px; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: var(--font-heading); font-size: 2rem; color: var(--gold); }
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); }

/* ===== TICKER ===== */
.ticker-wrap { width: 100%; background: var(--gold); color: #000; padding: 12px 0; overflow: hidden; white-space: nowrap; border-top: 2px solid var(--gold-light); border-bottom: 2px solid var(--gold-light); }
.ticker { display: inline-block; animation: ticker 25s linear infinite; font-weight: 600; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }
.ticker span { margin-right: 50px; }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

/* ===== COMMON SECTIONS ===== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 10px; }
.section-title { font-size: 2.8rem; margin-bottom: 15px; }
.section-sub { color: var(--text-dim); font-size: 1.05rem; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--bg-main); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-left .section-title { text-align: left; margin-bottom: 25px; }
.about-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.badge { display: flex; align-items: center; gap: 10px; background: rgba(212, 175, 55, 0.05); padding: 12px 15px; border-left: 2px solid var(--gold); font-size: 0.9rem; }
.badge i { color: var(--gold); }
.about-right { position: relative; }
.about-img-wrap { position: relative; border-radius: 8px; overflow: hidden; }
.about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-wrap::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; box-shadow: inset 0 0 50px rgba(0,0,0,0.8); }
.about-card { position: absolute; bottom: -20px; left: -20px; background: var(--bg-card); padding: 25px; display: flex; gap: 15px; align-items: center; border: 1px solid var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.about-card i { font-size: 2rem; color: var(--gold); }
.about-card p { font-size: 0.8rem; color: var(--text-dim); }

/* ===== USP STRIP ===== */
.usp-strip { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; padding: 40px 5%; background: var(--bg-card); border-top: 1px solid rgba(212, 175, 55, 0.1); border-bottom: 1px solid rgba(212, 175, 55, 0.1); }
.usp-item { display: flex; align-items: center; gap: 15px; }
.usp-item i { font-size: 1.8rem; color: var(--gold); }
.usp-item strong { display: block; font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 3px; }
.usp-item p { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

/* ===== COLLECTIONS ===== */
.collections { padding: 100px 0; background: var(--bg-main); }
.cat-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.cat-tab { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--text-main); padding: 8px 20px; border-radius: 30px; cursor: pointer; transition: 0.3s ease; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.cat-tab.active, .cat-tab:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.product-card { background: var(--bg-card); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: 0.4s ease; display: none; }
.product-card.show { display: block; }
.product-card:hover { transform: translateY(-10px); border-color: rgba(212, 175, 55, 0.3); box-shadow: 0 15px 40px rgba(0,0,0,0.5); }
.product-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge { position: absolute; top: 15px; left: 15px; background: rgba(0,0,0,0.7); color: #fff; padding: 4px 12px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(5px); }
.product-badge.gents { border-color: var(--gold); color: var(--gold); }
.product-hover { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s ease; backdrop-filter: blur(2px); }
.product-card:hover .product-hover { opacity: 1; }
.whatsapp-order { background: #25d366; color: #fff; padding: 12px 25px; border-radius: 4px; font-weight: 600; display: flex; align-items: center; gap: 8px; transform: translateY(20px); transition: 0.4s ease; }
.product-card:hover .whatsapp-order { transform: translateY(0); }
.whatsapp-order:hover { background: #128c7e; }
.product-info { padding: 25px 20px; text-align: center; }
.product-info h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--gold-light); }
.product-info p { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 12px; }
.product-rate { display: inline-block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); border-top: 1px dashed rgba(212,175,55,0.3); padding-top: 12px; width: 100%; }

/* ===== GALLERY ===== */
.gallery-section { padding: 100px 0; background: var(--bg-card); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 15px; }
.gallery-item { position: relative; border-radius: 8px; overflow: hidden; background-image: var(--bg); background-size: cover; background-position: center; cursor: pointer; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-family: var(--font-heading); font-size: 1.5rem; letter-spacing: 1px; border-bottom: 1px solid var(--gold); padding-bottom: 5px; transform: translateY(20px); transition: 0.4s ease; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--bg-main); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--bg-card); padding: 40px 30px; border-radius: 8px; border: 1px solid rgba(212, 175, 55, 0.1); text-align: center; transition: 0.3s ease; }
.service-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.service-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: rgba(212, 175, 55, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--gold); transition: 0.3s ease; }
.service-card:hover .service-icon { background: var(--gold); color: #000; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { color: var(--text-dim); font-size: 0.95rem; }

/* ===== B2B CTA ===== */
.b2b-cta { padding: 80px 0; background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.9)), url('assets/hero-video.mp4') center/cover; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); text-align: center; }
.b2b-content h2 { font-size: 3rem; margin-bottom: 15px; }
.b2b-content p { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 30px; max-width: 600px; margin-inline: auto; }
.b2b-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--bg-card); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: var(--bg-main); padding: 35px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
.stars { color: var(--gold); margin-bottom: 15px; font-size: 0.9rem; }
.review-card p { font-style: italic; color: var(--text-main); margin-bottom: 25px; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.reviewer-init { width: 45px; height: 45px; background: var(--gold); color: #000; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; border-radius: 50%; }
.reviewer strong { display: block; font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 2px; }
.reviewer span { font-size: 0.75rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--bg-main); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.info-box { background: var(--bg-card); padding: 40px; border-radius: 8px; border: 1px solid rgba(212, 175, 55, 0.1); height: 100%; }
.info-item { display: flex; gap: 20px; margin-bottom: 30px; }
.info-icon { width: 50px; height: 50px; background: rgba(212, 175, 55, 0.1); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; border-radius: 50%; flex-shrink: 0; }
.info-item h4 { font-size: 1.2rem; margin-bottom: 5px; color: var(--gold-light); }
.info-item p { color: var(--text-dim); font-size: 0.95rem; }
.contact-socials { display: flex; gap: 15px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; }
.contact-socials a { width: 45px; height: 45px; background: transparent; border: 1px solid rgba(212, 175, 55, 0.3); color: var(--gold); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s ease; }
.contact-socials a:hover { background: var(--gold); color: #000; }
.enquiry-wrap { background: var(--bg-card); padding: 40px; border-radius: 8px; border: 1px solid rgba(212, 175, 55, 0.3); position: relative; }
.enquiry-wrap::before { content: ''; position: absolute; top: -1px; left: -1px; width: 50px; height: 50px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); border-radius: 8px 0 0 0; }
.enquiry-wrap::after { content: ''; position: absolute; bottom: -1px; right: -1px; width: 50px; height: 50px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); border-radius: 0 0 8px 0; }
.enquiry-form h3 { font-size: 2rem; margin-bottom: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 15px; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); color: #fff; font-family: var(--font-body); font-size: 0.95rem; border-radius: 4px; transition: 0.3s ease; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: rgba(0,0,0,0.8); }

/* ===== FOOTER ===== */
.footer { background: #050505; padding: 80px 0 30px; border-top: 1px solid rgba(212, 175, 55, 0.2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--gold); margin-bottom: 20px; }
.footer-brand h3 { font-size: 1.8rem; color: var(--gold); margin-bottom: 15px; }
.footer-brand p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 25px; max-width: 300px; }
.footer-socials { display: flex; gap: 15px; }
.footer-socials a { color: var(--text-main); font-size: 1.2rem; transition: 0.3s ease; }
.footer-socials a:hover { color: var(--gold); }
.footer-links h4 { font-size: 1.2rem; margin-bottom: 25px; color: var(--text-main); position: relative; padding-bottom: 10px; }
.footer-links h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-links a, .footer-links p { display: block; color: var(--text-dim); margin-bottom: 15px; font-size: 0.9rem; transition: 0.3s ease; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-links p i { color: var(--gold); margin-right: 10px; width: 15px; text-align: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 0.85rem; color: var(--text-dim); }
.built-by a { color: var(--gold); font-weight: 600; letter-spacing: 1px; }
.built-by a:hover { text-decoration: underline; }

/* ===== FLOATING WA ===== */
.floating-wa { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 99; transition: 0.3s ease; overflow: hidden; }
.floating-wa span { position: absolute; right: 70px; background: #fff; color: #000; font-size: 0.85rem; font-weight: 600; padding: 5px 12px; border-radius: 20px; opacity: 0; transform: translateX(20px); transition: 0.3s ease; white-space: nowrap; pointer-events: none; }
.floating-wa:hover { transform: scale(1.1); }
.floating-wa:hover span { opacity: 1; transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-right { order: -1; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .b2b-content h2 { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; grid-row: span 1; }
    .hero-stats { gap: 20px; }
}
