@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

:root {
    --teal: #1a8f8f;
    --teal-dark: #136f6f;
    --teal-light: #e6f7f7;
    --orange: #f5813f;
    --orange-dark: #d96020;
    --cream: #fdf9f4;
    --text: #1c2b2b;
    --muted: #607070;
    --white: #ffffff;
    --radius: 18px;
    --shadow: 0 8px 32px rgba(26,143,143,0.13);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--teal);
    text-decoration: none;
}

.logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
}

.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 0.5rem 1.3rem;
    border-radius: 30px;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--orange-dark) !important;
    color: var(--white) !important;
}

/* Buttons */
.btn-primary {
    background: var(--teal);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--teal);
    color: var(--teal);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--orange);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-white:hover {
    transform: translateY(-2px);
}

.btn-submit {
    background: var(--teal);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--teal-dark);
}

/* Hero Section */
.hero {
    margin-top: 72px;
    min-height: 88vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 60%);
    gap: 3rem;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero-text h1 em {
    color: var(--teal);
    font-style: normal;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-img-wrap {
    position: relative;
}

.hero-img-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px 80px 24px 80px;
    box-shadow: var(--shadow);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--orange);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(245,129,63,0.3);
}

.hero-badge strong {
    display: block;
    font-size: 1.5rem;
}

/* Page Hero */
.page-hero {
    margin-top: 72px;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 60%);
    padding: 4rem 5%;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Hero */
.service-hero {
    margin-top: 72px;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--cream) 60%);
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.service-hero img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 80px 24px 80px 24px;
    box-shadow: var(--shadow);
}

/* Trust Bar */
.trust-bar {
    background: var(--teal);
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.2rem 5%;
    flex-wrap: wrap;
}

.trust-item {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.trust-item svg {
    width: 22px;
    height: 22px;
}

/* Sections */
.section {
    padding: 5rem 5%;
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-body {
    padding: 1.2rem;
}

.service-card-body h3 {
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.service-card-body p {
    color: var(--muted);
    font-size: 0.85rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature h3 {
    color: var(--teal);
    margin-bottom: 0.5rem;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1rem;
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 80px 24px 80px 24px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.why-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-icon {
    width: 45px;
    height: 45px;
    background: var(--teal-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon svg {
    width: 22px;
    height: 22px;
    color: var(--teal);
}

/* Testimonials */
.testi-section {
    background: var(--text);
}

.testi-section .section-title {
    color: white;
}

.testi-section .section-sub {
    color: rgba(255,255,255,0.6);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.stars {
    color: var(--orange);
    margin-bottom: 0.8rem;
}

.testi-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testi-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-author strong {
    color: white;
    display: block;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    padding: 4rem 5%;
    text-align: center;
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--teal);
}

.contact-card a {
    color: var(--teal);
    text-decoration: none;
}

.hours-card {
    background: var(--teal);
    color: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.hours-card h3 {
    margin-bottom: 1rem;
}

/* Form */
.form-container {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--teal);
}

/* Footer */
footer {
    background: #0e1c1c;
    color: rgba(255,255,255,0.7);
    padding: 3rem 5% 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    font-size: 1.3rem;
    color: var(--teal);
}

.footer-brand p {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 250px;
}

footer h4 {
    color: white;
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

footer ul a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .hero-img-wrap {
        display: none;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-img {
        display: none;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .service-hero {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
}
/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    padding: 0;
}

.dropdown .dropbtn:hover,
.dropdown .dropbtn.active {
    color: var(--teal);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 12px;
    z-index: 1001;
    overflow: hidden;
    margin-top: 10px;
}

.dropdown-content a {
    color: var(--text);
    padding: 12px 18px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--teal-light);
    color: var(--teal);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Arrow indicator */
.dropdown .dropbtn::after {
    content: ' ▼';
    font-size: 10px;
    margin-left: 4px;
}

/* Responsive */
@media (max-width: 900px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 0;
        background: transparent;
    }
    .dropdown-content a {
        padding: 8px 0 8px 20px;
        border-bottom: none;
    }
    .dropdown .dropbtn::after {
        display: none;
    }
}