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

/* ===== CSS Variables ===== */
:root {
    --navy: #0f172a;
    --navy-light: #1e293b;
    --navy-mid: #334155;
    --gold: #d4af37;
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --red: #dc2626;
    --white: #ffffff;
    --light-bg: #f1f5f9;
    --card-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .serif {
    font-family: 'Playfair Display', serif;
}

a { text-decoration: none; }

section { scroll-margin-top: 70px; }

/* ===== NAVBAR ===== */
.navbar-main {
    background: var(--navy);
    padding: 12px 0;
    z-index: 1050;
}

.brand-wrap { display: flex; align-items: center; gap: 10px; }

.brand-logo {
    width: 42px; height: 42px;
    object-fit: contain;
    border-radius: 6px;
}

.footer-logo {
    width: 36px; height: 36px;
    object-fit: contain;
    border-radius: 4px;
}

/* View All Button */
.btn-view-all {
    background: transparent; border: 2px solid var(--amber);
    color: var(--amber); padding: 10px 28px;
    border-radius: 8px; font-weight: 600; font-size: 14px;
    transition: all 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-view-all:hover {
    background: var(--amber); color: var(--navy);
}

/* Home Results Preview */
.home-results {
    background: var(--white); padding: 70px 0;
}


.brand-text .brand-name {
    display: block; color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 18px; line-height: 1.1;
}

.brand-text .brand-sub {
    color: var(--amber);
    font-size: 9px; letter-spacing: 2.5px;
    text-transform: uppercase; font-weight: 600;
}

.brand-text .brand-sub::before,
.brand-text .brand-sub::after {
    content: " — "; color: var(--amber);
}

.navbar-main .nav-link {
    color: #cbd5e1 !important;
    font-size: 13px; font-weight: 500;
    padding: 6px 14px !important;
    border-radius: 20px;
    transition: all 0.3s;
}

.navbar-main .nav-link:hover { color: #fff !important; }
.navbar-main .nav-link.active {
    color: var(--amber) !important;
    background: rgba(255,255,255,0.08);
}

.btn-nav-call {
    background: rgba(255,255,255,0.1); color: var(--text-light);
    border: none; border-radius: 8px; padding: 7px 14px;
    font-size: 13px; font-weight: 500;
}

.btn-nav-call:hover {
    background: rgba(255,255,255,0.2);
}

.btn-nav-enquire {
    background: var(--amber); color: var(--navy);
    border: none; border-radius: 8px; padding: 7px 16px;
    font-size: 13px; font-weight: 600;
}

.btn-nav-enquire:hover {
    background: #f59e0b;
    color: var(--navy);
}

.navbar-toggler { border: none !important; }
.navbar-toggler:focus { box-shadow: none !important; }

/* ===== HERO ===== */
.hero {
    background: var(--navy);
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 120px 0 60px;
    color: var(--white);
    position: relative;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.08);
    color: var(--amber); padding: 6px 18px;
    border-radius: 20px; font-size: 13px; font-weight: 500;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem; font-weight: 800;
    line-height: 1.15; margin-bottom: 16px;
}
.hero h1 span { color: var(--amber); }

.hero-desc {
    font-size: 1.05rem; color: #cbd5e1;
    margin-bottom: 24px; max-width: 520px;
}

.hero-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-bottom: 28px;
}

.hero-feat {
    display: flex; align-items: center; gap: 8px;
    color: #e2e8f0; font-size: 14px; font-weight: 500;
}

.hero-feat i {
    color: var(--amber); font-size: 11px;
    border: 1px solid var(--amber);
    background: rgba(245,158,11,0.1);
    border-radius: 50%; padding: 3px; width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
}

.hero-btns { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }

.btn-call { background: var(--red); color: #fff; border: none; border-radius: 8px; padding: 11px 22px; font-weight: 600; font-size: 14px; }
.btn-call:hover { background: #dc2626; }
.btn-enquire-gold { background: var(--amber); color: var(--navy); border: none; border-radius: 8px; padding: 11px 22px; font-weight: 600; font-size: 14px; }
.btn-enquire-gold:hover { background: #fbbf24; color: var(--navy); }
.btn-wa-light { background: #25d366; color: #fff; border: none; border-radius: 8px; padding: 11px 22px; font-weight: 600; font-size: 14px; }
.btn-wa-light:hover { background: #1ebe5a; color: #fff; }

.hero-stats { display: flex; gap: 16px; flex-wrap: wrap; }

.stat-box {
    display: flex; align-items: center; gap: 10px;
    background: rgba(30,41,59,0.5);
    border: 1px solid rgba(51,65,85,0.5);
    border-radius: 10px; padding: 10px 16px;
}

.stat-box i { color: var(--amber); font-size: 20px; }
.stat-num { font-weight: 700; font-size: 15px; color: #fff; line-height: 1; }
.stat-label { font-size: 11px; color: var(--text-light); }

/* Hero Form */
.hero-form {
    background: var(--white); border-radius: 14px;
    padding: 28px; position: relative;
    border-top: 3px solid var(--amber);
}

.limited-badge {
    position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
    background: #fee2e2; color: var(--red);
    font-size: 11px; font-weight: 600;
    padding: 4px 14px; border-radius: 20px;
    display: flex; align-items: center; gap: 5px; white-space: nowrap;
}

.limited-badge::before {
    content: ''; width: 6px; height: 6px;
    background: var(--red); border-radius: 50%;
}

.hero-form h3 {
    text-align: center; margin-top: 22px;
    font-size: 22px; font-weight: 700; color: var(--navy);
}

.hero-form .form-sub {
    text-align: center; color: var(--text-muted);
    font-size: 13px; margin-bottom: 20px;
}

.hero-form .form-control,
.hero-form .form-select {
    background: var(--light-bg); border: 1px solid var(--border);
    padding: 11px 14px; border-radius: 8px; font-size: 13px;
    color: var(--text-muted); margin-bottom: 12px;
}

.btn-submit {
    background: var(--red); color: #fff; width: 100%;
    border: none; padding: 12px; border-radius: 8px;
    font-weight: 600; font-size: 14px; margin-top: 6px;
}

/* ===== MARQUEE ===== */
.marquee-bar {
    background: var(--white); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0; overflow: hidden; white-space: nowrap;
}

.marquee-content {
    display: flex; gap: 40px; animation: marquee 20s linear infinite;
}

.marquee-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; color: var(--text-dark);
    flex-shrink: 0;
}

.marquee-item i { color: var(--amber); }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== PAGE HEADER (for sub pages) ===== */
.page-header {
    background: var(--navy);
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 100px 0 40px; color: var(--white);
}

.page-header h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 8px; }
.page-header h1 span { color: var(--amber); }
.page-header p { color: #cbd5e1; font-size: 15px; }

/* ===== SECTION HEADER ===== */
.sec-header { text-align: center; margin-bottom: 40px; }

.sec-pretitle {
    color: var(--amber); font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 8px;
}

.sec-title {
    font-size: 2rem; font-weight: 700; color: var(--navy);
}

.sec-subtitle {
    color: var(--text-muted); font-size: 14px; max-width: 500px; margin: 8px auto 0;
}

/* ===== CARDS (general) ===== */
.info-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 12px; padding: 28px; height: 100%;
    transition: all 0.3s;
}

.info-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.info-card .card-icon {
    width: 40px; height: 40px; border-radius: 50%;
    border: 2px solid var(--amber); color: var(--amber);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 14px;
}

.info-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.info-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 0; }

/* ===== GOLD CTA BANNER ===== */
.cta-gold {
    background: var(--amber-dark);
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 50px 0; text-align: center;
}

.cta-gold h2 { color: var(--navy); font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.cta-gold p { color: rgba(15,23,42,0.75); font-size: 14px; margin-bottom: 24px; }

.btn-navy { background: var(--navy); color: #fff; border: none; border-radius: 8px; padding: 10px 22px; font-weight: 600; font-size: 14px; }
.btn-white { background: #fff; color: var(--navy); border: none; border-radius: 8px; padding: 10px 22px; font-weight: 600; font-size: 14px; }

/* ===== FACILITY CARDS ===== */
.facility-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 12px; padding: 28px 16px;
    text-align: center; height: 100%;
    transition: all 0.3s;
}

.facility-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.06); transform: translateY(-2px); }
.facility-card i { font-size: 22px; color: var(--red); margin-bottom: 12px; }
.facility-card h5 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.facility-card p { font-size: 12px; color: var(--text-muted); margin-bottom: 0; }

/* ===== FEE CARDS ===== */
.fee-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; padding: 30px; height: 100%;
    transition: all 0.3s;
}

.fee-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

.fee-card.popular {
    border-color: var(--amber);
    position: relative;
}

.popular-badge {
    background: var(--amber); color: var(--navy);
    text-align: center; padding: 8px;
    border-radius: 14px 14px 0 0;
    font-size: 13px; font-weight: 600;
    margin: -30px -30px 20px;
}

.fee-card h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }

.fee-price {
    font-size: 2.5rem; font-weight: 800; color: var(--navy);
    line-height: 1;
}

.fee-price small { font-size: 14px; font-weight: 400; color: var(--text-muted); }

.fee-note { color: var(--amber); font-size: 12px; font-weight: 500; margin-bottom: 16px; }

.fee-list { list-style: none; padding: 0; }
.fee-list li {
    padding: 6px 0; font-size: 13px; color: var(--text-dark);
    display: flex; align-items: center; gap: 8px;
}
.fee-list li i { color: #22c55e; font-size: 14px; }

/* ===== FEE TABLE CARDS ===== */
.fee-table-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.fee-table-header {
    background: var(--navy); color: var(--white);
    padding: 14px 20px; font-weight: 600; font-size: 15px;
    font-family: 'Playfair Display', serif;
}

.fee-table-header-gold {
    background: linear-gradient(135deg, var(--amber-dark), var(--amber));
    color: var(--navy);
}

.fee-table { margin-bottom: 0; font-size: 13px; }
.fee-table thead th {
    background: var(--light-bg); color: var(--navy);
    font-weight: 700; font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.5px; padding: 12px 14px;
    border-color: var(--border); text-align: center;
    vertical-align: middle;
}

.fee-table tbody td {
    padding: 14px; text-align: center;
    vertical-align: middle; color: var(--text-dark);
    border-color: var(--border);
}

.text-amber { color: var(--amber); font-weight: 600; }

.fee-highlight {
    font-size: 1.3rem; font-weight: 800; color: var(--navy);
    font-family: 'Playfair Display', serif;
}

.fee-note-box {
    background: #fef3c7; border: 1px solid #fbbf24;
    border-radius: 10px; padding: 16px 20px;
    border-left: 4px solid var(--amber);
}

.fee-note-title {
    font-weight: 700; font-size: 14px; color: var(--navy);
    margin-bottom: 8px;
}

.fee-package-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 14px; padding: 24px;
}

.fee-package-list {
    list-style: none; padding: 0; margin: 0;
}

.fee-package-list li {
    padding: 6px 0; font-size: 13px; color: var(--text-dark);
    display: flex; align-items: flex-start; gap: 8px;
}

.fee-package-list li i { color: #22c55e; font-size: 13px; margin-top: 3px; flex-shrink: 0; }

/* ===== HOME: COURSES WE OFFER ===== */
.courses-offer {
    background: var(--navy);
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 70px 0; color: var(--white);
}

.courses-offer .sec-pretitle { color: var(--amber); }
.courses-offer .sec-title { color: var(--white); }

.course-offer-card {
    background: rgba(30,41,59,0.6);
    border: 1px solid rgba(71,85,105,0.4);
    border-radius: 12px; padding: 24px;
    text-align: center; height: 100%;
    transition: all 0.3s;
}

.course-offer-card:hover {
    background: rgba(30,41,59,0.9);
    border-color: var(--amber);
    transform: translateY(-3px);
}

.course-offer-card .co-icon {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; font-size: 20px; color: var(--amber);
}

.course-offer-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700; color: var(--white);
    margin-bottom: 6px;
}

.course-offer-card p { font-size: 12px; color: #94a3b8; margin-bottom: 0; }

/* ===== HOME: GET IN TOUCH ===== */
.get-in-touch { background: var(--white); padding: 70px 0; }

/* ===== FACULTY CARDS ===== */
.faculty-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 14px; padding: 36px 24px;
    text-align: center; height: 100%;
    transition: all 0.3s;
}

.faculty-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.06); transform: translateY(-3px); }

