/* ============================================
   SUKLAI DRIVING SCHOOL - Public Website CSS
   Modern, Clean, Professional Design
   ============================================ */

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

:root {
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --accent: #10b981;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --gray-1: #334155;
    --gray-2: #64748b;
    --gray-3: #94a3b8;
    --gray-4: #cbd5e1;
    --gray-5: #e2e8f0;
    --gray-6: #f1f5f9;
    --white: #ffffff;
    --danger: #ef4444;
    --success: #22c55e;
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-1);
    background: var(--white);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.3; color: var(--dark); }
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
p { color: var(--gray-2); }
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

/* ---- Section Styling ---- */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.section-dark p { opacity: 0.8; }
.section-gray { background: var(--gray-6); }
.section-gradient { background: var(--gradient-primary); color: var(--white); }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { margin-bottom: 12px; position: relative; display: inline-block; }
.section-title h2::after { content: ''; display: block; width: 60px; height: 4px; background: var(--secondary); margin: 12px auto 0; border-radius: 2px; }
.section-title p { max-width: 600px; margin: 0 auto; color: var(--gray-2); }

/* ---- Top Bar ---- */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}
.top-bar a { color: var(--gray-3); }
.top-bar a:hover { color: var(--secondary); }
.top-bar i { color: var(--secondary); }

/* ---- Navbar ---- */
.navbar-main {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 0;
    transition: all 0.3s ease;
    z-index: 1050;
}
.navbar-main.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.navbar-main .navbar-brand {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-main .brand-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 22px;
}
.navbar-main .brand-text .brand-name { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 16px; color: var(--dark); line-height: 1.2; }
.navbar-main .brand-text .brand-sub { font-size: 9px; color: var(--gray-2); text-transform: uppercase; letter-spacing: 1.5px; }

.navbar-main .nav-link {
    color: var(--gray-1);
    font-weight: 500;
    font-size: 13.5px;
    padding: 18px 12px !important;
    transition: color 0.3s;
    white-space: nowrap;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--primary); }
.navbar-main .dropdown-menu { border: none; box-shadow: var(--shadow-lg); border-radius: var(--radius); padding: 8px; min-width: 220px; }
.navbar-main .dropdown-item { border-radius: 8px; padding: 8px 14px; font-size: 13px; }
.navbar-main .dropdown-item:hover { background: var(--gray-6); color: var(--primary); }
.navbar-main .btn-apply { background: var(--secondary); color: var(--dark); font-weight: 600; border: none; padding: 8px 20px; border-radius: 8px; font-size: 13px; }
.navbar-main .btn-apply:hover { background: var(--secondary-dark); }

