/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: url('images/background.jpg') center top / cover no-repeat fixed;
    position: relative;
}

/* Continuous white overlay across entire page */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.72);
    z-index: 0;
    pointer-events: none;
}

/* All direct children of body must sit above the overlay */
body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

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

/* ===== Blue Strip ===== */
.blue-strip {
    background: #0787CE;
    height: 28px;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 101;
}

/* ===== Header ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    position: sticky;
    top: 28px;
    z-index: 100;
    overflow: visible;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 102;
}

.logo-img {
    height: 110px;
    width: auto;
    margin-bottom: -22px;
}

.phone-btn {
    background: #1a7a5a;
    color: #fff;
    padding: 9px 20px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.3s;
    white-space: nowrap;
    border: 2px solid #1a7a5a;
}

.phone-btn:hover {
    background: #15634a;
    border-color: #15634a;
}

.phone-btn i {
    font-size: 12px;
}

/* ===== Hero Section ===== */
.hero {
    padding: 45px 0 50px;
}

.hero-inner {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

/* --- Hero Left (heading + form) --- */
.hero-left {
    flex: 1;
    max-width: 540px;
}

.hero-left h1 {
    font-family: 'DM Serif Text', serif;
    font-weight: 400;
    font-size: 32px;
    -webkit-text-stroke: 0.6px #14305a;
    color: #14305a;
    line-height: 1.2;
    margin-bottom: 8px;
}

.free-text {
    color: #14305a;
}

.hero-desc {
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.55;
    font-weight: 400;
}

.hero-desc-secondary {
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.55;
    font-weight: 400;
    font-style: italic;
}

/* --- Form Card (rectangular / taller) --- */
.form-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12);
    padding: 34px 28px 38px;
    max-width: 400px;
}

.form-card-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 26px;
}

.form-icon {
    background: #2a6496;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-card-header-text h2 {
    font-family: 'DM Serif Text', serif;
    font-weight: 400;
    font-size: 23px;
    -webkit-text-stroke: 0.5px #14305a;
    color: #14305a;
    line-height: 1.3;
}

.form-card-header-text p {
    font-size: 12.5px;
    color: #555;
    margin-top: 5px;
    line-height: 1.5;
    font-weight: 400;
}

.form-card form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-card input {
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
    width: 100%;
}

.form-card input::placeholder {
    color: #999;
    font-weight: 400;
    font-size: 14px;
}

.form-card input:focus {
    outline: none;
    border-color: #2a6496;
    box-shadow: 0 0 0 2px rgba(42, 100, 150, 0.12);
}

.submit-btn {
    background: #e87722;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 6px;
}

.submit-btn:hover {
    background: #d06818;
}

/* --- Hero Right (Sheryl + contact) --- */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 20px;
}

.sheryl-wrapper {
    position: relative;
    display: inline-block;
}

.sheryl-img {
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 90px rgba(255, 255, 255, 0.8));
}

.contact-info {
    text-align: center;
    margin-top: 5px;
}

.contact-phone {
    font-weight: 700;
    color: #14305a;
    font-size: 14px;
    margin-bottom: 3px;
}

.phone-number {
    font-size: 22px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: #14305a;
    text-decoration: none;
}

.contact-licensed {
    font-size: 12px;
    color: #444;
    margin-top: 10px;
    line-height: 1.5;
    font-weight: 500;
}

.contact-phone i {
    color: #2a7a3a;
    margin-right: 3px;
    font-size: 13px;
}

.contact-address {
    font-size: 13.5px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-links a {
    color: #2a6496;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s;
}

.contact-links a:hover {
    color: #e87722;
}

.contact-links .sep {
    color: #bbb;
    margin: 0 5px;
    font-weight: 400;
    font-size: 14px;
}

/* ===== Shared Section Styles ===== */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #14305a;
    text-align: center;
    margin-bottom: 10px;
}

.left-title {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: #555;
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto 35px;
    font-weight: 400;
    line-height: 1.6;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: #2a6496;
    margin: 0 auto 35px;
    border-radius: 2px;
}

/* ===== Reviews Section (2-column) ===== */
.reviews-section {
    padding: 50px 0 55px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 960px;
    margin: 0 auto;
}

.reviews-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.review-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 20px 22px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    flex: 1;
}