.faculty-avatar {
    width: 80px; height: 80px;
    background: #e2e8f0; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 28px; color: var(--navy-mid);
}

.faculty-card h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.faculty-card .role { color: var(--amber); font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.faculty-card .exp { color: var(--text-muted); font-size: 12px; margin-bottom: 12px; }
.faculty-card .phone { color: var(--text-dark); font-size: 13px; }
.faculty-card .phone i { color: var(--text-muted); margin-right: 6px; }

/* ===== RESULTS / TOPPERS ===== */
.topper-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden; height: 100%;
    transition: all 0.3s;
}

.topper-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.06); }

.topper-img {
    background: #e8ecf1; height: 160px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.topper-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topper-img i { font-size: 50px; color: #cbd5e1; }

.topper-info { padding: 16px; text-align: center; }
.topper-info .medal-icon { color: var(--amber); font-size: 22px; margin-bottom: 6px; }
.topper-info h5 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.topper-info .score { color: var(--amber); font-size: 16px; font-weight: 700; }
.topper-info .exam { color: var(--text-muted); font-size: 12px; margin-bottom: 8px; }

.batch-tag {
    display: inline-block; background: var(--light-bg);
    border: 1px solid var(--border); border-radius: 4px;
    padding: 2px 10px; font-size: 11px; font-weight: 500; color: var(--text-dark);
}

/* ===== GALLERY ===== */
.gallery-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 14px; padding: 40px 20px;
    text-align: center; height: 100%;
    transition: all 0.3s;
}

