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

:root {
    --navy: #1B2A4A;
    --navy-light: #2a3d66;
    --teal: #5B8A8A;
    --teal-light: #7AACAC;
    --slate: #4A5568;
    --light-bg: #F7F9FC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --text: #2D3748;
    --text-light: #718096;
    --accent: #D4A853;
    --success: #48BB78;
    --shadow: 0 4px 24px rgba(27, 42, 74, 0.08);
    --shadow-lg: 0 12px 48px rgba(27, 42, 74, 0.12);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── NAVIGATION ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 108px;
}
.nav-logo img { height: 100px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--navy);
    background: var(--light-bg);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 2px;
    background: var(--teal);
    border-radius: 2px;
}
.nav-links a.nav-cta {
    background: var(--navy);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.25s ease;
}
.nav-links a.nav-cta:hover { background: var(--navy-light); color: var(--white); transform: translateY(-1px); }

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
    -webkit-appearance: none;
    appearance: none;
}
.hamburger:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 4px;
    border-radius: 4px;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 108px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-links a { width: 100%; padding: 0.85rem 1rem; }
}

/* ── HERO ── */
.hero {
    padding: 9rem 2rem 4.5rem;
    background: linear-gradient(165deg, var(--navy) 0%, #1e3461 50%, var(--teal) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(90, 138, 138, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}
.hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 700px;
    font-weight: 700;
}
.hero h1 span { color: var(--teal-light); }
.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--white);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 2rem;
}
.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.trust-item .trust-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.trust-item .trust-label {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 0.35rem;
    font-weight: 500;
}
@media (max-width: 640px) {
    .trust-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ── SECTIONS ── */
.section {
    padding: 3.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-header .overline {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 1rem;
}
.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ── SERVICES CARDS ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--teal));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.service-icon.umpire { background: #EBF5FF; color: var(--navy); }
.service-icon.appraisal { background: #E6F6F0; color: var(--teal); }
.service-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}
.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--teal);
    text-decoration: none;
    cursor: pointer;
    transition: gap 0.2s ease;
}
.service-card .learn-more:hover { gap: 0.7rem; }

/* ── WHY CHOOSE US ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.why-item {
    text-align: center;
    padding: 2rem 1.5rem;
}
.why-icon {
    width: 60px; height: 60px;
    background: var(--light-bg);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
}
.why-item h4 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.why-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 20px;
    padding: 3rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 1rem 0;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(90,138,138,0.2), transparent 70%);
    border-radius: 50%;
}
.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
}
.cta-banner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
}
.cta-banner .btn-primary { position: relative; }

/* ── ABOUT PAGE ── */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
}
.about-text h2 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}
.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.credentials-list {
    list-style: none;
    margin-top: 1.5rem;
}
.credentials-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    color: var(--text);
    font-size: 0.95rem;
}
.credentials-list li .check {
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}
.about-sidebar .info-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.info-card h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    margin-bottom: 1rem;
    font-weight: 700;
}
.info-card .stat {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.info-card .stat:last-child { border: none; }
.info-card .stat .label { color: var(--text-light); }
.info-card .stat .value { font-weight: 600; color: var(--navy); }

/* ── SERVICES PAGE ── */
.service-detail {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.3s ease;
}
.service-detail:hover { box-shadow: var(--shadow); }
.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.service-detail-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}
.service-detail h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}
.service-detail .subtitle {
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
}
.service-detail p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.step {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.25rem;
}
.step-num {
    width: 28px; height: 28px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.step h5 {
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}
.step p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
}

/* ── PAYMENT PAGE ── */
.payment-container {
    max-width: 700px;
    margin: 0 auto;
}
.payment-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.payment-card-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 2rem 2.5rem;
    color: var(--white);
}
.payment-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}
.payment-card-header p {
    font-size: 0.9rem;
    opacity: 0.8;
}
.payment-card-body {
    padding: 2.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.2s ease;
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.btn-pay {
    width: 100%;
    padding: 1rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-pay:hover { background: var(--navy-light); transform: translateY(-1px); }
.stripe-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
}
.stripe-badge svg { width: 42px; height: auto; }
.payment-note {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── CONTACT FORM ── */
.contact-section {
    background: var(--light-bg);
    padding: 5rem 2rem;
}
.contact-inner {
    max-width: 600px;
    margin: 0 auto;
}
.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

/* ── FAQ PAGE ── */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}
.faq-question:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: -2px;
    border-radius: 14px;
}
.faq-chevron {
    flex-shrink: 0;
    width: 20px; height: 20px;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 600px;
}
.faq-answer-inner {
    padding: 0 1.75rem 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.75;
}
.faq-answer-inner p { margin-bottom: 0.75rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
}
.faq-answer-inner a:hover { text-decoration: underline; }

