/* ============================================
   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 Section ---- */
.hero {
    background: var(--gradient-dark);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f59e0b" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,117.3C672,107,768,117,864,138.7C960,160,1056,192,1152,186.7C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: 3.2rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.hero h1 span { color: var(--secondary); }
.hero .lead { font-size: 1.15rem; opacity: 0.85; margin-bottom: 30px; max-width: 540px; }
.hero-badges { display: flex; gap: 15px; margin-bottom: 30px; 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: 8px 16px; border-radius: 50px; font-size: 13px; display: flex; align-items: center; gap: 6px; }
.hero-badge i { color: var(--secondary); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-car {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-car-icon { font-size: 200px; opacity: 0.15; color: var(--secondary); }

/* ---- 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); }

/* ---- Responsive ---- */
@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; }
}

@media (max-width: 767px) {
    .hero h1 { font-size: 1.8rem; }
    .hero { min-height: 60vh; padding-top: 30px; }
    .hero-car { display: none; }
    h2 { font-size: 1.5rem; }
    .section { padding: 40px 0; }
    .top-bar { display: none; }
    .mobile-sticky-bar { display: flex; }
    body { padding-bottom: 60px; }
    .whatsapp-float { bottom: 75px; }
    .counter-item .count { font-size: 28px; }
}

/* ---- 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-item .hero { min-height: 85vh; padding: 0; }
.carousel-indicators { z-index: 5; margin-bottom: 30px; }
.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; }
}