/* ---- Hero Split Layout: Slider (3/4) + Notifications (1/4) ---- */
.hero-split {
    display: flex;
    height: 75vh;
    background: var(--gradient-dark);
}
.hero-split-slider {
    flex: 0 0 75%;
    max-width: 75%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.hero-split-slider .carousel,
.hero-split-slider .carousel-inner,
.hero-split-slider .carousel-item {
    height: 100%;
}
.hero-split-notif {
    flex: 0 0 25%;
    max-width: 25%;
    height: 100%;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 991.98px) {
    .hero-split { flex-direction: column; height: auto; }
    .hero-split-slider { flex: 0 0 auto; max-width: 100%; height: 50vh; }
    .hero-split-notif { flex: 0 0 auto; max-width: 100%; height: 220px; border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
}

/* Slide overlay & content */
.hero-slide-overlay {
    background: linear-gradient(to right, rgba(15,23,42,0.7) 0%, rgba(15,23,42,0.3) 100%);
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--white);
}
.hero-content { position: relative; z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,0.5); padding: 30px 0; }
.hero-content h1 { font-size: 2.6rem; font-weight: 800; color: var(--white); margin-bottom: 12px; text-shadow: 0 3px 12px rgba(0,0,0,0.6); }
.hero-content h1 span { color: var(--secondary); }
.hero-content .lead { font-size: 1rem; opacity: 0.9; margin-bottom: 20px; max-width: 520px; }
.hero-badges { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.hero-badge { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); padding: 5px 12px; border-radius: 50px; font-size: 11px; display: flex; align-items: center; gap: 5px; color: #fff; }
.hero-badge i { color: var(--secondary); }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* Notification Panel (right 1/4) */
.hero-notif-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.hero-notif-header {
    background: rgba(245,158,11,0.15);
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.hero-notif-header h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
}
.hero-notif-header .blink-dot {
    width: 8px; height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-notif-scroll-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.hero-notif-list {
    padding: 0;
    margin: 0;
    list-style: none;
    will-change: transform;
}
.hero-notif-item {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
    transition: background 0.2s;
}
.hero-notif-item:hover { background: rgba(255,255,255,0.05); }
.hero-notif-item .notif-date {
    font-size: 10px;
    color: var(--secondary);
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
}
.hero-notif-item .notif-badge {
    display: inline-block;
    background: rgba(245,158,11,0.25);
    color: var(--secondary);
    font-size: 10px;
    padding: 1px 8px;
    border-radius: 10px;
    font-weight: 600;
    margin-left: 6px;
}
.hero-notif-item .notif-title-link {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    transition: color 0.2s;
}
.hero-notif-item .notif-title-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}
.hero-notif-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* ---- Buttons ---- */
.btn-primary-custom { background: var(--primary); color: var(--white); border: none; padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.btn-primary-custom:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary-custom { background: var(--secondary); color: var(--dark); border: none; padding: 12px 28px; border-radius: 10px; font-weight: 600; font-size: 14px; transition: all 0.3s; }
.btn-secondary-custom:hover { background: var(--secondary-dark); color: var(--dark); transform: translateY(-2px); }
.btn-outline-custom { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); padding: 10px 26px; border-radius: 10px; font-weight: 600; font-size: 14px; }
.btn-outline-custom:hover { background: var(--white); color: var(--dark); }
.btn-whatsapp { background: #25D366; color: #fff; border: none; padding: 12px 28px; border-radius: 10px; font-weight: 600; }
.btn-whatsapp:hover { background: #128C7E; color: #fff; }

/* ---- Feature Cards ---- */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-5);
    height: 100%;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.feature-card .icon { width: 65px; height: 65px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 26px; }
.feature-card h5 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { font-size: 13px; margin-bottom: 0; }
.icon-blue { background: #dbeafe; color: var(--primary); }
.icon-green { background: #dcfce7; color: #16a34a; }
.icon-yellow { background: #fef3c7; color: #d97706; }
.icon-red { background: #fee2e2; color: #dc2626; }
.icon-purple { background: #ede9fe; color: #7c3aed; }
.icon-cyan { background: #cffafe; color: #0891b2; }

/* ---- Course Card ---- */
.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid var(--gray-5);
    height: 100%;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-card-header { padding: 24px; background: var(--gradient-primary); color: var(--white); text-align: center; }
.course-card-header h4 { color: var(--white); font-size: 18px; margin-bottom: 4px; }
.course-card-header .course-icon { font-size: 40px; margin-bottom: 10px; opacity: 0.9; }
.course-card-body { padding: 24px; }
.course-card-body .detail { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--gray-5); font-size: 13px; }
.course-card-body .detail:last-child { border-bottom: none; }
.course-card-body .detail .label { color: var(--gray-2); }
.course-card-body .detail .value { font-weight: 600; color: var(--dark); }
.course-card-footer { padding: 0 24px 24px; }

/* ---- Process Steps ---- */
.process-step { text-align: center; position: relative; }
.process-step .step-number {
    width: 60px; height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(30,64,175,0.3);
}
.process-step h5 { font-size: 15px; margin-bottom: 6px; }
.process-step p { font-size: 12px; }
.process-connector {
    position: absolute;
    top: 30px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: var(--gray-4);
}

/* ---- Counter ---- */
.counter-section { background: var(--gradient-primary); padding: 60px 0; }
.counter-item { text-align: center; color: var(--white); }
.counter-item .count { font-size: 42px; font-weight: 800; font-family: 'Poppins', sans-serif; }
.counter-item .count-label { font-size: 13px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }

/* ---- Testimonial ---- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-5);
    position: relative;
    height: 100%;
}
.testimonial-card::before { content: '\201C'; position: absolute; top: 10px; left: 20px; font-size: 60px; color: var(--secondary); opacity: 0.3; font-family: serif; line-height: 1; }
.testimonial-card .stars { color: var(--secondary); margin-bottom: 12px; }
.testimonial-card .text { font-style: italic; font-size: 14px; margin-bottom: 16px; color: var(--gray-2); }
.testimonial-card .author { display: flex; align-items: center; gap: 10px; }
.testimonial-card .author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.testimonial-card .author-name { font-weight: 600; font-size: 14px; color: var(--dark); }
.testimonial-card .author-course { font-size: 11px; color: var(--gray-3); }

/* ---- Instructor Card ---- */
.instructor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-5);
    text-align: center;
    transition: all 0.3s;
}
.instructor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.instructor-card .photo { height: 200px; background: var(--gray-6); display: flex; align-items: center; justify-content: center; font-size: 60px; color: var(--gray-3); }
.instructor-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor-card .info { padding: 20px; }
.instructor-card .info h5 { font-size: 16px; margin-bottom: 4px; }
.instructor-card .info .specialization { font-size: 12px; color: var(--primary); font-weight: 500; }
.instructor-card .info .exp { font-size: 12px; color: var(--gray-2); }
.instructor-card .badges { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.instructor-card .badges span { font-size: 10px; padding: 3px 10px; border-radius: 50px; background: var(--gray-6); color: var(--gray-1); }

/* ---- Vehicle Card ---- */
.vehicle-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-5);
    transition: all 0.3s;
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.vehicle-card .vehicle-img { height: 180px; background: var(--gray-6); display: flex; align-items: center; justify-content: center; font-size: 50px; color: var(--gray-3); }
.vehicle-card .vehicle-img img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-card .vehicle-info { padding: 16px; }
.vehicle-card .vehicle-info h6 { font-size: 15px; margin-bottom: 8px; }
.vehicle-card .doc-status { display: flex; gap: 6px; flex-wrap: wrap; }
.vehicle-card .doc-status span { font-size: 10px; padding: 3px 8px; border-radius: 4px; }
.doc-valid { background: #dcfce7; color: #16a34a; }
.doc-expired { background: #fee2e2; color: #dc2626; }

/* ---- Fee Table ---- */
.fee-table { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.fee-table thead th { background: var(--primary); color: var(--white); font-weight: 600; padding: 14px 16px; font-size: 13px; border: none; }
.fee-table tbody td { padding: 14px 16px; font-size: 13px; vertical-align: middle; }
.fee-table tbody tr:hover { background: var(--gray-6); }
.fee-highlight { background: var(--secondary); color: var(--dark); font-weight: 700; font-size: 16px !important; border-radius: 6px; padding: 4px 12px !important; display: inline-block; }

/* ---- CTA Section ---- */
.cta-section {
    background: var(--gradient-warm);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---- Footer ---- */
.site-footer {
    background: var(--dark);
    color: var(--gray-3);
    padding: 60px 0 0;
}
.site-footer h5 { color: var(--white); font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.site-footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--secondary); border-radius: 2px; }
.site-footer a { color: var(--gray-3); font-size: 13px; display: block; padding: 4px 0; transition: all 0.3s; }
.site-footer a:hover { color: var(--secondary); padding-left: 5px; }
.site-footer .footer-contact { list-style: none; padding: 0; }
.site-footer .footer-contact li { display: flex; gap: 10px; margin-bottom: 10px; font-size: 13px; }
.site-footer .footer-contact li i { color: var(--secondary); margin-top: 3px; }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; margin-top: 40px; }
.site-footer .social-links a { display: inline-flex; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1); align-items: center; justify-content: center; margin-right: 6px; color: var(--white); font-size: 14px; padding: 0; }
.site-footer .social-links a:hover { background: var(--secondary); color: var(--dark); }

/* ---- WhatsApp Floating ---- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: transform 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ---- Mobile Sticky Bar ---- */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    display: none;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.mobile-sticky-bar a {
    flex: 1;
    text-align: center;
    color: var(--white);
    padding: 10px 5px;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.mobile-sticky-bar a i { font-size: 18px; }
.mobile-sticky-bar a:hover { color: var(--secondary); }

/* ---- Page Header ---- */
.page-header {
    background: var(--gradient-dark);
    padding: 80px 0 50px;
    text-align: center;
    color: var(--white);
    position: relative;
}
.page-header h1 { font-size: 2.2rem; color: var(--white); margin-bottom: 10px; }
.page-header .breadcrumb { justify-content: center; margin-bottom: 0; }
.page-header .breadcrumb-item a { color: var(--secondary); }
.page-header .breadcrumb-item.active { color: var(--gray-3); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: var(--gray-3); }

/* ---- Form Styling ---- */
.form-modern .form-control,
.form-modern .form-select {
    border-radius: 10px;
    border: 1.5px solid var(--gray-4);
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s;
}
.form-modern .form-control:focus,
.form-modern .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30,64,175,0.1); }
.form-modern .form-label { font-weight: 500; font-size: 13px; color: var(--gray-1); margin-bottom: 6px; }

/* ---- Gallery ---- */
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 220px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { font-size: 30px; color: var(--white); }

/* ---- PWA Install Banner ---- */
.pwa-install-banner {
    display: none;
    position: fixed;
    bottom: 70px;
    left: 10px;
    right: 10px;
    background: var(--dark-2);
    color: var(--white);
    border-radius: 14px;
    padding: 12px 16px;
    z-index: 10000;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    animation: slideUpBanner 0.4s ease;
}
@keyframes slideUpBanner { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.pwa-install-content {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pwa-install-content i {
    font-size: 28px;
    color: var(--secondary);
}
.pwa-install-content strong {
    display: block;
    font-size: 13px;
}
.pwa-install-content small {
    font-size: 11px;
    color: var(--gray-3);
}
.pwa-install-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.btn-pwa-install {
    background: var(--secondary) !important;
    color: var(--dark) !important;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 12px;
}
.btn-pwa-dismiss {
    background: transparent !important;
    color: var(--gray-3) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 16px;
    line-height: 1;
}

/* ---- Responsive: Tablet ---- */
@media (max-width: 991px) {
    .hero h1 { font-size: 2.2rem; }
    .hero { min-height: 70vh; }
    h2 { font-size: 1.8rem; }
    .section { padding: 50px 0; }
    .process-connector { display: none; }
    .navbar-main .nav-link { padding: 10px 16px !important; }
    .navbar-main .collapse { background: var(--white); border-top: 1px solid var(--gray-5); max-height: 80vh; overflow-y: auto; }
    .navbar-main .dropdown-menu { box-shadow: none; border: none; padding-left: 16px; background: var(--gray-6); }
    .btn-apply { width: 100%; text-align: center; margin: 8px 16px 12px; }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 767px) {
    html { font-size: 14px; }
    .hero h1 { font-size: 1.5rem; }
    .hero { min-height: 60vh; padding-top: 30px; }
    .hero-car { display: none; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    .section { padding: 35px 0; }
    .section-title { margin-bottom: 30px; }
    .section-title p { font-size: 13px; }
    .top-bar { display: none; }
    .mobile-sticky-bar { display: flex; }
    body { padding-bottom: 60px; }
    .whatsapp-float { bottom: 75px; right: 15px; width: 50px; height: 50px; font-size: 24px; }
    .counter-item .count { font-size: 28px; }

    /* Hero split - mobile stack */
    .hero-split { height: auto; flex-direction: column; }
    .hero-split-slider { flex: 0 0 auto; max-width: 100%; height: 45vh; min-height: 260px; }
    .hero-split-notif { flex: 0 0 auto; max-width: 100%; height: 200px; border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
    .hero-content { padding: 20px 0; }
    .hero-content h1 { font-size: 1.4rem; margin-bottom: 8px; }
    .hero-content .lead { font-size: 0.85rem; margin-bottom: 12px; }
    .hero-badges { gap: 6px; margin-bottom: 12px; }
    .hero-badge { font-size: 10px; padding: 3px 8px; }
    .hero-btns .btn { padding: 8px 16px; font-size: 12px; }
    .hero-notif-item { padding: 8px 12px; font-size: 12px; }
    .hero-notif-header { padding: 10px 12px; }
    .hero-notif-header h6 { font-size: 12px; }

    /* Cards responsive */
    .feature-card { padding: 20px; }
    .feature-card .icon { width: 50px; height: 50px; font-size: 20px; }
    .feature-card h5 { font-size: 14px; }
    .feature-card p { font-size: 12px; }
    .course-card-header { padding: 16px; }
    .course-card-header h4 { font-size: 16px; }
    .course-card-body { padding: 16px; }
    .course-card-footer { padding: 0 16px 16px; }
    .testimonial-card { padding: 20px; }
    .testimonial-card .text { font-size: 13px; }
    .instructor-card .photo { height: 160px; }
    .vehicle-card .vehicle-img { height: 150px; }
    .gallery-item { height: 160px; }

    /* Buttons */
    .btn-primary-custom, .btn-secondary-custom, .btn-outline-custom, .btn-whatsapp { padding: 10px 20px; font-size: 13px; }
    .cta-section { padding: 40px 0; }
    .cta-section h2 { font-size: 1.3rem; }
    .cta-section p { font-size: 13px; }
    .cta-section .btn-lg { padding: 10px 20px; font-size: 13px; }

    /* Footer */
    .site-footer { padding: 40px 0 0; }
    .site-footer h5 { font-size: 14px; margin-bottom: 14px; }
    .footer-bottom { text-align: center; }
    .footer-bottom .col-md-6 { text-align: center !important; }

    /* Page header */
    .page-header { padding: 60px 0 35px; }
    .page-header h1 { font-size: 1.5rem; }

    /* Forms */
    .form-modern .form-control, .form-modern .form-select { padding: 10px 14px; font-size: 13px; }

    /* Fee table scroll */
    .fee-table { font-size: 12px; }
    .table-responsive { -webkit-overflow-scrolling: touch; }

    /* Counter */
    .counter-section { padding: 35px 0; }
    .counter-item .count { font-size: 26px; }
    .counter-item .count-label { font-size: 11px; }

    /* PWA banner */
    .pwa-install-banner { bottom: 65px; left: 8px; right: 8px; }

    /* Navbar brand mobile */
    .navbar-main .brand-icon { width: 36px; height: 36px; font-size: 18px; border-radius: 8px; }
    .navbar-main .brand-text .brand-name { font-size: 13px; }
    .navbar-main .brand-text .brand-sub { font-size: 8px; }
}

/* ---- Responsive: Small phones ---- */
@media (max-width: 375px) {
    .hero-content h1 { font-size: 1.2rem; }
    .hero-content .lead { font-size: 0.8rem; }
    .hero-split-slider { height: 38vh; min-height: 220px; }
    .hero-split-notif { height: 180px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; }
    .mobile-sticky-bar a { font-size: 9px; padding: 8px 3px; }
    .mobile-sticky-bar a i { font-size: 16px; }
    .navbar-main .brand-text .brand-name { font-size: 12px; }
}

/* ---- Safe area for notched phones ---- */
@supports (padding: env(safe-area-inset-bottom)) {
    .mobile-sticky-bar { padding-bottom: env(safe-area-inset-bottom); }
    body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
    .pwa-install-banner { bottom: calc(65px + env(safe-area-inset-bottom)); }
}

/* ---- Touch-friendly tap targets ---- */
@media (hover: none) and (pointer: coarse) {
    .navbar-main .nav-link { min-height: 44px; display: flex; align-items: center; }
    .navbar-main .dropdown-item { min-height: 44px; display: flex; align-items: center; }
    .mobile-sticky-bar a { min-height: 50px; }
    .btn-primary-custom, .btn-secondary-custom, .btn-outline-custom, .btn-whatsapp { min-height: 44px; }
}

/* ---- Animations ---- */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---- Status Timeline ---- */
.status-timeline { position: relative; padding-left: 30px; }
.status-timeline::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: var(--gray-4); }
.status-item { position: relative; margin-bottom: 24px; }
.status-item::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--gray-4);
    background: var(--white);
}
.status-item.completed::before { background: var(--success); border-color: var(--success); }
.status-item.current::before { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 0 4px rgba(30,64,175,0.2); }
.status-item.pending::before { background: var(--gray-4); border-color: var(--gray-4); }
.status-item h6 { font-size: 14px; margin-bottom: 2px; }
.status-item small { font-size: 12px; color: var(--gray-2); }

/* ---- Carousel/Slider ---- */
.carousel-indicators { z-index: 5; margin-bottom: 16px; }
.carousel-indicators button { width: 12px; height: 12px; border-radius: 50%; margin: 0 4px; opacity: 0.5; }
.carousel-indicators button.active { opacity: 1; background: var(--secondary); }
.carousel-control-prev, .carousel-control-next { z-index: 5; width: 50px; }
.carousel-control-prev-icon, .carousel-control-next-icon { width: 40px; height: 40px; background-color: rgba(0,0,0,0.3); border-radius: 50%; background-size: 50%; }

/* ---- Governing Body ---- */
.gb-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.gb-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.gb-card-photo { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.gb-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.gb-card-placeholder {
    width: 100%; height: 100%;
    background: #6b8db5;
    display: flex; align-items: center; justify-content: center;
}
.gb-card-placeholder i { font-size: 6rem; color: rgba(255,255,255,0.6); }
.gb-card-body { padding: 20px; }
.gb-designation { color: var(--primary-dark); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.gb-org { color: var(--gray-2); font-size: 13px; margin-bottom: 10px; font-weight: 500; }
.gb-desc { color: var(--gray-2); font-size: 13px; line-height: 1.6; margin: 0; }

/* ---- Developer Credit ---- */
.developer-credit {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}
.sahaj-link {
    color: #fbbf24 !important;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.sahaj-link:hover { color: #fff !important; }
.sahaj-logo {
    height: 18px;
    width: auto;
    vertical-align: middle;
    border-radius: 3px;
}
.sahaj-phone {
    display: inline-block;
    margin-left: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
}
.sahaj-phone i { font-size: 10px; margin-right: 2px; }

/* ---- Print ---- */
@media print {
    .top-bar, .navbar-main, .site-footer, .whatsapp-float, .mobile-sticky-bar, .cta-section { display: none !important; }
}
