/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8fafc;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background: #162852;          /* Much darker navy – stands out better */
    border-bottom: 3px solid #ea580c;  /* Strong orange line under the header */    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.logo img {
    height: 150px;
    width: auto;
    display: block;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 1.6rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #fb923c;               /* Bright orange on hover */
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #ea580c;
    color: white;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.35);
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}


.btn:hover {
    background: #c2410c;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero */
/* Hero */
.hero {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);  /* Clear light green */
    color: #0f172a;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    color: #0f172a;
}

.hero p {
    color: #1e293b;
}

.hero .phone a {
    color: #ea580c;
    font-weight: 700;
}

/* Hero Special Offer Box */
.hero-offer-box {
    background: #ffffff;
    border: 2px solid #ea580c;
    border-radius: 12px;
    padding: 1.6rem 2rem;
    margin: 2rem auto 2.5rem;
    max-width: 380px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.hero-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #ea580c;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 1.1rem;
    border-radius: 20px;
    white-space: nowrap;
}

.hero-offer-box h3 {
    color: #0f172a;
    font-size: 1.4rem;
    margin: 0.9rem 0 0.3rem;
}

.hero-offer-desc {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.hero-prices .old-price {
    font-size: 1.3rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 0.8rem;
}

.hero-prices .new-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ea580c;
}
/* Sections */
section {
    padding: 4rem 0;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #ea580c;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-top: 4px solid #ea580c;
}

.service-card h3 {
    color: #c2410c;
    margin-bottom: 0.6rem;
}

/* About / Profile Section */
.about {
    background: #ffffff;
    padding: 5rem 0;
}

.about-profile {
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-photo {
    flex: 0 0 280px;
}

.profile-photo img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: block;
}

.profile-content h2 {
    font-size: 2.4rem;
    color: #ea580c;
    margin-bottom: 0.4rem;
    font-weight: 700;
    text-align: left;
}

.qualifications {
    font-size: 1.15rem;
    color: #c2410c;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.orange-line {
    width: 80px;
    height: 3px;
    background: #f59e0b;
    margin-bottom: 1.8rem;
}

.profile-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

/* Testimonials */
.testimonials {
    background: #fff7ed;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #ea580c;
}

/* Special Offers Section */
.offers {
    background: #fff7ed;
    padding: 4.5rem 0;
}

.offers-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: #555;
    font-size: 1.1rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.offer-card {
    background: white;
    padding: 2.2rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
    position: relative;
    border: 2px solid #fed7aa;
}

.offer-card.featured {
    border-color: #ea580c;
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ea580c;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 20px;
}

.offer-card h3 {
    color: #c2410c;
    margin: 1.2rem 0 0.4rem;
    font-size: 1.25rem;
}

.offer-desc {
    color: #64748b;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 0.8rem;
}

.price-box {
    margin: 1rem 0;
}

.old-price {
    font-size: 1.4rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 0.8rem;
}

.new-price {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ea580c;
}

.offer-card p {
    color: #555;
    line-height: 1.5;
}

.offers-note {
    text-align: center;
    margin-top: 2.2rem;
    color: #64748b;
    font-size: 0.95rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: #ea580c;
}

.map {
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-form .note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e293b;
        flex-direction: column;
        padding: 1rem;
    }

    nav.open {
        display: flex;
    }

    nav a {
        margin: 0.8rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .profile-photo {
        flex: none;
        max-width: 260px;
    }

    .profile-content h2,
    .qualifications {
        text-align: center;
    }

    .orange-line {
        margin-left: auto;
        margin-right: auto;
    }
}