/* --- 1. SETUP & VARIABLES --- */
:root {
    --gold: #C5A059;
    --gold-dark: #A3823D;
    --navy: #151B25;
    --charcoal: #2C2C2C;
    --grey-light: #F8F9FA;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

/* --- 2. TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--navy); font-weight: 700; }
h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 15px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
p { font-size: 1.05rem; color: #555; margin-bottom: 15px; font-weight: 300; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* --- 3. LAYOUT UTILITIES --- */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
.bg-light { background-color: var(--grey-light); }
.centered { text-align: center; }
.golden-text { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.section-subtitle {
    font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 3px;
    color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: 15px; display: block;
}

/* --- 4. BUTTONS --- */
.btn {
    display: inline-block; padding: 15px 40px; text-transform: uppercase; letter-spacing: 1px;
    font-size: 0.8rem; font-weight: 700; border-radius: 0; margin-right: 15px; cursor: pointer;
}
.btn-primary { background-color: var(--navy); color: var(--white); border: 1px solid var(--navy); }
.btn-primary:hover { background-color: var(--gold); border-color: var(--gold); }
.btn-secondary { background-color: transparent; color: var(--white); border: 1px solid var(--white); }
.btn-secondary:hover { background-color: var(--white); color: var(--navy); }
.full-width { width: 100%; display: block; text-align: center; }

/* --- 5. NAVIGATION --- */
header {
    position: fixed; width: 100%; top: 0; z-index: 1000; padding: 25px 0; 
    /* Make header slightly transparent so it looks good over the video */
    background: rgba(255, 255, 255, 0.95);
    transition: 0.4s ease; box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1; }
.sub-logo { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 2px; color: var(--gold); margin-top: 5px; }
nav ul li { display: inline-block; margin-left: 35px; }
nav ul li a { color: var(--navy); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.btn-nav { border: 1px solid var(--navy); padding: 10px 25px; }
.btn-nav:hover { background: var(--navy); color: var(--white); }
.menu-icon { display: none; font-size: 1.5rem; cursor: pointer; color: var(--navy); }

/* --- 6. HERO SECTION (FULL SCREEN VIDEO) --- */
.hero {
    height: 100vh; /* FULL SCREEN */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0; /* Starts at absolute top */
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Makes text readable */
    z-index: -1;
}

/* Centered Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    margin: 0 auto; /* Forces center alignment */
}

/* Text Styles for Hero */
.hero-content h1 {
    color: var(--white); 
    font-size: 3.5rem; 
    text-shadow: 0 4px 10px rgba(0,0,0,0.5); 
    margin-bottom: 20px;
}
.hero-content p {
    color: #f0f0f0; 
    font-size: 1.2rem; 
    font-weight: 300; 
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto; margin-right: auto;
}
.hero-badge {
    display: inline-block; background: var(--gold); color: var(--navy); padding: 8px 15px;
    font-size: 0.75rem; letter-spacing: 2px; font-weight: 800; margin-bottom: 25px; text-transform: uppercase;
}
.hero-btns { display: flex; justify-content: center; gap: 20px; }

/* Buttons in Hero */
.hero-content .btn-secondary { color: var(--white); border-color: var(--white); }
.hero-content .btn-secondary:hover { background: var(--white); color: var(--navy); }

/* --- 7. OTHER SECTIONS --- */
.trust-strip { background: var(--navy); padding: 30px 0; color: var(--white); }
.trust-grid { display: flex; justify-content: space-between; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; }
.trust-item i { color: var(--gold); margin-right: 10px; }

.process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; margin-top: 50px; }
.process-step { text-align: center; background: #fff; padding: 10px; }
.step-icon { width: 80px; height: 80px; background: var(--white); border: 2px solid var(--gold); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; font-size: 1.8rem; }

.split-layout { display: flex; align-items: center; gap: 80px; flex-direction: row; }
.split-image { flex: 1; height: 600px; background-size: cover; background-position: center; border-radius: 5px; }
.split-text { flex: 1; }
.service-item { display: flex; margin-bottom: 30px; }
.service-item i { font-size: 2rem; color: var(--gold); margin-right: 20px; margin-top: 5px; }

.dark-section { background: var(--navy); color: var(--white); }
.fabric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.fabric-card { background: rgba(255,255,255,0.05); padding: 30px; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.fabric-card h3 { color: var(--gold); font-size: 1.2rem; }
.fabric-card p { color: #ccc; font-size: 0.9rem; margin-bottom: 0; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.faq-item h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--navy); }

.contact-wrapper { display: flex; gap: 60px; margin-top: 50px; }
.contact-info { flex: 1; display: flex; flex-direction: column; gap: 30px; }
.info-card, .whatsapp-card { background: var(--white); padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; }
.contact-form { flex: 2; background: var(--white); padding: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.form-row { display: flex; gap: 20px; }
.form-group { width: 100%; margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 15px; border: 1px solid var(--border); background: #fdfdfd; font-family: var(--font-body); font-size: 0.95rem; }
.form-group input:focus { outline: none; border-color: var(--navy); }

footer { background: var(--navy); color: #888; padding: 80px 0 20px; font-size: 0.9rem; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 50px; }
.footer-logo { color: var(--white); font-size: 1.5rem; margin-bottom: 20px; display: block; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }

/* --- 8. UTILS & MOBILE --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.float-wa { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.2); z-index: 999; }

@media (max-width: 768px) {
    .nav-container { flex-wrap: wrap; }
    .menu-icon { display: block; }
    nav { position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    nav ul { display: block; max-height: 0; overflow: hidden; transition: 0.4s; }
    nav ul li { display: block; margin: 20px; text-align: center; }
    .hero { height: auto; padding: 100px 0; margin-top: 60px; } /* Mobile adjustments */
    .hero-content { margin-left: 0; margin: auto; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .btn { margin-right: 0; width: 100%; }
    .split-layout, .contact-wrapper, .faq-grid { flex-direction: column; gap: 40px; }
    .split-image { height: 300px; width: 100%; order: -1; }
    .form-row { flex-direction: column; gap: 0; }
}