/* ── FOOTER ── */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 3rem 2rem 2rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo img { height: 80px; filter: brightness(0) invert(1); }
.footer-text { font-size: 0.85rem; }
.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--white); }

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── PAGE HEADER (reusable) ── */
.page-header {
    padding: 9rem 2rem 4rem;
    background: linear-gradient(165deg, var(--navy) 0%, #1e3461 100%);
    text-align: center;
}
.page-header h1 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}
.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ── MOBILE RESPONSIVE ── */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .nav-inner {
        height: 80px;
        padding: 0 1.25rem;
    }
    .nav-logo img { height: 64px; }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }
    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-btns a {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .trust-inner {
        gap: 1.25rem;
    }

    .section {
        padding: 3rem 1.25rem;
    }

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

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .why-item {
        padding: 1.25rem 1rem;
    }

    .cta-banner {
        padding: 3rem 1.5rem;
        border-radius: 16px;
    }
    .cta-banner h2 {
        font-size: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-content {
        padding: 2.5rem 1.25rem;
    }

    .service-detail {
        padding: 2rem 1.5rem;
    }
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .payment-card-body {
        padding: 1.5rem;
    }
    .payment-card-header {
        padding: 1.5rem;
    }

    .page-header {
        padding: 7.5rem 1.25rem 3rem;
    }

    .faq-question {
        padding: 1.15rem 1.25rem;
        font-size: 0.95rem;
    }
    .faq-answer-inner {
        padding: 0 1.25rem 1.25rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-logo img { height: 60px; }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .nav-inner {
        height: 70px;
        padding: 0 1rem;
    }
    .nav-logo img { height: 52px; }
    .nav-links {
        top: 70px;
    }

    .hero {
        padding: 7rem 1rem 3rem;
    }
    .hero h1 {
        font-size: 1.65rem;
        line-height: 1.2;
    }
    .hero p {
        font-size: 0.92rem;
        margin-bottom: 2rem;
    }
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }

    .trust-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .trust-item .trust-num {
        font-size: 1.4rem;
    }
    .trust-item .trust-label {
        font-size: 0.72rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
    .section-header p {
        font-size: 0.92rem;
    }

    .service-card {
        padding: 1.75rem 1.25rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-item {
        padding: 1rem 0.75rem;
    }

    .cta-banner {
        padding: 2.5rem 1.25rem;
        border-radius: 14px;
    }
    .cta-banner h2 {
        font-size: 1.35rem;
    }

    .about-text h2 {
        font-size: 1.4rem;
    }
    .about-content {
        padding: 2rem 1rem;
    }

    .service-detail {
        padding: 1.5rem 1.25rem;
        border-radius: 14px;
    }
    .service-detail h3 {
        font-size: 1.2rem;
    }
    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    .payment-card-body {
        padding: 1.25rem;
    }
    .payment-card-header {
        padding: 1.25rem;
    }
    .payment-card-header h3 {
        font-size: 1.2rem;
    }

    .page-header {
        padding: 6.5rem 1rem 2.5rem;
    }
    .page-header h1 {
        font-size: 1.6rem;
    }
    .page-header p {
        font-size: 0.95rem;
    }

    .footer {
        padding: 2rem 1rem 1.5rem;
    }
    .footer-logo img { height: 48px; }
    .footer-text { font-size: 0.78rem; }
    .footer-links {
        gap: 1rem;
    }
    .footer-links a {
        font-size: 0.78rem;
    }

    .contact-form-card {
        padding: 1.5rem !important;
    }

    .btn-pay {
        font-size: 0.9rem;
        padding: 0.85rem;
    }

    .info-card {
        padding: 1.5rem !important;
    }
}

/* Small phones (360px and below) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.4rem;
    }
    .nav-logo img { height: 44px; }
    .nav-inner { height: 64px; }
    .nav-links { top: 64px; }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-links a {
        padding: 0.75rem 1.1rem;
        font-size: 1rem;
    }
    .btn-primary, .btn-outline {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .btn-pay {
        padding: 1rem;
        font-size: 1rem;
    }
    .service-card .learn-more {
        padding: 0.5rem 0;
        font-size: 1rem;
    }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .fade-in {
        opacity: 1;
        transform: none;
    }
}