:root {
    --primary: #1a1a1a;
    --accent: #d4af37;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --transition: all 0.3s ease;
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text-dark); scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--primary); color: var(--white); }
.text-white { color: var(--white); }

/* Navigation & Logo Fix */
.navbar { 
    background: rgba(255, 255, 255, 0.98); 
    padding: 10px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 15px; }

/* Fixed Logo Size */
.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text { font-family: 'Oswald', sans-serif; font-size: 22px; }
.brand-p { color: var(--primary); font-weight: 800; }
.brand-o { color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 600; font-size: 14px; text-transform: uppercase; }
.btn-call { background: var(--primary); color: white !important; padding: 10px 20px; border-radius: 5px; text-decoration: none; font-size: 14px; }

/* Hero */
.hero { 
    height: 85vh; 
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&q=80&w=2000'); 
    background-size: cover; 
    display: flex; 
    align-items: center; 
    text-align: center; 
    color: var(--white);
    margin-top: 70px;
}
.hero h1 { font-family: 'Oswald', sans-serif; font-size: 3.5rem; margin: 20px 0; }
.badge { background: var(--accent); color: var(--primary); padding: 5px 15px; border-radius: 20px; font-weight: 700; font-size: 12px; }
.hero-btns { margin-top: 30px; display: flex; gap: 15px; justify-content: center; }
.btn-primary { background: var(--accent); color: var(--primary); padding: 15px 30px; text-decoration: none; font-weight: 700; border-radius: 4px; }
.btn-whatsapp { background: #25D366; color: white; padding: 15px 30px; text-decoration: none; font-weight: 700; border-radius: 4px; }

/* Titles */
.section-title { text-align: center; font-family: 'Oswald', sans-serif; font-size: 32px; margin-bottom: 50px; position: relative; }
.section-title::after { content: ''; width: 50px; height: 3px; background: var(--accent); position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-stats { display: flex; gap: 20px; margin-top: 30px; }
.stat-box { background: var(--light-bg); padding: 20px; border-radius: 8px; flex: 1; text-align: center; border-bottom: 3px solid var(--accent); }
.about-image-box { position: relative; }
.about-img { width: 100%; border-radius: 15px; }
.experience-badge { position: absolute; top: -20px; right: -20px; background: var(--primary); color: white; padding: 20px; border-radius: 50%; width: 100px; height: 100px; display: flex; align-items: center; text-align: center; font-size: 12px; border: 4px solid var(--accent); }

/* Product Cards */
.detail-card { display: flex; gap: 40px; background: white; border-radius: 15px; overflow: hidden; margin-bottom: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.detail-card.reverse { flex-direction: row-reverse; }
.detail-card img { width: 45%; object-fit: cover; }
.detail-content { padding: 40px; }
.spec-list { list-style: none; margin-top: 20px; }
.spec-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.spec-list i { color: #2ecc71; }

/* Process Steps */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.step-num { font-family: 'Oswald', sans-serif; font-size: 50px; opacity: 0.2; }
.step h4 { color: var(--accent); margin-bottom: 15px; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { aspect-ratio: 1/1; overflow: hidden; border-radius: 8px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.t-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.t-card i { color: var(--accent); font-size: 30px; margin-bottom: 15px; }

/* Contact */
.c-box { display: flex; gap: 15px; align-items: center; margin-bottom: 20px; }
.c-box i { color: var(--accent); font-size: 20px; }

footer { text-align: center; padding: 30px 0; background: #000; color: #777; font-size: 14px; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .about-grid, .detail-card, .process-steps, .testimonial-grid { grid-template-columns: 1fr; }
    .detail-card.reverse { flex-direction: column; }
    .detail-card img { width: 100%; height: 250px; }
}

footer {
    background: #000;
    color: #777;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.f-link {
    color: #fff; /* White text for contrast against black footer */
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.f-link:hover {
    color: var(--accent); /* Changes to gold on hover */
}

.divider {
    margin: 0 10px;
    color: #444;
}

footer p {
    font-size: 12px;
    margin-top: 10px;
}

/* --- Legal Pages Styling --- */

/* Specialized body for legal pages to give it a clean, paper-like feel */
.legal-body {
    background-color: #f4f4f4;
    color: #1a1a1a;
    padding-top: 50px; /* Space for the fixed navbar if you include it */
    line-height: 1.8;
}

.legal-container {
    max-width: 800px;
    margin: 60px auto;
    background: #fff;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.legal-header {
    border-bottom: 2px solid var(--accent);
    margin-bottom: 40px;
    padding-bottom: 20px;
}

.brand-minimal {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 10px;
}

.legal-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.legal-note {
    background: #fff9e6; /* Light warning yellow */
    border-left: 4px solid var(--accent);
    padding: 15px 20px;
    font-size: 14px;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.legal-content p {
    color: #444;
    font-size: 16px;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.back-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--accent);
    padding-left: 5px; /* Subtle movement effect */
}

/* Responsive adjustments for mobile legal viewing */
@media (max-width: 768px) {
    .legal-container {
        margin: 20px;
        padding: 30px;
    }
    
    .legal-header h1 {
        font-size: 32px;
    }
}

/* --- Privacy & Policy Specialized Styles --- */

.legal-page {
    background-color: #f9f9f9;
    color: var(--text-dark);
    line-height: 1.7;
}

.policy-wrapper {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.policy-container {
    max-width: 850px;
    background: var(--white);
    padding: 50px 70px;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border-top: 6px solid var(--primary); /* Thick black top border for authority */
}

.policy-header {
    margin-bottom: 50px;
    text-align: left;
}

/* The PY square box in the header */
.p-box {
    display: inline-block;
    background: var(--primary);
    color: var(--accent);
    padding: 5px 12px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.policy-header h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
}

.last-updated {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Layout */
.policy-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    margin: 40px 0 15px 0;
    color: var(--primary);
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.policy-content p {
    margin-bottom: 20px;
    color: #444;
}

.policy-content ul {
    margin: 0 0 25px 20px;
    color: #555;
}

.policy-content li {
    margin-bottom: 10px;
}

/* Styling the phone number area */
.contact-highlight {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    color: var(--accent);
    background: var(--light-bg);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 10px;
}

/* Footer Navigation */
.policy-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.back-btn {
    text-decoration: none;
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
    transition: var(--transition);
}

.back-btn:hover {
    color: var(--accent);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .policy-container {
        padding: 30px 25px;
    }
    
    .policy-header h1 {
        font-size: 30px;
    }
    
    .policy-wrapper {
        padding: 40px 15px;
    }
}