.review-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.reviewer-name-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.reviewer-name {
    font-weight: 700;
    color: #14305a;
    font-size: 14px;
}

.verified-badge {
    color: #1a73e8;
    font-size: 12px;
}

.local-guide {
    font-size: 11px;
    color: #70757a;
    font-weight: 400;
}

.local-guide i {
    color: #e87722;
    font-size: 9px;
    margin-right: 2px;
}

.stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
}

.review-text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== Services Section ===== */
.services-section {
    padding: 55px 0 60px;
}

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

.service-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(232, 237, 242, 0.7);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(234, 243, 251, 0.9);
    color: #2a6496;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 15px;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #14305a;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.55;
    font-weight: 400;
}

/* ===== Why Choose Us Section ===== */
.why-section {
    padding: 55px 0 60px;
}

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

.why-card {
    text-align: center;
    padding: 30px 22px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(232, 245, 233, 0.9);
    color: #2a7a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 15px;
}

.why-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #14305a;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.55;
    font-weight: 400;
}

/* ===== About Section ===== */
.about-section {
    padding: 55px 0 60px;
}

.about-inner {
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.about-image {
    flex-shrink: 0;
    width: 240px;
}

.about-image img {
    width: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.about-text {
    flex: 1;
}

.about-text .section-title {
    margin-bottom: 18px;
}

.about-text p {
    font-size: 13.5px;
    color: #444;
    line-height: 1.65;
    margin-bottom: 14px;
    font-weight: 400;
}

.about-contact {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-contact p {
    font-size: 13px;
    color: #14305a;
    margin-bottom: 0;
    font-weight: 500;
}

.about-contact i {
    color: #2a7a3a;
    width: 20px;
    text-align: center;
    margin-right: 6px;
}

.about-contact a {
    color: #2a6496;
    font-weight: 600;
}

.about-contact a:hover {
    color: #e87722;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 50px 0;
    background: rgba(20, 48, 90, 0.92);
    text-align: center;
}

.cta-inner h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 400;
}

.cta-btn {
    display: inline-block;
    background: #e87722;
    color: #fff;
    padding: 14px 36px;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #d06818;
}

/* ===== Footer ===== */
.footer {
    background: rgba(14, 34, 64, 0.95);
    color: rgba(255, 255, 255, 0.75);
    padding: 35px 0 28px;
    text-align: center;
    font-size: 12.5px;
    line-height: 1.7;
    font-weight: 400;
}

.footer-logo {
    height: 50px;
    margin-bottom: 12px;
    opacity: 0.85;
}

.footer a {
    color: #90caf9;
    transition: color 0.2s;
}

.footer a:hover {
    color: #fff;
}

.footer p + p {
    margin-top: 3px;
}

.footer-licensed {
    font-size: 10.5px;
    opacity: 0.65;
    margin-top: 4px;
}

.footer .copyright {
    margin-top: 14px;
    opacity: 0.6;
    font-size: 11.5px;
}

/* ===== Responsive ===== */

/* Mobile: iOS doesn't support background-attachment: fixed */
@supports (-webkit-touch-callout: none) {
    body {
        background-attachment: scroll;
        background-size: cover;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        align-items: center;
    }

    .hero-left {
        max-width: 100%;
        order: 2;
    }

    .hero-right {
        order: 1;
        padding-top: 0;
    }

    .sheryl-img {
        max-width: 220px;
    }

    .hero-left h1 {
        font-size: 26px;
        text-align: center;
    }

    .hero-desc {
        text-align: center;
    }

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

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

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

    .about-inner {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .about-image {
        width: 180px;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-contact {
        align-items: center;
    }
}

@media (max-width: 600px) {
    body {
        background-attachment: scroll;
    }

    .logo-img {
        height: 60px;
    }

    .phone-btn {
        padding: 7px 12px;
        font-size: 11px;
    }

    .hero {
        padding: 25px 0 35px;
    }

    .hero-left h1 {
        font-size: 22px;
    }

    .form-card {
        padding: 16px 14px 20px;
    }

    .form-card-header-text h2 {
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

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

    .sheryl-img {
        max-width: 180px;
    }

    .footer {
        font-size: 11.5px;
        padding: 25px 10px 20px;
    }

    .cta-inner h2 {
        font-size: 20px;
    }
}
