* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

/* =========================
   HEADER
========================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #172554;
    color: white;
}

header h1 {
    font-size: 1.5rem;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #f97316;
}

/* =========================
   GENERAL SECTIONS
========================= */

section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================
   HERO
========================= */

#hero {
    max-width: none;
    text-align: center;
    padding: 90px 40px 110px;
    background: #172554;
    color: white;
    border-bottom: 5px solid #f97316;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.hero-label,
.section-label {
    color: #f97316;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

#hero h2 {
    color: white;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 1.15rem;
}

.hero-buttons,
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
    background: #f97316;
    color: white;
}

.primary-button:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(23, 37, 84, 0.2);
}

.secondary-button {
    border: 2px solid #172554;
    color: #172554;
    background: white;
}

.secondary-button:hover {
    background: #172554;
    color: white;
    transform: translateY(-2px);
}

/* Hero Offers */

.hero-offers {
    margin-top: 25px;
    padding: 20px;
    background: #f8fafc;
    border-left: 4px solid #f97316;
    border-radius: 8px;
    color: #172554;
}

.hero-offers p {
    margin-bottom: 8px;
}

.hero-offers p:last-of-type {
    margin-bottom: 12px;
}

.hero-offers strong {
    color: #f97316;
}

.hero-offers small {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
}

/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
    max-width: 700px;
    margin-bottom: 45px;
}

.section-heading h2 {
    color: #172554;
    font-size: 2.7rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* =========================
   SERVICES
========================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    padding: 40px 35px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    border-top: 4px solid #f97316;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
    line-height: 1.7;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(23, 37, 84, 0.1);
}

.service-number {
    color: #f97316;
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #172554;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

/* =========================
   WHY US
========================= */

#why-us {
    background: #f8fafc;
    max-width: none;
    padding-left: max(40px, calc((100% - 1100px) / 2));
    padding-right: max(40px, calc((100% - 1100px) / 2));
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.trust-item {
    padding: 30px;
    background: white;
    border-left: 4px solid #f97316;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(23, 37, 84, 0.08);
}

.trust-item h3 {
    color: #172554;
    margin-bottom: 12px;
}

/* =========================
   PRICING
========================= */

#pricing {
    background: #172554;
    color: white;
    max-width: none;
    padding-left: max(40px, calc((100% - 1100px) / 2));
    padding-right: max(40px, calc((100% - 1100px) / 2));
}

.pricing-heading {
    max-width: 700px;
    margin-bottom: 45px;
}

.pricing-heading {
    max-width: 700px;
    margin-bottom: 45px;
}

.pricing-heading h2 {
    color: white;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.price-card {
    padding: 35px 20px;
    background: white;
    color: #172554;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #f97316;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(23, 37, 84, 0.12);
}

.price-card h3 {
    margin-bottom: 15px;
}

.price {
    color: #f97316;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.price span {
    font-size: 0.9rem;
    color: #64748b;
}

.price-card p:last-child {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #475569;
}

/* Pricing Offers */

.discount-box {
    margin-top: 35px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #f97316;
}

.discount-box strong {
    display: block;
    font-size: 1.7rem;
    color: #f97316;
    margin-bottom: 18px;
}

.discount-box p {
    margin-bottom: 8px;
    color: #172554;
}

.discount-box small {
    display: block;
    margin-top: 15px;
    color: #64748b;
    font-size: 0.8rem;
}

/* =========================
   FREE ESTIMATE CTA
========================= */

#estimate-cta {
    max-width: none;
    text-align: center;
    background: #f97316;
    color: white;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
}

#estimate-cta .section-label {
    color: white;
}

#estimate-cta h2 {
    color: white;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

#estimate-cta p:not(.section-label) {
    max-width: 650px;
    margin: 0 auto 30px;
}

#estimate-cta .primary-button {
    background: #172554;
    padding: 16px 30px;
    font-size: 1rem;
}

#estimate-cta .primary-button:hover {
    background: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(23, 37, 84, 0.2);
}

/* =========================
   CONTACT
========================= */

#contact {
    max-width: none;
    text-align: center;
    background: #f8fafc;
}

.contact-content {
    max-width: 750px;
    margin: 0 auto;
}

#contact h2 {
    color: #172554;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.contact-text {
    max-width: 650px;
    margin: 0 auto 30px;
}

.contact-details {
    margin-top: 35px;
    color: #475569;
}

.contact-details p {
    margin-bottom: 5px;
}

.contact-details a {
    color: #172554;
    font-weight: bold;
    text-decoration: none;
}

.contact-details a:hover {
    color: #f97316;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #0f172a;
    color: white;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-brand {
    text-align: left;
}

.footer-brand h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #cbd5e1;
    max-width: 400px;
}

.footer-contact,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.footer-contact p {
    color: #cbd5e1;
    margin: 0;
}

.footer-contact h3,
.footer-links h3 {
    margin-bottom: 12px;
    color: white;
}

.footer-contact a,
.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: #f97316;
}

.footer-bottom {
    padding: 20px 40px;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {
    header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    section {
        padding: 60px 20px;
    }

    #hero {
        padding: 90px 20px;
    }

    #hero h2 {
        font-size: 2.6rem;
    }

    .hero-image img {
        height: 250px;
    }

    .hero-offers {
        padding: 18px 15px;
    }

    .hero-offers p {
        line-height: 1.5;
    }

    .section-heading h2,
    .pricing-heading h2,
    #contact h2 {
        font-size: 2rem;
    }

    .service-grid,
    .trust-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .footer-bottom {
        padding: 20px;
    }
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.review-card {
    overflow: hidden;
    border-radius: 10px;
}

.review-card img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    display: block;
}