﻿/* Styles extracted from index.html */
:root {
    --yellow: #f9d400;
    --navy: #002a4a;
    --red: #d62828;
    --grey: #e5e5e5;
    --white: #ffffff;
    --dark: #111111;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f4f4f4;
    color: #222;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: var(--navy);
    color: var(--white);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

    .logo span {
        color: var(--yellow);
    }

nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

nav a {
    color: var(--white);
    font-weight: 600;
}

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

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--yellow);
    color: var(--navy);
}

    .btn-primary:hover {
        background: #ffd900;
    }

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--yellow);
}

    .btn-secondary:hover {
        background: var(--yellow);
        color: var(--navy);
    }

.hero {
    background: linear-gradient(135deg, var(--navy) 60%, var(--red));
    color: var(--white);
    padding: 60px 24px 50px;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 18px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 24px;
}

.badge {
    background: rgba(0,0,0,0.25);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.hero-note {
    font-size: 0.85rem;
    opacity: 0.9;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

    .hero-right img {
        width: 100%;
        max-width: 480px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .hero-right h3 {
        text-transform: uppercase;
        font-size: 1rem;
        margin-bottom: 10px;
        font-weight: 800;
        color: var(--navy);
    }

    .hero-right p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

.hero-right-list {
    list-style: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

    .hero-right-list li::before {
        content: "✔ ";
        color: var(--red);
        font-weight: 700;
    }

.section {
    padding: 50px 24px;
    background: #f4f4f4;
}

    .section.alt {
        background: var(--white);
    }

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--navy);
}

.section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
    color: #444;
}

.three-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}

.image-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
    margin-top: 18px;
}

.img-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    display: block;
}

.card {
    background: var(--white);
    border-radius: 6px;
    padding: 18px;
    border: 1px solid #ddd;
}

    .card h3 {
        font-size: 1rem;
        text-transform: uppercase;
        margin-bottom: 8px;
        color: var(--navy);
    }

    .card span.price {
        display: inline-block;
        font-weight: 700;
        color: var(--red);
        margin-bottom: 6px;
        font-size: 0.9rem;
    }

    .card p {
        font-size: 0.9rem;
        color: #444;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}

.why-item {
    background: var(--navy);
    color: var(--white);
    border-radius: 6px;
    padding: 16px;
    font-size: 0.9rem;
}

    .why-item h4 {
        text-transform: uppercase;
        font-size: 0.85rem;
        margin-bottom: 6px;
        color: var(--yellow);
    }

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

.review {
    background: var(--white);
    border-radius: 6px;
    padding: 16px;
    border-left: 4px solid var(--yellow);
    font-size: 0.9rem;
}

    .review strong {
        display: block;
        margin-top: 8px;
        font-size: 0.85rem;
        color: #555;
    }

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

form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

form input, form select, form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
}

form textarea {
    min-height: 90px;
    resize: vertical;
}

.form-actions {
    margin-top: 16px;
}

.map-box {
    background: var(--navy);
    color: var(--white);
    border-radius: 6px;
    padding: 18px;
    font-size: 0.9rem;
}

    .map-box ul {
        list-style: none;
        margin-top: 8px;
    }

    .map-box li::before {
        content: "• ";
        color: var(--yellow);
    }

    .map-box .map-image {
        display: block;
        /* make map 50% larger */
        width: 84.375%;
        max-width: 354px;
        margin: 12px auto 0 auto;
        border-radius: 6px;
        box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    }

    @media (max-width: 600px) {
        .map-box .map-image {
            width: 100%;
            max-width: 100%;
        }
    }

.service-icon {
    width: 60px;
    height: 60px;
    vertical-align: middle;
    margin-right: 18px;
}

.card .card-cta {
    margin-top: 12px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    background: #1D4E89;
    color: #ffffff;
    border-radius: 6px;
    padding: 10px 18px;
}

    .card .card-cta:hover {
        filter: brightness(0.95);
    }

#contactForm .form-actions .btn-primary {
    background: #1D4E89;
    color: #ffffff;
}

    #contactForm .form-actions .btn-primary:hover {
        filter: brightness(0.95);
    }

.two-cols {
    display: grid;
    grid-template-columns: minmax(0,1.5fr) minmax(0,1fr);
    gap: 24px;
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 18px;
    align-items: start;
}

.about-img {
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    display: block;
    justify-self: end;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-top: 10px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background: var(--navy);
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.8rem;
}

footer {
    background: var(--navy);
    color: var(--white);
    padding: 20px 24px;
    font-size: 0.85rem;
    margin-top: 40px;
}

    footer .footer-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 12px;
    }

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

    .three-cols, .why-grid, .reviews, .form-grid, .two-cols {
        grid-template-columns: 1fr;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    nav ul {
        flex-wrap: wrap;
    }

    .about-top {
        grid-template-columns: 1fr;
    }

    .about-img {
        justify-self: center;
        max-width: 480px;
    }
}

.sticky-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #e63946;
    color: #fff;
    text-align: center;
    padding: 16px 0;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.25);
}

    .sticky-call-btn .call-icon {
        margin-right: 8px;
    }

@media (max-width: 768px) {
    .sticky-call-btn {
        display: block;
    }
}

.header-phone-link {
    color: #e63946;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .header-phone-link:hover {
        text-decoration: underline;
    }

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-primary {
    background: #e63946;
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.btn-call {
    background: #2a9d8f;
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 600px) {
    .hero-cta {
        flex-direction: column;
    }
}

.mobile-book-btn {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    background: #1d3557;
    color: #fff;
    text-align: center;
    padding: 16px 0;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    z-index: 9998;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    .mobile-book-btn {
        display: block;
    }
}

.divider {
    border: 0;
    height: 3px;
    background: rgba(0,0,0,0.18);
    margin: -50px 0 18px;
    grid-column: 1 / -1;
}

.sub-divider {
    border: 0;
    height: 1px;
    background: var(--grey);
    margin: 12px 0;
    grid-column: 1 / -1;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.trust-icon {
    color: #2e8b57;
    font-size: 1.2rem;
    font-weight: bold;
}