.gallery-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.06); transform: translateY(-2px); }
.gallery-card .emoji { font-size: 36px; margin-bottom: 10px; }
.gallery-card p { font-size: 14px; font-weight: 500; color: var(--text-dark); margin-bottom: 0; }

/* ===== CONTACT ===== */
.contact-form-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; padding: 30px;
    border-top: 3px solid var(--amber);
}

.contact-form-card h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }

.contact-form-card .form-control,
.contact-form-card .form-select {
    background: var(--light-bg); border: 1px solid var(--border);
    padding: 11px 14px; border-radius: 8px; font-size: 13px;
    color: var(--text-muted); margin-bottom: 12px;
}

.contact-info-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 12px; padding: 20px;
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 14px;
}

.contact-info-card .ci-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--light-bg); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); font-size: 14px;
}

.contact-info-card h6 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-info-card p { font-size: 12px; color: var(--text-muted); margin-bottom: 0; }

/* ===== MAP SECTION ===== */
.map-section {
    background: var(--light-bg);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}


/* ===== FAQ ACCORDION ===== */
.faq-accordion .accordion-item {
    border: 1px solid var(--border); border-radius: 10px !important;
    margin-bottom: 10px; overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600; font-size: 14px; color: var(--navy);
    background: var(--white); padding: 14px 18px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #fffbeb; color: var(--navy);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body { font-size: 13px; color: var(--text-muted); padding: 0 18px 14px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--navy); padding: 50px 0 20px; color: #94a3b8;
}

