/* ===== RESET & BASE ===== */
:root {
    --primary: #d4a574;
    --primary-dark: #b8864e;
    --dark: #1a1a1a;
    --light: #f8f5f0;
    --gray: #6c757d;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; position: relative; display: inline-block; margin-bottom: 2rem; }
h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

p { color: var(--gray); margin-bottom: 1rem; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.btn-phone {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 8px 22px;
    font-size: 0.95rem;
    display: none;
}
.btn-phone:hover {
    background-color: var(--primary);
    color: white;
}
@media (min-width: 992px) {
    .btn-phone { display: inline-block; }
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    padding: 20px 0;
    transition: var(--transition);
}
header.scrolled { padding: 15px 0; box-shadow: var(--shadow); }

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}
.logo span { color: var(--primary); }

nav ul {
    display: flex;
    list-style: none;
}
nav ul li { margin-left: 30px; }
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
nav ul li a:hover { color: var(--primary); }
nav ul li a.active { color: var(--primary); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}
.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInDown 1s forwards;
}
.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0;
    animation: fadeInUp 1s 0.5s forwards;
}
.hero .btn {
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== WELCOME / ABOUT ===== */
.welcome { background-color: white; }
.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.welcome-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ===== SERVICES ===== */
.services { background-color: #f9f7f2; text-align: center; }
.services h2:after { left: 50%; transform: translateX(-50%); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.service-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); }
.service-card h3 { color: var(--primary-dark); }

/* ===== TESTIMONIALS ===== */
.testimonials { background-color: white; text-align: center; }
.testimonials h2:after { left: 50%; transform: translateX(-50%); }

.testimonial-slider {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}
.testimonial-slide {
    padding: 30px;
    background-color: #f9f7f2;
    border-radius: var(--border-radius);
    margin: 0 15px;
    display: none;
}
.testimonial-slide.active { display: block; animation: fadeIn 0.8s ease; }
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
}
.customer-info {
    display: flex;
    align-items: center;
    justify-content: center;
}
.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}
.customer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.customer-details h4 { margin-bottom: 5px; }
.customer-details p { font-size: 0.9rem; }

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active { background-color: var(--primary); }

/* ===== WHY CHOOSE ===== */
.why-choose { background-color: #f9f7f2; text-align: center; }
.why-choose h2:after { left: 50%; transform: translateX(-50%); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.why-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
.why-card h3 { color: var(--primary-dark); }

/* ===== HOW WORK ===== */
.how-work { background-color: white; text-align: center; }
.how-work h2:after { left: 50%; transform: translateX(-50%); }
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.work-card {
    background-color: #f9f7f2;
    padding: 30px 20px;
    border-radius: var(--border-radius);
}
.work-card h3 { color: var(--primary-dark); }

/* ===== SERVICE AREAS ===== */
.service-areas { background-color: #f9f7f2; text-align: center; }
.service-areas h2:after { left: 50%; transform: translateX(-50%); }
.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 15px 30px;
    max-width: 800px;
    margin: 40px auto 0;
    font-size: 1.1rem;
    font-weight: 500;
}
.areas-list li {
    background-color: white;
    padding: 8px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

/* ===== CONTACT ===== */
.contact { background-color: white; }
.contact h2:after { left: 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}
.contact-item { margin-bottom: 30px; }
.contact-item h3 { color: var(--primary-dark); margin-bottom: 5px; }
.contact-item p { margin-bottom: 0; }
.contact-item a { color: var(--dark); text-decoration: none; }
.contact-item a:hover { color: var(--primary); }

.hours ul {
    list-style: none;
    margin-top: 10px;
}
.hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}
.hours ul li:last-child { border-bottom: none; }

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 350px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 350px;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
}
.footer-col p { color: #aaa; }
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
    color: #aaa;
}
.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-col ul li i {
    width: 20px;
    color: var(--primary);
}

.social-icons {
    display: flex;
    margin-top: 20px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}
.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

#newsletterForm {
    display: flex;
    margin-top: 15px;
}
#newsletterForm input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.95rem;
}
#newsletterForm .btn {
    border-radius: 0 4px 4px 0;
    padding: 10px 18px;
    font-size: 0.95rem;
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .welcome-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    .welcome-image { order: -1; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .mobile-menu-btn { display: block; }
    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--dark);
        transition: var(--transition);
        padding: 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    nav.active { right: 0; }
    nav ul { flex-direction: column; }
    nav ul li { margin: 0 0 20px 0; }

    .hero-content h1 { font-size: 3rem; }
    .hero-content p { font-size: 1rem; }

    .btn-phone { display: none; }
}

@media (max-width: 576px) {
    section { padding: 60px 0; }
    .hero-content h1 { font-size: 2.5rem; }
    .services-grid, .why-grid, .work-grid {
        grid-template-columns: 1fr;
    }
    .areas-list li { font-size: 1rem; padding: 6px 18px; }
}