@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #0f172a; background: #f7f8fa; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
    --blue:        #2563eb;
    --blue-dark:   #1d4ed8;
    --blue-light:  #eff6ff;
    --blue-mid:    #dbeafe;
    --navy:        #0f172a;
    --slate:       #1e293b;
    --text:        #0f172a;
    --muted:       #64748b;
    --border:      #e2e8f0;
    --bg:          #f8fafc;
    --white:       #ffffff;
    --green:       #059669;
    --radius-sm:   8px;
    --radius:      14px;
    --radius-lg:   20px;
    --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
    --shadow:      0 4px 16px rgba(0,0,0,.08);
    --shadow-lg:   0 20px 40px rgba(0,0,0,.12);
    --shadow-blue: 0 8px 30px rgba(37,99,235,.25);
}

/* ── Utility ────────────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--blue-light); color: var(--blue);
    padding: 6px 14px; border-radius: 50px;
    font-size: 13px; font-weight: 600; letter-spacing: .3px;
    margin-bottom: 16px;
}
.section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 40px; font-weight: 800; color: var(--text); line-height: 1.2; margin-bottom: 14px; }
.section-sub   { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 15px; cursor: pointer;
    border: none; transition: all .2s; white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.btn-primary  { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover  { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 10px 35px rgba(37,99,235,.35); }
.btn-dark     { background: var(--navy); color: #fff; }
.btn-dark:hover     { background: var(--slate); transform: translateY(-1px); }
.btn-white    { background: #fff; color: var(--navy); box-shadow: var(--shadow); }
.btn-white:hover    { background: #f1f5f9; }
.btn-ghost    { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover    { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-outline  { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover  { background: var(--blue); color: #fff; }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.navbar.scrolled {
    background: rgba(15,23,42,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.navbar .container {
    display: flex; align-items: center;
    justify-content: space-between; height: 72px;
}
.navbar-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px; font-weight: 800; color: #fff;
    letter-spacing: -.3px;
    transition: color .35s;
}
.navbar.scrolled .navbar-brand { color: #fff; }
.navbar-brand .logo-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--blue), #06b6d4);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; font-size: 18px; color: #fff;
    box-shadow: 0 4px 12px rgba(37,99,235,.3);
}
.nav-links {
    display: flex; align-items: center; gap: 2px; list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,.8); font-weight: 500; font-size: 14.5px;
    padding: 8px 15px; border-radius: var(--radius-sm);
    transition: all .18s; position: relative;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.navbar.scrolled .nav-links a { color: rgba(255,255,255,.75); }
.navbar.scrolled .nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-links a.active { color: #fff; font-weight: 600; }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 2px; background: rgba(255,255,255,.7); border-radius: 2px;
}
.navbar.scrolled .nav-links a.active { color: #fff; }
.navbar.scrolled .nav-links a.active::after { background: #60a5fa; }
.nav-divider {
    width: 1px; height: 24px; background: rgba(255,255,255,.2); margin: 0 10px;
    transition: background .35s;
}
.navbar.scrolled .nav-divider { background: rgba(255,255,255,.15); }

.nav-cta { margin-left: 4px; }
.nav-cta .btn {
    padding: 9px 20px; font-size: 14px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.15);
    color: #fff; border: 1.5px solid rgba(255,255,255,.35);
    box-shadow: none;
    transition: all .2s;
}
.nav-cta .btn:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.6); }
.navbar.scrolled .nav-cta .btn {
    background: var(--blue); color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(37,99,235,.25);
}
.navbar.scrolled .nav-cta .btn:hover { background: var(--blue-dark); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 6px;
    border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; display: block; }
.navbar.scrolled .nav-toggle:hover { background: rgba(255,255,255,.1); }
.navbar.scrolled .nav-toggle span { background: #fff; }

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
    background: var(--navy);
    padding: 172px 0 0;
    overflow: hidden;
    position: relative;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(14,165,233,.12) 0%, transparent 60%);
}
.hero-dots {
    position: absolute; inset: 0; opacity: .06;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 32px 32px;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-bottom: 80px; }
.hero-left { max-width: 560px; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(37,99,235,.2); border: 1px solid rgba(37,99,235,.3);
    color: #93c5fd; padding: 7px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 600; margin-bottom: 28px;
}
.hero-tag span { width: 6px; height: 6px; background: #60a5fa; border-radius: 50%; display: inline-block; }
.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 56px; font-weight: 800; color: #fff;
    line-height: 1.1; margin-bottom: 22px; letter-spacing: -.5px;
}
.hero h1 span { color: #60a5fa; }
.hero-sub { font-size: 18px; color: #94a3b8; line-height: 1.7; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 16px; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; color: #94a3b8; font-size: 13px; font-weight: 500; }
.hero-trust-item .dot { width: 5px; height: 5px; background: #22c55e; border-radius: 50%; }

/* Hero right - visual card */
.hero-right { display: flex; justify-content: center; align-items: flex-end; }
.hero-visual {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
}
.hero-visual-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-visual-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, #3b82f6, #06b6d4); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.hero-visual-title { color: #fff; font-weight: 700; font-size: 15px; }
.hero-visual-sub { color: #94a3b8; font-size: 13px; }
.hero-services-list { display: flex; flex-direction: column; gap: 10px; }
.hero-svc-item {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,.05); border-radius: 10px;
    padding: 12px 14px; border: 1px solid rgba(255,255,255,.07);
}
.hero-svc-left { display: flex; align-items: center; gap: 10px; }
.hero-svc-icon { width: 34px; height: 34px; background: rgba(37,99,235,.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.hero-svc-name { color: #e2e8f0; font-size: 14px; font-weight: 500; }
.hero-svc-price { color: #60a5fa; font-weight: 700; font-size: 14px; }
.hero-bottom-strip {
    background: rgba(255,255,255,.03);
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 28px 0 0;
    margin-top: 60px;
}
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-stat { padding: 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.07); }
.hero-stat:last-child { border-right: none; }
.hero-stat-val { font-size: 30px; font-weight: 800; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; }
.hero-stat-label { font-size: 13px; color: #64748b; margin-top: 3px; }

/* ── Services ───────────────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.service-card {
    background: #ffffff; border-radius: var(--radius);
    padding: 28px 24px; border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: all .25s; display: flex; flex-direction: column;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), #06b6d4);
    transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
    width: 54px; height: 54px; border-radius: 14px;
    background: var(--blue-light); display: flex; align-items: center;
    justify-content: center; font-size: 26px; margin-bottom: 18px;
    transition: background .25s;
}
.service-card:hover .service-icon-wrap { background: var(--blue); }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.service-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.service-price { font-size: 24px; font-weight: 800; color: var(--text); }
.service-price span { font-size: 14px; font-weight: 500; color: var(--muted); }
.service-link {
    width: 38px; height: 38px; background: var(--blue-light); color: var(--blue);
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    font-size: 17px; transition: all .2s;
}
.service-card:hover .service-link { background: var(--blue); color: #fff; }

/* ── Process ────────────────────────────────────────────────────────────────── */
.process-section { background: var(--navy); position: relative; overflow: hidden; }
.process-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37,99,235,.12) 0%, transparent 70%);
}
.process-section .container { position: relative; z-index: 1; }
.process-section .section-title { color: #fff; }
.process-section .section-sub { color: #94a3b8; }
.process-section .section-tag { background: rgba(37,99,235,.2); color: #93c5fd; border: 1px solid rgba(37,99,235,.3); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 50px; }
.process-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg); padding: 32px 28px;
    position: relative;
}
.process-num {
    font-size: 72px; font-weight: 900; color: rgba(255,255,255,.04);
    position: absolute; top: 16px; right: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1;
}
.process-icon { font-size: 36px; margin-bottom: 20px; }
.process-card h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.process-card p { font-size: 14px; color: #94a3b8; line-height: 1.7; }
.process-connector { display: none; }

/* ── Why Us ─────────────────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.why-card {
    padding: 28px 24px; border-radius: var(--radius);
    background: var(--white); border: 1px solid var(--border);
    transition: all .25s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-icon-wrap {
    width: 50px; height: 50px; border-radius: 12px;
    background: var(--blue-light); display: flex; align-items: center;
    justify-content: center; font-size: 22px; margin-bottom: 16px;
}
.why-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Testimonials ───────────────────────────────────────────────────────────── */
.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars span { color: #f59e0b; font-size: 16px; }
.testimonial-card blockquote { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; color: #fff; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 14px; color: var(--text); }
.author-loc  { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ── CTA Banner ─────────────────────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--blue-dark) 0%, #1e40af 50%, #1d4ed8 100%);
    padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-banner p { font-size: 18px; color: #bfdbfe; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Trust Strip ────────────────────────────────────────────────────────────── */
.trust-strip { background: #fff; padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 14px; font-weight: 500; }
.trust-item .icon { font-size: 20px; }

/* ── Booking Form ───────────────────────────────────────────────────────────── */
.booking-section { background: var(--bg); }
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.booking-card { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.booking-info { display: flex; flex-direction: column; gap: 16px; }
.booking-info-card { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); }
.booking-info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.booking-info-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.booking-info-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.booking-info-card ul li { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.booking-info-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 13px; color: var(--text); margin-bottom: 6px; letter-spacing: .1px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 15px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-size: 15px; color: var(--text); background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    font-family: 'Inter', sans-serif;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.price-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--blue-light); color: var(--blue);
    padding: 6px 14px; border-radius: 50px;
    font-size: 14px; font-weight: 700; margin-top: 8px;
}

/* ── Alert ──────────────────────────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 500; font-size: 14px; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-brand-icon { width: 34px; height: 34px; background: var(--blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.footer p { color: #64748b; font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; color: #94a3b8; font-size: 14px; margin-bottom: 8px; }
.footer-contact-item .icon { color: #3b82f6; }
.footer-col h4 { color: #f1f5f9; font-size: 14px; font-weight: 700; margin-bottom: 18px; letter-spacing: .3px; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: #64748b; font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-divider { border: none; border-top: 1px solid #1e293b; margin-bottom: 28px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: #475569; font-size: 13px; margin: 0; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #475569; font-size: 13px; }
.footer-legal a:hover { color: #94a3b8; }
.footer-reg { margin-top: 4px; }
.footer-reg strong { color: #e2e8f0; font-weight: 600; }
.footer-payments { margin-top: 20px; }
.pay-secure { display: flex; align-items: center; gap: 5px; color: #475569; font-size: 11px; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.pay-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.pay-badge { display: inline-flex; align-items: center; justify-content: center; gap: 5px; height: 30px; padding: 0 10px; border-radius: 5px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); cursor: default; border: none; }
.pay-badge svg { flex-shrink: 0; }
.pay-badge.pay-visa { font-family: 'Arial Black', Arial, sans-serif; font-size: 14px; font-style: italic; font-weight: 900; color: #1A1F71; letter-spacing: 1px; padding: 0 13px; min-width: 52px; }
.pay-badge.pay-mc { padding: 0 7px; }
.pay-badge.pay-wise { font-size: 12px; font-weight: 700; color: #163300; letter-spacing: .3px; }
.pay-badge.pay-paypal { font-size: 12px; font-weight: 700; color: #003087; }

/* ── Booking: price card + live summary ─────────────────────────────────────── */
.price-info-card { display:flex; justify-content:space-between; align-items:center; background:#eff6ff; border:1px solid #bfdbfe; border-radius:var(--radius-sm); padding:12px 16px; margin-top:8px; }
.price-info-name { font-size:14px; font-weight:600; color:var(--text); }
.price-info-duration { font-size:12px; color:var(--muted); margin-top:2px; }
.price-info-price { font-size:24px; font-weight:900; color:var(--blue); font-family:'Plus Jakarta Sans',sans-serif; }
.sum-row { display:flex; justify-content:space-between; align-items:flex-start; gap:8px; padding:7px 0; border-bottom:1px solid var(--border); font-size:13px; }
.sum-row:last-child { border-bottom:none; padding-bottom:0; }
.sum-label { color:var(--muted); flex-shrink:0; }
.sum-val { font-weight:600; text-align:right; }
.sum-price { color:var(--blue); font-size:16px; font-family:'Plus Jakarta Sans',sans-serif; }

/* ── Admin ──────────────────────────────────────────────────────────────────── */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--navy); padding: 0; flex-shrink: 0; display: flex; flex-direction: column; }
.admin-logo { padding: 22px 20px; border-bottom: 1px solid rgba(255,255,255,.06); }
.admin-logo h2 { color: #fff; font-size: 15px; font-weight: 700; }
.admin-logo p { color: #475569; font-size: 12px; margin-top: 2px; }
.admin-nav { padding: 14px 10px; flex: 1; }
.admin-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; color: #64748b; font-size: 14px; font-weight: 500; border-radius: var(--radius-sm); transition: all .2s; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.06); color: #fff; }
.admin-main { flex: 1; background: var(--bg); overflow-y: auto; }
.admin-header { background: #fff; padding: 16px 28px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.admin-header h1 { font-size: 20px; font-weight: 700; }
.admin-content { padding: 28px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-bottom: 28px; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 22px; border: 1px solid var(--border); }
.stat-card .label { font-size: 13px; color: var(--muted); font-weight: 500; margin-bottom: 8px; }
.stat-card .value { font-size: 30px; font-weight: 800; color: var(--text); }
.stat-card .value.blue { color: var(--blue); }
.stat-card .value.green { color: #059669; }
.stat-card .value.amber { color: #d97706; }
.table-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.table-card-header { padding: 18px 22px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.table-card-header h3 { font-size: 16px; font-weight: 700; }
table { width: 100%; border-collapse: collapse; }
thead th { padding: 11px 18px; text-align: left; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; background: var(--bg); }
tbody td { padding: 14px 18px; border-top: 1px solid var(--border); font-size: 14px; }
tbody tr:hover { background: #fafafa; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.badge-pending  { background: #fef3c7; color: #92400e; }
.badge-paid     { background: #d1fae5; color: #065f46; }
.badge-cancelled{ background: #fee2e2; color: #991b1b; }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { display: none; }
    .hero h1 { font-size: 44px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .process-grid { grid-template-columns: 1fr; gap: 20px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-info { display: none; }
}
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .hero { padding: 70px 0 0; }
    .hero h1 { font-size: 34px; }
    .hero-stat-val { font-size: 24px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-stat { border-bottom: 1px solid rgba(255,255,255,.07); }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .pay-badges { justify-content: flex-start; }
    .nav-links { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .cta-banner h2 { font-size: 28px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .trust-strip-inner { gap: 20px; }
}
