/* Color Palette & Variables */
:root {
    --bg-primary: #0d0d0d;
    --bg-secondary: #161616;
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --brown: #2d1b11;
    --brown-light: #4a3021;
    --text-main: #fcfcfc;
    --text-muted: #b3b3b3;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-primary); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; color: #fff; }
h2 { font-size: 2.8rem; margin-bottom: 0.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--gold); }
p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1rem; font-weight: 300; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* Images */
img { max-width: 100%; height: auto; object-fit: cover; display: block; }

/* Buttons */
.btn { display: inline-block; padding: 12px 30px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; border: 2px solid transparent; cursor: pointer; transition: var(--transition); font-size: 0.9rem; margin-right: 15px; }
.btn-primary { background-color: var(--gold); color: #000; border-color: var(--gold); }
.btn-primary:hover { background-color: transparent; color: var(--gold); }
.btn-secondary { background-color: transparent; border-color: var(--text-main); color: var(--text-main); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-text { color: var(--gold); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; border-bottom: 1px solid transparent; padding-bottom: 2px; }
.btn-text:hover { border-color: var(--gold); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.bg-dark { background-color: var(--bg-secondary); }
.bg-accent { background-color: var(--brown); background-image: linear-gradient(135deg, var(--brown) 0%, #0d0d0d 100%); position: relative; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

/* Titles */
.section-title { text-align: center; margin-bottom: 60px; }
.underline { width: 60px; height: 3px; background-color: var(--gold); margin: 0 auto 15px auto; }
.subtitle { max-width: 600px; margin: 0 auto; }

/* Header & Nav */
header { position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; transition: var(--transition); background: transparent; padding: 20px 0; }
header.scrolled { background-color: rgba(13, 13, 13, 0.95); backdrop-filter: blur(10px); padding: 12px 0; border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo a { font-size: 1.8rem; font-weight: 700; color: #fff; letter-spacing: 2px; }
.logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--gold); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

/* Hero Section */
.hero { height: 100vh; display: flex; align-items: center; position: relative; background: url('images/images1.jfif') no-repeat center center/cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.6) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-content h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; margin-bottom: 35px; max-width: 600px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 15px; }

/* About Us */
.about-text .credibility-badges { display: flex; gap: 20px; margin-top: 30px; }
.badge { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.95rem; color: #fff; }
.badge i { color: var(--gold); }
.img-wrapper { position: relative; padding-bottom: 20px; padding-right: 20px; }
.img-wrapper::after { content: ''; position: absolute; bottom: 0; right: 0; width: 90%; height: 90%; border: 2px solid var(--gold); z-index: 1; border-radius: 4px; }
.img-wrapper img { width: 100%; display: block; position: relative; z-index: 2; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* Products Card */
.product-card { background-color: var(--bg-primary); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; overflow: hidden; transition: var(--transition); }
.product-card:hover { transform: translateY(-10px); border-color: rgba(212, 175, 55, 0.3); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.card-img { height: 250px; overflow: hidden; background-color: var(--brown-light); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s ease; filter: brightness(0.8); }
.product-card:hover .card-img img { transform: scale(1.05); filter: brightness(1); }
.card-content { padding: 30px; }
.card-content h3 { color: #fff; margin-bottom: 15px; font-size: 1.4rem; }

/* Services */
.service-box { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 40px 30px; text-align: center; border-radius: 8px; transition: var(--transition); }
.service-box:hover { background: rgba(212, 175, 55, 0.05); border-color: var(--gold); transform: translateY(-5px); }
.service-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }

/* Why Choose Us */
.trust-indicators { display: flex; justify-content: space-around; flex-wrap: wrap; margin-top: 50px; }
.indicator { flex: 1; min-width: 250px; margin: 15px; text-align: center; }
.icon-circle { width: 80px; height: 80px; margin: 0 auto 20px; background-color: rgba(212, 175, 55, 0.1); border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; color: var(--gold); transition: var(--transition); }
.indicator:hover .icon-circle { background-color: var(--gold); color: #000; }

/* Contact */
.contact-info i { color: var(--gold); width: 25px; }
.open-hours { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-form-container { background-color: var(--bg-primary); padding: 40px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 15px; background-color: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 4px; font-family: var(--font-body); transition: var(--transition); }
.form-group select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; background-size: 18px; padding-right: 45px; cursor: pointer; }
.form-group select option { background-color: var(--bg-primary); color: #fff; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); background-color: rgba(255,255,255,0.05); }
.submit-btn { background-color: var(--gold); color: #000; border: none; padding: 15px 30px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; cursor: pointer; transition: var(--transition); width: 100%; font-size: 1rem; }
.submit-btn:hover { background-color: var(--gold-hover); }

/* Footer */
footer { background-color: #050505; border-top: 1px solid rgba(212, 175, 55, 0.2); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand h2 { font-size: 1.5rem; margin-bottom: 15px; }
.footer-brand span { color: var(--gold); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.social-icons a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; background-color: rgba(255,255,255,0.05); border-radius: 50%; margin-right: 10px; transition: var(--transition); }
.social-icons a:hover { background-color: var(--gold); color: #000; }
.footer-bottom { text-align: center; padding: 25px 0; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; }

/* Animations - fade in */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Media Queries */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.5rem; }
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { position: fixed; right: -100%; top: 70px; flex-direction: column; background-color: var(--bg-secondary); width: 100%; text-align: center; padding: 30px 0; transition: 0.3s; box-shadow: 0 10px 15px rgba(0,0,0,0.5); }
    .nav-links.active { right: 0; }
    .hamburger { display: block; }
    .grid-2 { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; gap: 0; }
    .hero-content h1 { font-size: 2.8rem; }
    .section-padding { padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .grid-4, .grid-3 { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn { margin-right: 0; text-align: center; width: 100%; }
    .about-text .credibility-badges { flex-direction: column; align-items: flex-start; }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
}

.whatsapp-float.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Email Floating Button */
.email-float {
    position: fixed;
    bottom: 110px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #fff !important;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
}

.email-float.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.email-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(234, 67, 53, 0.4);
}

.email-float svg {
    width: 32px;
    height: 32px;
}



.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-float i {
    margin-top: 1px;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float.show {
    animation: pulse 2s infinite;
}

/* Responsive Buttons */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    .email-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}
