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

html {
    scroll-behavior: smooth;
}

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

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

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

.eyebrow {
    color: #f97316;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.button {
    display: inline-block;
    padding: 15px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.2s ease;
}

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

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

.secondary-button {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.secondary-button:hover {
    background: #ffffff;
    color: #0d3965;
}

.white-button {
    background: #ffffff;
    color: #0d3965;
}

.white-button:hover {
    transform: translateY(-2px);
}

.outline-dark-button {
    border: 2px solid #0d3965;
    color: #0d3965;
}

.outline-dark-button:hover {
    background: #0d3965;
    color: #ffffff;
}

.full-button {
    width: 100%;
    text-align: center;
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.header-container {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 220px;
    max-height: 88px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

.main-nav a {
    color: #334155;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #f97316;
}

.header-call {
    background: #0d3965;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: 0.2s ease;
}

.header-call:hover {
    background: #f97316;
    transform: translateY(-2px);
}


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

.hero {
    min-height: 82vh;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(6, 27, 48, 0.96) 0%,
            rgba(6, 27, 48, 0.82) 43%,
            rgba(6, 27, 48, 0.28) 100%
        ),
        url("images/flores-house-exterior.jpg");

    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.hero-content {
    padding: 105px 0;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 0.98;
    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
    color: #f97316;
}

.hero-text {
    max-width: 650px;
    color: #e2e8f0;
    font-size: 1.15rem;
    margin-bottom: 25px;
}

.hero-checks {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 10px 34px;
    margin-bottom: 31px;
    font-weight: 700;
}

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


/* =========================
   TRUST BAR
========================= */

.trust-bar {
    background: #0d3965;
    color: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
    padding: 25px 15px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-grid > div:last-child {
    border-right: none;
}

.trust-grid strong {
    display: block;
    font-size: 1.03rem;
}

.trust-grid span {
    color: #cbd5e1;
    font-size: 0.85rem;
}


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

.section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading h2,
.service-areas-copy h2 {
    color: #0d3965;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: 1.1;
    margin-bottom: 14px;
}

.section-heading > p:last-child,
.service-areas-copy > p:last-child {
    color: #64748b;
    font-size: 1.05rem;
}

.service-areas-copy {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}


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

.services {
    padding: 85px 0;
    background: #f8fafc;
}

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

.service-card {
    background: #ffffff;
    padding: 34px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(13, 57, 101, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #fed7aa;
    box-shadow: 0 18px 38px rgba(13, 57, 101, 0.11);
}

.service-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 12px;
    background: #fff4eb;
    color: #f97316;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    color: #0d3965;
    margin-bottom: 9px;
    font-size: 1.2rem;
}

.service-card p {
    color: #64748b;
}


/* =========================
   ABOUT / QUALITY
========================= */

.quality-section {
    padding: 90px 0;
    background: #ffffff;
}

.quality-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.quality-image {
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(13, 57, 101, 0.12);
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-copy h2 {
    color: #0d3965;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 20px;
}

.quality-copy > p {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 1.07rem;
}

.quality-list {
    list-style: none;
    display: grid;
    gap: 11px;
    margin-bottom: 29px;
}

.quality-list li {
    color: #0d3965;
    font-weight: 700;
}

.quality-list li::before {
    content: "✓";
    color: #f97316;
    margin-right: 10px;
}


/* =========================
   SERVICE LIST
========================= */

.all-services {
    padding: 85px 0;
    background: #f8fafc;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.service-list-grid div {
    background: #ffffff;
    padding: 19px 20px;
    border-left: 4px solid #f97316;
    color: #0d3965;
    font-size: 0.98rem;
    font-weight: 700;
}


/* =========================
   CTA STRIP
========================= */

.feature-strip {
    padding: 62px 0;
    background: linear-gradient(90deg, #0d3965, #1463a5);
    color: #ffffff;
}

.feature-strip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.light-eyebrow {
    color: #fbbf24;
}

.feature-strip h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    margin-bottom: 10px;
}

.feature-strip p {
    color: #dbeafe;
}


/* =========================
   PORTFOLIO
========================= */

.work {
    padding: 90px 0;
    background: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 310px;
    gap: 18px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #e2e8f0;
}

.portfolio-wide {
    grid-column: span 2;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.portfolio-card:hover img {
    transform: scale(1.035);
}

.project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 22px;

    background:
        linear-gradient(
            transparent 45%,
            rgba(6, 22, 40, 0.88)
        );
}

.project-overlay span {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
}


/* =========================
   BEFORE & AFTER
========================= */

.before-after {
    padding: 90px 0;
    background: #f1f5f9;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.before-after-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(13, 57, 101, 0.08);
}

.before-after-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.photo-label {
    position: absolute;
    z-index: 2;
    top: 17px;
    left: 17px;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 5px;
    font-weight: 800;
}

.before-label {
    background: #0d3965;
}

.after-label {
    background: #f97316;
}


/* =========================
   REVIEWS
========================= */

.reviews {
    padding: 90px 0;
    background: #ffffff;
}

.google-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 17px;
}

.google-rating strong {
    color: #0d3965;
    font-size: 1.4rem;
    font-weight: 900;
}

.google-rating span {
    color: #f59e0b;
    letter-spacing: 2px;
}

.google-rating small {
    color: #64748b;
    font-size: 0.9rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 31px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(13, 57, 101, 0.09);
}

.stars {
    color: #f59e0b;
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 17px;
}

.review-card blockquote {
    color: #334155;
    line-height: 1.75;
    margin-bottom: 20px;
    font-size: 1rem;
}

.review-name {
    color: #0d3965;
    font-weight: 900;
}

.review-source {
    color: #64748b;
    font-size: 0.85rem;
}


/* =========================
   SERVICE AREAS
========================= */

.service-areas {
    padding: 90px 0;
    background: #f8fafc;
}

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

.area-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    padding: 20px;
    color: #0d3965;
    font-weight: 800;
}

.area-card span {
    color: #f97316;
    margin-right: 9px;
}

.areas-note {
    margin-top: 23px;
    color: #64748b;
}


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

.contact {
    padding: 95px 0;
    background: #0d3965;
    color: #ffffff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 65px;
}

.contact-copy h2 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 20px;
}

.contact-copy > p {
    color: #dbeafe;
    max-width: 650px;
    margin-bottom: 28px;
}

.contact-points {
    display: grid;
    gap: 17px;
}

.contact-points strong {
    display: block;
    color: #f97316;
}

.contact-points a,
.contact-points span {
    color: #ffffff;
    text-decoration: none;
}

.contact-card {
    background: #ffffff;
    color: #1f2937;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.contact-card-title {
    color: #0d3965;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 7px;
}

.contact-card > p:nth-child(2) {
    color: #64748b;
    margin-bottom: 24px;
}

.contact-card .button + .button {
    margin-top: 11px;
}


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

.site-footer {
    background: #061b2f;
    color: #94a3b8;
    padding: 50px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-brand img {
    width: 180px;
    margin-bottom: 17px;
    background: #ffffff;
    border-radius: 6px;
}

.footer-brand p {
    max-width: 420px;
}

.site-footer h3 {
    color: #ffffff;
    margin-bottom: 13px;
}

.site-footer a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 8px;
}

.site-footer a:hover {
    color: #f97316;
}

.site-footer span {
    color: #cbd5e1;
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 21px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.84rem;
}


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

@media (max-width: 900px) {

    .header-container {
        flex-direction: column;
        padding: 12px 0;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-call {
        display: none;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /*
       IMPORTANT:
       The quality section deliberately stays two-column here.
       This preserves the desktop/tablet layout we already fixed.
    */

    .service-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-strip-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-wide {
        grid-column: span 2;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

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

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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


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

@media (max-width: 650px) {

    .container {
        width: min(94%, 1160px);
    }

    .header-container {
        min-height: auto;
    }

    .logo img {
        width: 175px;
    }

    .main-nav {
        gap: 10px 14px;
    }

    .main-nav a {
        font-size: 0.76rem;
    }

    .hero {
        min-height: auto;
        background-position: 58% center;
    }

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

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-checks {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
        text-align: center;
    }

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

    .trust-grid > div {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .trust-grid > div:last-child {
        border-bottom: none;
    }

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

    .service-card {
        padding: 28px;
    }

    /*
       The quality section stacks only on actual phone-size screens.
    */

    .quality-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .quality-image {
        height: 360px;
    }

    .quality-copy h2 {
        font-size: 2.35rem;
    }

    .service-list-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 190px;
        gap: 10px;
    }

    .portfolio-wide {
        grid-column: span 2;
        grid-row: span 2;
    }

    .portfolio-card img {
        object-fit: cover;
    }

    .project-overlay {
        padding: 12px;
    }

    .project-overlay span {
        font-size: 0.82rem;
    }

    .before-after-card img {
        height: 320px;
    }

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

    .contact-card {
        padding: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    /* LANGUAGE SWITCH */
.language-link {
    color: #f97316 !important;
    font-weight: 700;
    border-left: 1px solid #d9e0e7;
    padding-left: 18px !important;
    margin-left: 4px;
    transition: color 0.2s ease;
}

.language-link:hover {
    color: #0d3965 !important;
}

@media (max-width: 900px) {
    .language-link {
        border-left: none;
        margin-left: 0;
        padding-left: 0 !important;
    }
}/* HEADER POLISH */
.site-header {
    padding: 10px 0;
}

.header-container {
    gap: 28px;
}

.logo img {
    width: 250px;
    max-width: 100%;
}

.main-nav {
    gap: 18px;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.header-call {
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .logo img {
        width: 215px;
    }

    .main-nav {
        gap: 13px;
    }

    .main-nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .site-header {
        padding: 12px 0;
    }

    .logo img {
        width: 200px;
    }

    .main-nav {
        gap: 12px 16px;
    }
}/* DETAILED SERVICE LIST POLISH */
.service-list-grid {
    gap: 12px;
}

.service-list-grid > div {
    background: #ffffff;
    border: 1px solid #e7edf3;
    border-left: 4px solid #f97316;
    border-radius: 8px;
    padding: 15px 17px;
    font-weight: 600;
    color: #173d63;
    box-shadow: 0 3px 10px rgba(13, 57, 101, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-list-grid > div:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(13, 57, 101, 0.1);
}

@media (max-width: 650px) {
    .service-list-grid > div {
        padding: 14px 15px;
    }
}
}
