:root {
    --primary-color: #F57C00; /* Orange */
    --secondary-color: #FFE0B2; /* Light Orange/Cream */
    --accent-color: #EF6C00; /* Dark Orange */
    --text-color: #E65100; 
    --light-text: #FFFFFF;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #FBF8F3;
    /* Creamy off-white */
}

.h-container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

/* Header & Navigation */
header {
    background: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--light-text);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero.webp') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-color);
    color: var(--light-text);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.btn:hover {
    background: transparent;
    color: var(--light-text);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(93, 64, 55, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

/* FAQ Accordion */
.accordion-item {
    background: #fff;
    margin-bottom: 15px;
    border: 1px solid var(--secondary-color);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Contact Form */
.contact-form {
    max-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    font-family: var(--font-body);
}

.contact-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn {
    grid-column: 1 / -1;
    justify-self: center;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 50px 20px;
}

footer p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 700;
    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.7);
}

.modal-content {
    background-color: #FBF8F3;
    margin: 5% auto;
    padding: 40px;
    border: 2px solid var(--primary-color);
    width: 85%;
    max-width: 650px;
    position: relative;
}

.close {
    color: var(--primary-color);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--text-color);
}

.modal h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.newsletter-form input,
.newsletter-form label {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
}

.confirmation-message {
    display: none;
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-color);
}