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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    color: #374151;
    line-height: 1.7;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #0D1F2D;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: #0B7A75;
    color: #fff;
    border-color: #0B7A75;
}
.btn-primary:hover {
    background: #096560;
    border-color: #096560;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(11,122,117,0.3);
}

.btn-ghost {
    background: transparent;
    color: #0D1F2D;
    border-color: #0D1F2D;
}
.btn-ghost:hover {
    background: #0D1F2D;
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: #0B7A75;
    border-color: #fff;
}
.btn-white:hover {
    background: #E8F5F4;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn-gold-outline {
    background: transparent;
    color: #C9A84C;
    border-color: #C9A84C;
}
.btn-gold-outline:hover {
    background: #C9A84C;
    color: #0D1F2D;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ========== SECTION LABELS ========== */
.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0B7A75;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-sub {
    color: #6B7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== FADE-IN ANIMATION ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== TOP BAR ========== */
.top-bar {
    background: #0D1F2D;
    color: #fff;
    font-size: 0.82rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.top-bar a {
    color: #fff;
}
.top-bar a:hover {
    color: #C9A84C;
}

.top-bar-divider {
    opacity: 0.4;
}

/* ========== HEADER ========== */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0D1F2D;
}

.logo-tagline {
    font-size: 0.72rem;
    color: #0B7A75;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: #374151;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0B7A75;
    transition: width 0.3s;
}

.nav-link:hover {
    color: #0B7A75;
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    padding: 10px 22px;
    font-size: 0.88rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #0B7A75;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    background: #fff;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-sub {
    font-size: 1.15rem;
    color: #6B7280;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0D1F2D;
}

.trust-row span {
    color: #0B7A75;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.hero-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0B7A75;
    border-radius: 16px;
    top: 0;
    left: 0;
}

.hero-stats-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 12px;
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #C9A84C;
    line-height: 1;
}

.stat-label {
    font-size: 0.88rem;
    color: #6B7280;
    margin-top: 4px;
    font-weight: 500;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: #0D1F2D;
    padding: 40px 0;
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 4px rgba(201,168,76,0.4));
}

/* ========== SERVICES ========== */
.services {
    padding: 100px 0;
    background: #fff;
}

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

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 36px 32px;
    border-top: 3px solid #0B7A75;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: #E8F5F4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card > p {
    color: #6B7280;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.service-features {
    margin-bottom: 18px;
}

.service-features li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: #374151;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0B7A75;
    font-weight: 700;
}

.service-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: #0B7A75;
}

.service-link:hover {
    color: #096560;
}

/* ========== WHY CHOOSE US ========== */
.why-us {
    padding: 100px 0;
    background: #F8FAFB;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.why-us-card {
    background: #0B7A75;
    color: #fff;
    border-radius: 12px;
    padding: 48px 40px;
}

.why-us-card h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 16px;
}

.why-us-card p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 24px;
}

.why-us-stat {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #C9A84C;
}

.why-us-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #FDF8EC;
    color: #C9A84C;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.benefit-row strong {
    display: block;
    font-size: 1.05rem;
    color: #0D1F2D;
    margin-bottom: 4px;
}

.benefit-row p {
    font-size: 0.92rem;
    color: #6B7280;
    line-height: 1.6;
}

/* ========== PROCESS ========== */
.process {
    padding: 100px 0;
    background: #fff;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 260px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: #E8F5F4;
    color: #0B7A75;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.6;
}

