@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #14243b;
    --orange: #ff6324;
    --sky: #e8f4ff;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: white;
}

.container {
    width: min(1160px, 90%);
    margin: auto;
}

/* NAVIGATION */

.site-header {
    position: relative;
    z-index: 10;
    background: #e8f4ff;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.15;
}

.logo-icon {
    color: var(--orange);
    font-size: 35px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

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

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 25px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.2s;
}

.btn-orange {
    background: var(--orange);
    color: white;
}

.btn-orange:hover {
    background: #e74c12;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--navy);
    color: var(--navy);
    background: rgba(255,255,255,0.8);
}

/* HERO */

.hero {
    min-height: 660px;
    display: flex;
    align-items: center;
    background: linear-gradient(
        110deg,
        #e8f4ff 0%,
        #e8f4ff 55%,
        #ffffff 100%
    );
}

.hero-content {
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 720px;
    padding: 70px 0 100px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.08;
    letter-spacing: -2.5px;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--orange);
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 45px;
    font-size: 13px;
    font-weight: 700;
}

/* SERVICES */

.services {
    padding: 100px 0;
    text-align: center;
    background: #f5faff;
}

.services h2,
.about h2,
.contact h2 {
    font-size: clamp(30px, 4vw, 42px);
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: #5b6575;
    line-height: 1.6;
}

/* ABOUT */

.about {
    padding: 100px 0;
    text-align: center;
}

/* CONTACT */

.contact {
    padding: 100px 0;
    background: var(--navy);
    color: white;
    text-align: center;
}

.contact p {
    margin-bottom: 30px;
}

/* FOOTER */

.footer {
    padding: 45px 0;
    background: #f5faff;
}

.footer p {
    margin: 12px 0;
}

.footer a {
    color: var(--orange);
}

/* MOBILE */

@media (max-width: 768px) {

    .nav {
        min-height: 75px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        font-size: 11px;
        padding: 12px;
    }

    .logo {
        font-size: 12px;
    }

    .hero {
        min-height: auto;
    }

    .hero-text {
        padding: 75px 0;
    }

    .hero h1 {
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-features {
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

}

/* LOS ANGELES HERO IMAGE */

.hero {
    min-height: 720px;
    background-image:
        linear-gradient(
            90deg,
            #e8f4ff 0%,
            rgba(232, 244, 255, 0.98) 25%,
            rgba(232, 244, 255, 0.75) 45%,
            rgba(232, 244, 255, 0) 75%
        ),
        url("../images/hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero {
        min-height: 650px;
        background-position: 65% center;
    }
}

/* SERVICE CARDS WITH PHOTOGRAPHS */

.service-card {
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    background: white;
    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(20, 36, 59, 0.12);
}

.service-card img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.service-info {
    padding: 24px;
}

.service-info h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.service-info p {
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .service-card img {
        height: 230px;
    }
}

/* =====================================
   ESTIMATE FORM
===================================== */

.contact {
    padding: 100px 20px;
    background: #19283e;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: clamp(30px, 4vw, 42px);
    margin-bottom: 16px;
}

.contact > .container > p {
    color: #cbd5e1;
    margin-bottom: 35px;
}

.estimate-form {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 17px 18px;
    border: 1px solid #dce3eb;
    border-radius: 10px;
    background: white;
    color: #19283e;
    font-family: inherit;
    font-size: 15px;
    outline: none;
}

.estimate-form textarea {
    resize: vertical;
    min-height: 130px;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
    border-color: #ff6324;
    box-shadow: 0 0 0 3px rgba(255, 99, 36, 0.2);
}

.estimate-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 19px;
    font-size: 16px;
    margin-top: 5px;
}

/* MOBILE */

@media (max-width: 600px) {
    .contact {
        padding: 70px 0;
    }

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

    .estimate-form {
        gap: 14px;
    }

    .estimate-form input,
    .estimate-form select,
    .estimate-form textarea {
        font-size: 16px;
    }
}

.estimate-form select {
    height: 52px;
    padding: 0 18px;
    border-radius: 10px;
    font-size: 15px;
    appearance: auto;
}

/* THANK YOU PAGE */

.thank-you-section {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f4ff;
    text-align: center;
    padding: 80px 20px;
}

.thank-you-content {
    max-width: 650px;
}

.success-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #22c55e;
    color: white;
    font-size: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.thank-you-content h1 {
    font-size: clamp(36px, 5vw, 52px);
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* THUMBTACK REVIEWS */

.reviews-section {
    padding: 100px 20px;
    background: #eff7ff;
    text-align: center;
}

.reviews-content {
    max-width: 760px;
    margin: 0 auto;
}

.reviews-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ff6324;
    margin-bottom: 20px;
}

.reviews-content h2 {
    font-size: clamp(32px, 4vw, 46px);
    color: #19283e;
    margin-bottom: 20px;
}

.reviews-content p {
    color: #526174;
    font-size: 17px;
    line-height: 1.7;
}

.reviews-stars {
    color: #f5a400;
    font-size: 42px;
    letter-spacing: 4px;
    margin-top: 30px;
}

.reviews-count {
    margin: 10px 0 30px;
}

.reviews-button {
    display: inline-block;
    background: #ff6324;
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.2s ease;
}

.reviews-button:hover {
    background: #e95417;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .reviews-section {
        padding: 70px 20px;
    }

    .reviews-button {
        width: 100%;
        max-width: 350px;
    }
}