/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #d4a574;
    --secondary: #1a1a2e;
    --text: #333333;
    --bg: #ffffff;
    --header-bg: #1a1a2e;
    --footer-bg: #1a1a2e;
    --btn-color: #d4a574;
    --btn-text: #ffffff;
    --font: 'Playfair Display', serif;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--btn-color);
    color: var(--btn-text);
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font);
}
.btn:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--btn-color);
    color: var(--btn-color);
}
.btn-outline:hover { background: var(--btn-color); color: var(--btn-text); }

/* Header */
.header {
    background: var(--header-bg);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}
.logo span { color: #fff; }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-weight: 500;
}
.nav a:hover { color: var(--primary); }

/* Mobile Menu */
.menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 28px; height: 2px; background: #fff; transition: 0.3s; }

/* Hero / Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Section */
.section { padding: 100px 0; }
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 15px;
}
.section-title p {
    color: #777;
    font-size: 17px;
}
.section-title .line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.service-card-body { padding: 30px; }
.service-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--secondary); }
.service-card p { color: #666; margin-bottom: 15px; font-size: 15px; }
.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}
.service-card .duration { color: #999; font-size: 14px; margin-left: 10px; }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h3 { font-size: 32px; color: var(--secondary); margin-bottom: 20px; }
.about-text p { color: #666; margin-bottom: 20px; line-height: 1.8; }

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 300px;
    cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: #fff; font-size: 18px; }

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.team-card { text-align: center; }
.team-card .img-wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--primary);
}
.team-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 20px; color: var(--secondary); }
.team-card .role { color: var(--primary); font-size: 14px; margin-top: 5px; }

/* Testimonials */
.testimonials { background: var(--secondary); }
.testimonials .section-title h2 { color: #fff; }
.testimonials .section-title p { color: rgba(255,255,255,0.6); }
.testimonials .section-title .line { background: var(--primary); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-card .stars { color: var(--primary); margin-bottom: 15px; font-size: 18px; }
.testimonial-card p { color: rgba(255,255,255,0.8); font-style: italic; margin-bottom: 20px; line-height: 1.8; }
.testimonial-card .author { color: var(--primary); font-weight: 600; }

/* Appointment Form */
.appointment { background: #f9f6f2; }
.appointment-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 14px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font);
    transition: border-color 0.3s;
    background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}
.form-group textarea { height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}
.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-info-item h4 { color: var(--secondary); margin-bottom: 5px; }
.contact-info-item p { color: #666; font-size: 15px; }
.map-wrap { border-radius: 15px; overflow: hidden; height: 350px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer h4 { color: #fff; margin-bottom: 20px; font-size: 18px; }
.footer p { line-height: 1.8; font-size: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); transition: color 0.3s; font-size: 14px; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 14px;
}
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s;
}
.social-links a:hover { background: var(--primary); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Responsive */
@media (max-width: 768px) {
    .nav { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--header-bg); flex-direction: column; padding: 20px; gap: 15px; }
    .nav.active { display: flex; }
    .menu-toggle { display: flex; }
    .hero-content h1 { font-size: 36px; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .appointment-form { padding: 30px; }
}

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

/* Alert */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
