:root {
    --primary-color: #4E342E; /* Deep Brown */
    --secondary-color: #F5E9DD; /* Soft Beige */
    --accent-color: #D84315; /* Rustic Orange */
    --text-color: #3E2723;
    --light-text: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Raleway', sans-serif;
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            line-height: 1.7;
            color: var(--text-color);
            background-color: var(--light-text);
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 50px 20px;
        }
        .h-container {
            max-width: 1200px;
            margin: auto;
            padding: 10px 20px;
        }

        /* Header & Navigation */
        header {
            background: var(--primary-color);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--accent-color);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--light-text);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 35px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--light-text);
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/hero.webp') no-repeat center center/cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            padding-top: 100px;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero-content h1 {
            font-family: var(--font-heading);
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 3px;
        }

        .hero-content p {
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 2.5rem;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            color: var(--light-text);
            text-decoration: none;
            font-family: var(--font-body);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid var(--accent-color);
            transition: all 0.4s ease;
        }

        .btn:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }

        /* Sections */
        section {
            padding: 100px 0;
        }

        .section-title {
            font-family: var(--font-heading);
            text-align: center;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 60px;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 1px;
            background-color: var(--accent-color);
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .service-card {
            text-align: center;
            padding: 40px 20px;
            background: var(--light-text);
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: var(--accent-color);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .service-card i {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 25px;
        }

        .service-card h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        /* Why Choose Us */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            text-align: center;
        }
        
        .feature-item h3 {
            font-family: var(--font-heading);
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 2rem;
        }

        /* FAQ Accordion */
        .accordion-item {
            background: var(--light-text);
            margin-bottom: 20px;
            border-bottom: 1px solid var(--accent-color);
        }

        .accordion-header {
            padding: 25px;
            cursor: pointer;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--primary-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .accordion-header span { color: var(--accent-color); }

        .accordion-content {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        }
        
        .accordion-item.active .accordion-content {
            padding: 0 25px 25px;
            max-height: 500px;
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 800px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 15px;
            background: transparent;
            border: none;
            border-bottom: 1px solid #ccc;
            font-family: var(--font-body);
            transition: border-color 0.3s ease;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            outline: none;
            border-bottom-color: var(--accent-color);
        }

        .contact-form textarea {
            grid-column: 1 / -1;
            resize: vertical;
            min-height: 150px;
        }

        .contact-form .btn {
            grid-column: 1 / -1;
            justify-self: center;
            cursor: pointer;
            margin-top: 20px;
            color: #000000;
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: var(--light-text);
            text-align: center;
            padding: 60px 20px;
        }

        footer p {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }

        footer a {
            color: var(--accent-color);
            text-decoration: none;
            margin: 0 20px;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--light-text);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.85);
        }

        .modal-content {
            background-color: var(--light-text);
            margin: 5% auto;
            padding: 50px;
            border: 1px solid var(--accent-color);
            width: 85%;
            max-width: 650px;
            position: relative;
        }

        .close {
            color: var(--primary-color);
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
        }

        .modal h2 {
            font-family: var(--font-heading);
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 2.5rem;
        }

        .newsletter-form input, .newsletter-form label {
            display: block;
            width: 100%;
            margin-bottom: 20px;
        }
        
        .newsletter-form input {
            padding: 12px;
            background: transparent;
            border: none;
            border-bottom: 1px solid #ccc;
        }

        .confirmation-message {
            display: none;
            text-align: center;
            font-size: 1.4rem;
            color: var(--primary-color);
        }