*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

:root {
    --blue: #1a4fa0;
    --blue-dk: #0d3270;
    --gold: #f5a623;
    --gold-dk: #d4891a;
    --dark: #1c1f26;
    --gray: #6b7280;
    --light: #f8fafc;
    --white: #ffffff;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
}

.container {
    /* max-width: 1140px; */
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 .25rem;
    }
}

.section {
    padding: 40px 0;
}

/* ---- SECTION HEADERS ---- */
.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section__header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.section__label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn--primary {
    background: var(--gold);
    color: var(--dark);
}

.btn--primary:hover {
    background: var(--gold-dk);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
}

.btn--outline:hover {
    background: var(--blue);
    color: var(--white);
}

.btn--white {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
}

.btn--white:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn--sms {
    background: #25d366;
    color: var(--white);
}

.btn--sms:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1.05rem;
}

/* ---- HEADER ---- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo__img {
    height: 56px;
    width: 56px;
    object-fit: contain;
    border-radius: 4px;
}

.logo__blue {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1.1;
}

.logo__sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.header__cta:empty {
    display: none;
}

.nav a:hover {
    color: var(--blue);
}

.header__cta {
    display: flex;
    gap: 0.75rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    gap: 0.75rem;
}

.mobile-nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
}

.mobile-nav.open {
    display: flex;
}

@media (max-width: 900px) {

    .nav,
    .header__cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero__call-btn {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    z-index: 10;
    background: var(--white);
    color: var(--blue);
    text-decoration: none;
    padding: 0.55rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    border: 2px solid var(--gold);
    transition: background 0.2s, color 0.2s;
}

.hero__call-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 30%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 50, 112, 0.85) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 1rem;
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero__highlight {
    color: var(--gold);
}

.hero__sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 600px) {
    .hero {
        min-height: auto;
        align-items: flex-start;
        padding-top: 4.5rem;
        padding-bottom: 2rem;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__content {
        padding: 1rem 0;
    }

    .hero__sub {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .btn--lg {
        width: 100%;
        justify-content: center;
    }
}

/* ---- TRUST BAR ---- */
.trust-bar {
    background: var(--blue);
    color: var(--white);
    padding: 1rem 0;
}

.trust-bar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-item i {
    color: var(--gold);
}

/* ---- SERVICES ---- */
.services {
    background: var(--light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 600px) {
    .services__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 4px solid var(--blue);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.card__icon {
    font-size: 2.5rem;
    color: var(--blue);
    /* margin-bottom: 1rem; */
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ---- COLOR CAROUSEL ---- */
.colors {
    background: var(--light);
}

.colors-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.colors-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
}

.colors-carousel::-webkit-scrollbar {
    display: none;
}

.color-slide {
    scroll-snap-align: start;
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.color-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.color-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.color-circle:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.color-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    max-width: 80px;
}

@media (max-width: 600px) {
    .color-slide {
        gap: 0.75rem;
    }

    .color-circle {
        width: 44px;
        height: 44px;
    }

    .color-name {
        font-size: 0.7rem;
        max-width: 60px;
    }
}/* ---- ABOUT ---- */
.about {
    background: var(--white);
}

.about__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.about__text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about__text p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.about__list {
    list-style: none;
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.about__list i {
    color: var(--blue);
    font-size: 1.1rem;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 480px;
}

.stat-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 0.75rem;
    text-align: center;
    border-bottom: 4px solid var(--gold);
}

.stat-card__num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
}

.stat-card__label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .about__inner {
        grid-template-columns: 1fr;
    }
}

.about__photo {
    margin-top: 2rem;
    text-align: center;
}

.about__ed-photo {
    width: 100%;
    max-width: 340px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--gold);
}

.about__photo-caption {
    margin-top: 0.75rem;
    font-weight: 700;
    color: var(--gray);
    font-size: 0.95rem;
}

