:root {
    --bg: #f5f6f7;
    --white: #ffffff;
    --text: #142033;
    --muted: #657084;
    --gold: #f2bc0b;
    --gold-dark: #cc9b00;
    --green: #22c55e;
    --navy: #07152c;
    --navy-2: #0b1c39;
    --border: #e6e8ec;
    --shadow: 0 10px 35px rgba(15, 23, 42, .08);
    --radius: 18px;
    --container: 1320px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto
}

.section {
    padding: 96px 0
}

.section-light {
    background: var(--bg)
}

.center {
    text-align: center
}

.eyebrow {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: 12px;
    font-weight: 700;
}

.section-heading h2 {
    margin: 18px 0 14px;
    font-size: 54px;
    line-height: 1.08;
}

.section-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 18px;
}

.text-gold {
    color: var(--gold)
}

.text-gold-dark {
    color: var(--gold-dark)
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
    background: rgba(7, 21, 44, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px;
}

.logo-box {
    background: url('../images/logo.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 250px;
    height: 100px;
}



.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    text-transform: uppercase;
}

.main-nav a {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
}

.main-nav a:hover {
    color: #fff
}

.menu-toggle,
.mobile-menu {
    display: none
}

.hero-section {
    position: relative;
    min-height: 760px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 16, 32, .84) 0%, rgba(8, 16, 32, .70) 27%, rgba(8, 16, 32, .30) 56%, rgba(8, 16, 32, .14) 100%),
        url('../images/hero-roof.jpg') center/cover no-repeat;
    filter: blur(2px);
    -webkit-background-filter: blur(2px);
}

.hero-top-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(to bottom, rgba(7, 21, 44, .55), rgba(7, 21, 44, 0));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    min-height: 760px;
    padding-top: 144px;
    padding-bottom: 80px;
}

.hero-copy {
    max-width: 640px;
    padding-top: 72px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 10px 16px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.badge-gold {
    background: #c89e10
}

.badge-green {
    background: #25b65e
}

.hero-copy h1 {
    margin: 0;
    font-size: 66px;
    line-height: 1.03;
    letter-spacing: -.03em;
    color: #fff;
    font-weight: 800;
}

.hero-text {
    max-width: 560px;
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .90);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 15px 24px;
    font-weight: 700;
    transition: .2s ease;
}

.btn:hover {
    transform: translateY(-1px)
}

.btn-small {
    padding: 12px 16px;
    font-size: 14px
}

.btn-full {
    width: 100%
}

.btn-gold {
    background: var(--gold);
    color: #162132
}

.btn-green {
    background: var(--green);
    color: #fff
}

.btn-light-outline {
    background: #fff;
    color: #0f172a;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .08);
}

.btn-dark-outline {
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 34px;
}

.stat-value {
    color: var(--gold);
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    margin-top: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.service-grid {
    margin-top: 62px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.service-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .28), transparent 50%);
}

.service-icon {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff4c4;
    color: var(--gold-dark);
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.service-body {
    padding: 24px
}

.service-body h3 {
    margin: 0;
    font-size: 29px;
    line-height: 1.15;
}

.service-body p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--gold-dark);
    font-size: 14px;
    font-weight: 700;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.about-copy h2 {
    margin: 18px 0 0;
    font-size: 56px;
    line-height: 1.08;
}

.about-copy p {
    margin: 22px 0 0;
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
}

.feature-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-card {
    display: flex;
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: #fff6d5;
    color: var(--gold-dark);
    font-weight: 800;
}

.feature-card h3 {
    margin: 0;
    font-size: 17px;
}

.feature-card p {
    margin: 6px 0 0;
    font-size: 14px;
    line-height: 1.6;
}

.about-media {
    position: relative
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
}

.experience-badge {
    position: absolute;
    left: 26px;
    bottom: -24px;
    background: var(--gold);
    color: #0f172a;
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .16);
}

.experience-number {
    font-size: 44px;
    line-height: 1;
    font-weight: 800;
}

.experience-label {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
}

.quote-banner {
    padding: 86px 0;
    background: linear-gradient(90deg, #091327 0%, #0b1934 45%, #091327 100%);
    color: #fff;
}

.quote-banner-inner {
    text-align: center;
    max-width: 980px;
}

.quote-banner h2 {
    margin: 0;
    font-size: 56px;
    line-height: 1.08;
}

.quote-banner p {
    margin: 20px auto 0;
    max-width: 760px;
    color: rgba(255, 255, 255, .74);
    font-size: 18px;
}

.quote-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.contact-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 30px;
}

.contact-form-card,
.info-card,
.hours-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form-card {
    padding: 30px;
}

.contact-form-card h3 {
    margin: 0;
    font-size: 34px;
}

