:root {
    --primary: #ff6b6b;
    /* Coral Red */
    --secondary: #feca57;
    /* Sunset Yellow */
    --text-main: #341f1f;
    --text-light: #ff9f1c;
    --bg-light: #fff3e0;
    --white: #ffffff;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

section {
    padding: 80px 10%;
}

.btn {
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: #059669;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* --- HEADER --- */
header {
    background: var(--white);
    padding: 1rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--secondary);
}

/* --- HERO --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* --- SERVICES GRID --- */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-category {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.service-category h3 {
    color: var(--primary);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.service-category ul li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-category ul li::before {
    content: "• ";
    color: var(--secondary);
    font-weight: bold;
}

/* --- WHY CHOOSE US --- */
.features {
    background: var(--bg-light);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    display: block;
    margin-bottom: 15px;
}

/* --- FAQ (Accordion) --- */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding-top: 10px;
    color: var(--text-light);
}

/* --- FORMS --- */
.contact-flex {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-form,
.newsletter-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 320px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
}

/* --- MODALS --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 30px;
    width: 80%;
    border-radius: 8px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* --- FOOTER --- */
footer {
    background: #333;
    color: #cbd5e1;
    padding: 60px 10% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .modal-content {
        width: 90%;
    }
}