/* ---- GALLERY ---- */
.gallery {
    background: var(--white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

.gallery__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: zoom-in;
}

.gallery__img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.gallery__img:first-child {
    grid-column: span 2;
    height: 320px;
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery__img:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__img:first-child {
        grid-column: span 1;
    }
}

/* ---- TESTIMONIALS ---- */
.testimonials {
    background: var(--light);
}

/* ---- REVIEWS CAROUSEL ---- */
.reviews-carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    align-items: stretch;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-slide {
    scroll-snap-align: start;
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 640px) {
    .carousel-slide {
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (min-width: 900px) {
    .carousel-slide {
        flex: 0 0 calc(33.333% - 0.75rem);
        width: calc(33.333% - 0.75rem);
    }
}

.reviews-carousel .testimonial-card {
    width: 100%;
    min-width: 0;
    flex: 1;
}

.carousel-btn {
    flex-shrink: 0;
    background: var(--white);
    border: 2px solid var(--blue);
    color: var(--blue);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    padding: 0;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--blue);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--blue);
    width: 22px;
    border-radius: 4px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
}

@media (max-width: 640px) {
    .reviews-carousel .testimonial-card {
        padding: 0.875rem 0.75rem;
    }

    .reviews-carousel .testimonial-card__stars {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .reviews-carousel .testimonial-card p {
        font-size: 0.875rem;
        line-height: 1.55;
    }

    .reviews-carousel .testimonial-card__footer {
        gap: 0.4rem;
        margin-top: 0.75rem;
    }

    .reviews-carousel .avatar {
        width: 28px;
        height: 28px;
        font-size: 0.6rem;
    }

    .reviews-carousel .testimonial-card__author {
        font-size: 0.75rem;
    }
}

.testimonial-card__stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.testimonial-card p {
    color: var(--gray);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.testimonial-card__author {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    letter-spacing: 0.02em;
}

.avatar--blue {
    background: var(--blue);
}

.avatar--gold {
    background: var(--gold);
    color: var(--dark);
}

.avatar--green {
    background: #16a34a;
}

.avatar--purple {
    background: #7c3aed;
}

.avatar--red {
    background: #dc2626;
}

.avatar--teal {
    background: #0891b2;
}

.avatar--pink {
    background: #be185d;
}

/* ---- SERVICE AREA ---- */
.area {
    background: var(--blue);
    color: var(--white);
}

.area .section__header h2 {
    color: var(--white);
}

.area .section__header p {
    color: rgba(255, 255, 255, 0.75);
}

.area__towns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.area__towns span {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---- CONTACT ---- */
.contact {
    background: var(--white);
}

.contact__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 720px;
    margin: 0 auto;
}

.contact__info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact__info>p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact__options {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact__option {
    flex: 1;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 1.25rem;
    border-radius: var(--radius);
    background: var(--blue);
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(26, 79, 160, 0.25);
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
    border: none;
}

.contact__option:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 28px rgba(26, 79, 160, 0.35);
    background: var(--blue-dk, #0d3270);
    color: #fff;
}

.contact__option i {
    font-size: 1.6rem;
    color: #fff;
    width: auto;
    text-align: center;
}

.contact__option--sms {
    background: #16a34a;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.28);
}

.contact__option--sms:hover {
    background: #15803d;
    box-shadow: 0 8px 28px rgba(22, 163, 74, 0.38);
}

.contact__option--sms i {
    color: #fff;
}

.contact__option--cal i {
    color: var(--gold);
}

.contact__option--tg i {
    color: #fff;
}

.contact__option strong {
    display: block;
    font-weight: 700;
    color: #fff;
}

.contact__option span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
}

.contact__form-wrap {
    background: var(--light);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--white);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 79, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
}

@media (max-width: 900px) {
    .contact__inner {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ---- FOOTER ---- */
.footer {
    background: var(--blue-dk);
    color: rgba(255, 255, 255, 0.85);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem 2rem;
}

.footer__brand {
    max-width: 320px;
}

.footer__brand .logo {
    margin-bottom: 1rem;
}

.footer__brand p {
    font-size: 0.95rem;
    opacity: 0.75;
    line-height: 1.6;
}

.footer__contact h4,
.footer__links h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer__contact p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer__contact i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__bottom {
    text-align: center;
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer__inner {
        grid-template-columns: 1fr;
    }
}

/* ---- MOBILE FLOATING CTA ---- */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 0.5rem 1rem 0.75rem;
    gap: 0.5rem;
}

.mobile-cta__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    text-decoration: none;
    padding: 0.6rem 0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
}

.mobile-cta__btn--call {
    background: var(--blue);
    color: var(--white);
}

.mobile-cta__btn--sms {
    background: #25d366;
    color: var(--white);
}

.mobile-cta__btn--quote {
    background: var(--gold);
    color: var(--dark);
}

.mobile-cta__btn i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: flex;
    }

    body {
        padding-bottom: 80px;
    }
}