.contact-form {
    margin-top: 26px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    margin-bottom: 18px
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: #364152;
    font-size: 14px;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #dfe4ea;
    border-radius: 10px;
    padding: 14px 15px;
    font: inherit;
    color: #0f172a;
    background: #fff;
    outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold-dark);
}

.error-text {
    display: block;
    margin-top: 6px;
    color: #c0392b;
    font-size: 12px;
}

.alert {
    margin-top: 20px;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
}

.alert-success {
    background: #eaf9ef;
    color: #157347;
    border: 1px solid #cdeed8
}

.alert-error {
    background: #fff1f0;
    color: #b42318;
    border: 1px solid #f5c2c0
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-card {
    display: flex;
    gap: 16px;
    padding: 22px;
}

.info-card-green {
    background: #ebfaf0;
    border-color: #d1f0da;
}

.info-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #fff6d5;
    font-size: 21px;
    flex-shrink: 0;
}

.info-card-green .info-icon {
    background: var(--green);
    color: #fff;
}

.info-label {
    color: #667085;
    font-size: 14px;
    font-weight: 700;
}

.info-value {
    margin-top: 4px;
    color: #111827;
    font-size: 17px;
    line-height: 1.65;
}

.mini-whatsapp-btn {
    display: inline-flex;
    margin-top: 12px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 14px;
}

.hours-card {
    padding: 24px;
    background: #091a37;
    border-color: #091a37;
    color: #fff;
}

.hours-card h3 {
    margin: 0 0 18px;
    font-size: 28px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
}

.site-footer {
    background: #07162f;
    color: #fff;
    padding: 64px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr .8fr .9fr 1fr;
    gap: 36px;
}

.footer-text {
    max-width: 340px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.8;
}

.footer-pill {
    display: inline-flex;
    margin-top: 16px;
    border-radius: 999px;
    background: #25b65e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 14px;
}

.footer-col h3 {
    margin: 0;
    font-size: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.footer-links a,
.footer-contact-item {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.footer-contact-item.whatsapp {
    color: #22c55e
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    padding: 14px 18px;
    font-weight: 800;
    box-shadow: 0 18px 45px rgba(37, 211, 102, .34);
}

@media (max-width: 1100px) {

    .service-grid,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 840px) {
    .container {
        width: min(var(--container), calc(100% - 28px))
    }

    .main-nav,
    .site-header .btn-small {
        display: none
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, .18);
        background: rgba(255, 255, 255, .08);
        color: #fff;
        font-size: 20px;
        cursor: pointer;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        gap: 14px;
        padding: 0 14px 18px;
    }

    .mobile-menu.open {
        display: flex
    }

    .mobile-menu a {
        color: #fff;
        background: rgba(7, 21, 44, .92);
        border-radius: 12px;
        padding: 14px 16px;
    }

    .hero-copy {
        max-width: 100%;
        padding-top: 48px;
    }

    .hero-copy h1 {
        font-size: 42px
    }

    .section-heading h2,
    .about-copy h2,
    .quote-banner h2 {
        font-size: 36px
    }

    .hero-text,
    .section-heading p,
    .about-copy p,
    .quote-banner p {
        font-size: 16px
    }

    .form-row,
    .feature-grid {
        grid-template-columns: 1fr
    }

    .hero-stats {
        gap: 24px
    }

    .stat-value {
        font-size: 34px
    }

    .about-image {
        height: 360px
    }

    .experience-badge {
        position: static;
        display: inline-block;
        margin-top: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.service-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, .55);
}

.modal-overlay.open {
    display: flex;
}

.service-modal {
    position: relative;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow: auto;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
    padding: 22px 22px 20px;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: none;
    color: #666;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 28px;
    margin-bottom: 18px;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    color: #111827;
}

.modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}

.modal-image {
    width: 100%;
    height: 245px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 20px;
}

.modal-description {
    margin: 0 0 22px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
}

.modal-includes-title {
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.modal-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-feature-list li {
    position: relative;
    padding-left: 28px;
    color: #5b6472;
    font-size: 16px;
    line-height: 1.5;
}

.modal-feature-list li::before {
    content: "◉";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-dark);
    font-size: 18px;
    line-height: 1.2;
}

.modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    border-radius: 10px;
    background: var(--gold);
    color: #111827;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    margin-right: 8px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .modal-overlay {
        padding: 14px;
        align-items: flex-start;
        overflow: auto;
    }

    .service-modal {
        max-width: 100%;
        margin-top: 18px;
        padding: 18px;
    }

    .modal-header h3 {
        font-size: 22px;
    }

    .modal-image {
        height: 200px;
    }

    .modal-description,
    .modal-feature-list li {
        font-size: 15px;
    }
}