.footer h5 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.footer p { font-size: 13px; line-height: 1.7; }
.footer a { color: #94a3b8; font-size: 13px; transition: color 0.3s; }
.footer a:hover { color: var(--amber); }

.footer-brand .brand-name {
    color: var(--white); font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
}

.footer-brand .brand-sub {
    color: var(--amber); font-size: 10px;
    letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { display: flex; align-items: center; gap: 6px; }
.footer-links li a i { font-size: 10px; color: var(--amber); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 18px; margin-top: 36px;
    text-align: center; font-size: 12px;
}

.footer-credit {
    margin-top: 8px;
    font-size: 12px;
    color: #64748b;
    letter-spacing: 0.5px;
}

.footer-credit a {
    color: var(--amber) !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-credit a:hover {
    color: #fff !important;
    text-decoration: underline;
}

/* ===== FIXED BOTTOM BAR (mobile) ===== */
.fixed-bottom-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 1040; background: var(--white);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}

.fixed-bottom-bar a {
    flex: 1; text-align: center;
    padding: 10px 0; font-size: 13px;
    font-weight: 600; color: var(--white);
}

.fixed-bottom-bar .fb-call { background: var(--navy); }
.fixed-bottom-bar .fb-wa { background: var(--red); }
.fixed-bottom-bar .fb-enq { background: var(--navy); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 54px; height: 54px;
    background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 26px; z-index: 1045;
    box-shadow: 0 4px 14px rgba(37,211,102,0.4);
    transition: transform 0.3s;
}

.wa-float:hover { transform: scale(1.1); color: #fff; }

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed; bottom: 24px; left: 24px;
    width: 40px; height: 40px;
    background: var(--navy); border-radius: 10px;
    display: none; align-items: center; justify-content: center;
    color: #fff; font-size: 16px; z-index: 1045;
    border: none; cursor: pointer;
    transition: opacity 0.3s;
}

.scroll-top.show { display: flex; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero { padding: 100px 0 40px; }
    .hero h1 { font-size: 2rem; }
    .hero-features { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; }
    .page-header { padding: 90px 0 30px; }
    .page-header h1 { font-size: 1.8rem; }

    .navbar-main .navbar-collapse {
        background: var(--navy-light);
        padding: 16px; border-radius: 12px;
        margin-top: 10px;
    }

    .nav-cta-btns { display: none !important; }
}

@media (max-width: 767px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns a { text-align: center; }
    .sec-title { font-size: 1.5rem; }
    .page-header h1 { font-size: 1.5rem; }

    .fixed-bottom-bar { display: flex; }
    .wa-float { bottom: 70px; }
    .scroll-top { bottom: 70px; }

    body { padding-bottom: 52px; }

    .fee-card.popular { margin-top: 0; }
}

@media (max-width: 575px) {
    .hero { padding: 90px 0 30px; }
    .hero h1 { font-size: 1.5rem; }
    .hero-form { padding: 20px; }
    .fee-price { font-size: 2rem; }
}