.process-connector {
    width: 60px;
    min-width: 40px;
    border-top: 2px dashed #0B7A75;
    margin-top: 72px;
    flex-shrink: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 100px 0;
    background: #F8FAFB;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 4px solid #0B7A75;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.stars {
    margin-bottom: 14px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.quote {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    flex-direction: column;
}

.reviewer strong {
    color: #0D1F2D;
    font-size: 0.95rem;
}

.reviewer span {
    color: #6B7280;
    font-size: 0.82rem;
}

/* ========== SERVICE AREAS ========== */
.service-areas {
    padding: 100px 0;
    background: #fff;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.area-item {
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
}

.area-pin {
    color: #0B7A75;
    margin-right: 6px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: #0B7A75;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.04) 25%, transparent 25%),
        linear-gradient(225deg, rgba(255,255,255,0.04) 25%, transparent 25%),
        linear-gradient(45deg, rgba(255,255,255,0.04) 25%, transparent 25%),
        linear-gradient(315deg, rgba(255,255,255,0.04) 25%, transparent 25%);
    background-size: 80px 80px;
    background-position: 0 0, 0 40px, 40px -40px, -40px 0;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== LEAD FORM ========== */
.lead-form {
    padding: 100px 0;
    background: #F8FAFB;
}

.lead-form-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.lead-form-info h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.lead-form-info > p {
    color: #6B7280;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.form-checklist {
    margin-bottom: 32px;
}

.form-checklist li {
    padding: 6px 0;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gold-check {
    color: #C9A84C;
    font-weight: 700;
    font-size: 1.1rem;
}

.form-contact {
    border-top: 1px solid #E5E7EB;
    padding-top: 24px;
}

.form-contact p {
    padding: 4px 0;
    font-size: 0.95rem;
}

.form-contact a {
    color: #0B7A75;
    font-weight: 500;
}

.form-contact a:hover {
    color: #096560;
}

.lead-form-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 36px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0D1F2D;
    margin-bottom: 6px;
}

.optional {
    font-weight: 400;
    color: #6B7280;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #374151;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0B7A75;
    box-shadow: 0 0 0 3px rgba(11,122,117,0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #EF4444;
}

.form-group textarea {
    resize: vertical;
}

.form-privacy {
    text-align: center;
    font-size: 0.82rem;
    color: #6B7280;
    margin-top: 14px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success .success-icon {
    width: 64px;
    height: 64px;
    background: #E8F5F4;
    color: #0B7A75;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-success p {
    color: #6B7280;
}

/* ========== FOOTER ========== */
.footer {
    background: #0D1F2D;
    padding: 60px 0 0;
    color: #D1D5DB;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: #0B7A75;
    display: block;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #9CA3AF;
}

.footer-col h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
    color: #9CA3AF;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #C9A84C;
}

.footer-col p {
    font-size: 0.9rem;
    padding: 3px 0;
    color: #9CA3AF;
}

.footer-col p a {
    display: inline;
    color: #9CA3AF;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #6B7280;
}

/* ========== MOBILE BOTTOM BAR ========== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.1);
    padding: 10px 16px;
    gap: 10px;
}

.mobile-bar-phone {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0D1F2D;
    padding: 10px;
    border: 2px solid #0D1F2D;
    border-radius: 6px;
}

.mobile-bar-cta {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    background: #0B7A75;
    padding: 10px;
    border-radius: 6px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-visual {
        min-height: 300px;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .lead-form-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 0.75rem;
    }

    .top-bar-divider {
        display: none;
    }

    .top-bar-inner {
        gap: 6px;
        flex-direction: column;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #F3F4F6;
        width: 100%;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-inner {
        position: relative;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-row {
        flex-direction: column;
        gap: 8px;
    }

    .hero-visual {
        min-height: 260px;
        max-width: 320px;
    }

    .trust-bar-inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .process-connector {
        width: 2px;
        height: 30px;
        border-top: none;
        border-left: 2px dashed #0B7A75;
        margin-top: 0;
    }

    .process-step {
        max-width: 100%;
    }

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

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

    .cta-banner h2 {
        font-size: 1.8rem;
    }

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

    .lead-form-card {
        padding: 28px 22px;
    }

    .mobile-bottom-bar {
        display: flex;
    }

    .footer {
        padding-bottom: 70px;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .services,
    .why-us,
    .process,
    .testimonials,
    .service-areas,
    .lead-form {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }

    .hero-visual {
        min-height: 220px;
        max-width: 280px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

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