/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-y: auto; }
body { font-family: 'Poppins', sans-serif; color: #333; overflow-x: hidden; max-width: 100vw; position: relative; }
img { max-width: 100%; height: auto; }
section, div, footer, header, nav { max-width: 100%; }
a { text-decoration: none; color: inherit; }
.fa-phone { display: inline-block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ========== TOPBAR ========== */
.topbar {
    background: #0a1f44;
    color: #fff;
    padding: 7px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left { display: flex; align-items: center; gap: 15px; }
.topbar-left a { color: #ccc; transition: color 0.3s; display: flex; align-items: center; }
.topbar-left a:hover { color: #ff5722; }
.topbar-left i { margin-right: 6px; color: #ff5722; }
.topbar-divider { color: rgba(255,255,255,0.2); }
.topbar-right { display: flex; gap: 8px; }
.topbar-right a {
    color: #fff;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s;
    font-size: 12px;
}
.topbar-right a:hover { background: #ff5722; transform: translateY(-1px); }

/* ========== HEADER ========== */
.header {
    background: #0d2b5e;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
    transition: all 0.3s;
}
.header.fixed {
    position: fixed;
    top: 0;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    min-height: 70px;
}
.logo img { height: 58px; }

/* Navigation */
.nav ul { display: flex; gap: 0; }
.nav ul li a {
    padding: 24px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    display: block;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}
.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 3px;
    background: #ff5722;
    transition: all 0.3s;
    transform: translateX(-50%);
}
.nav ul li a:hover,
.nav ul li a.active { color: #ff5722; }
.nav ul li a:hover::after,
.nav ul li a.active::after { width: 100%; }

/* Header Right Buttons */
.header-right { display: flex; gap: 10px; align-items: center; }
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 9px 18px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex; align-items: center; gap: 6px;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }
.btn-call {
    background: #ff5722;
    color: #fff;
    padding: 9px 18px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex; align-items: center; gap: 6px;
    animation: pulse-btn 2s infinite;
}
.btn-call:hover { background: #e64a19; }
@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,87,34,0.5); }
    50% { box-shadow: 0 0 0 8px rgba(255,87,34,0); }
}

/* Hamburger */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1001; }
.hamburger span { width: 28px; height: 3px; background: #fff; border-radius: 3px; transition: 0.3s; }

/* ========== HERO SECTION ========== */
.hero {
    width: 100%;
    overflow: hidden;
    max-height: 450px;
    max-width: 100%;
}
.hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center 70%;
    display: block;
    max-width: 100%;
}
@media (max-width: 768px) {
    .hero-img { width: 100%; height: auto; }
}

/* ========== GET IN TOUCH STRIP ========== */
.get-in-touch {
    background: transparent;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
    z-index: 10;
}
.get-in-touch .container {
    background: linear-gradient(135deg, #0d2b5e 0%, #1a4a8a 100%);
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(13,43,94,0.3);
    position: relative;
    overflow: hidden;
}
.get-in-touch::before {
    display: none;
}
.get-in-touch::after {
    display: none;
}
.git-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 30px;
    position: relative; z-index: 1;
}
.git-text h2 { font-size: 26px; color: #fff; font-weight: 700; margin-bottom: 5px; }
.git-text h2 span { color: #ffc107; }
.git-text p { font-size: 14px; color: rgba(255,255,255,0.7); }
.git-form {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.08);
    padding: 10px; border-radius: 10px;
    backdrop-filter: blur(5px);
}
.git-form input {
    padding: 12px 15px; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
    font-size: 13px; font-family: 'Poppins', sans-serif;
    width: 170px; outline: none;
    background: rgba(255,255,255,0.95); color: #333;
    transition: all 0.3s;
}
.git-form input::placeholder { color: #999; }
.git-form input:focus { border-color: #ffc107; box-shadow: 0 0 0 2px rgba(255,193,7,0.2); }
.git-btn {
    padding: 12px 28px; border-radius: 8px;
    font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.3s; cursor: pointer; border: none;
}
.git-btn.whatsapp { background: #25d366; color: #fff; white-space: nowrap; }
.git-btn.whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(37,211,102,0.3); }

@media (max-width: 768px) {
    .git-inner { flex-direction: column; text-align: center; gap: 20px; }
    .git-text h2 { font-size: 20px; }
    .git-form { flex-direction: column; width: 100%; padding: 15px; }
    .git-form input { width: 100%; }
    .git-btn { justify-content: center; width: 100%; }
}

/* ========== SECTION COMMON ========== */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 30px; color: #0d2b5e; font-weight: 700; margin-bottom: 8px; }
.section-title p { font-size: 15px; color: #777; }
.btn-primary {
    display: inline-block; background: #ff5722; color: #fff;
    padding: 12px 30px; border-radius: 5px; font-size: 14px;
    font-weight: 600; transition: all 0.3s;
}
.btn-primary:hover { background: #e64a19; transform: translateY(-2px); }
.btn-primary i { margin-right: 6px; }

/* ========== ABOUT SECTION ========== */
.about { padding: 60px 0; background: #f9f9f9; }
.about-content {
    display: flex; gap: 40px; align-items: center;
}
.about-text { flex: 1; }
.about-text h3 { font-size: 22px; color: #0d2b5e; margin-bottom: 15px; }
.about-text p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 12px; }
.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin: 20px 0 25px;
}
.about-feature {
    font-size: 14px; color: #333;
    display: flex; align-items: center; gap: 8px;
}
.about-feature i { color: #25d366; font-size: 16px; }
.about-img { flex: 1; }
.about-img img { width: 100%; border-radius: 10px; box-shadow: 0 5px 25px rgba(0,0,0,0.1); }

@media (max-width: 768px) {
    .about-content { flex-direction: column; }
    .about-features { grid-template-columns: 1fr; }
    .section-title h2 { font-size: 22px; }
}

/* ========== FLEET SECTION ========== */

/* ========== OCCASION SECTION ========== */
.occasion { padding: 60px 0; background: #fff; }
.occasion-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.occasion-card {
    background: #fff; border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden; transition: transform 0.3s;
    height: 400px;
    display: flex; flex-direction: column;
}
.occasion-card:hover { transform: translateY(-5px); }
.occasion-img {
    position: relative; overflow: hidden;
    height: 250px; flex-shrink: 0;
}
.occasion-img img {
    width: 100%; height: 250px; object-fit: cover;
    object-position: center center;
    transition: transform 0.4s;
}
.occasion-card:hover .occasion-img img { transform: scale(1.08); }
.occasion-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(13,43,94,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.occasion-card:hover .occasion-overlay { opacity: 1; }
.occasion-overlay a {
    background: #25d366; color: #fff; padding: 10px 22px;
    border-radius: 6px; font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
    transition: background 0.3s;
}
.occasion-overlay a:hover { background: #1da851; }
.occasion-card h3 {
    font-size: 17px; color: #0d2b5e; padding: 20px 18px 5px;
}
.occasion-card p {
    font-size: 13px; color: #666; padding: 0 18px 18px;
    line-height: 1.6; margin-top: 5px;
}

@media (max-width: 992px) {
    .occasion-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .occasion-grid { grid-template-columns: 1fr; }
    .occasion-img { height: 200px; }
}

/* ========== FLEET SECTION (continued) ========== */
.fleet { padding: 60px 0; background: #fff; }
.fleet-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.fleet-card {
    background: #fff; border-radius: 10px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    overflow: hidden; transition: transform 0.3s;
}
.fleet-card:hover { transform: translateY(-5px); }
.fleet-img img { width: 100%; height: 250px; object-fit: cover; }
.fleet-info { padding: 20px; }
.fleet-info h3 { font-size: 18px; color: #0d2b5e; margin-bottom: 12px; }
.fleet-info ul { margin-bottom: 15px; }
.fleet-info ul li {
    font-size: 13px; color: #555; padding: 5px 0;
    display: flex; align-items: center; gap: 8px;
}
.fleet-info ul li i { color: #ff5722; width: 16px; text-align: center; }
.fleet-price {
    font-size: 20px; font-weight: 700; color: #ff5722;
    margin-bottom: 15px;
}
.fleet-info .btn-primary { display: block; text-align: center; font-size: 13px; padding: 10px; }

@media (max-width: 992px) {
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .fleet-grid { grid-template-columns: 1fr; }
}

/* ========== SERVICES / ROUTES SECTION ========== */
.services { padding: 60px 0; background: #f9f9f9; }
.routes-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.route-card {
    background: #fff; border-radius: 10px; padding: 25px 20px;
    text-align: center; box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    transition: all 0.3s; border-bottom: 3px solid transparent;
}
.route-card:hover { transform: translateY(-5px); border-bottom-color: #ff5722; }
.route-icon {
    width: 55px; height: 55px; border-radius: 50%;
    background: #fff5f2; color: #ff5722; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
}
.route-card h3 { font-size: 16px; color: #0d2b5e; margin-bottom: 8px; }
.route-card p { font-size: 12px; color: #777; margin-bottom: 12px; }
.route-card a {
    font-size: 13px; color: #ff5722; font-weight: 600;
    transition: color 0.3s;
}
.route-card a:hover { color: #e64a19; }
.route-card a i { margin-left: 4px; font-size: 11px; }

@media (max-width: 992px) {
    .routes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .routes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .routes-grid { grid-template-columns: 1fr; }
}

/* ========== PRICING SECTION ========== */
.pricing { padding: 60px 0; background: #fff; }
.pricing-table-wrap { overflow-x: auto; }
.pricing-table {
    width: 100%; border-collapse: collapse;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08); border-radius: 10px; overflow: hidden;
}
.pricing-table thead { background: #0d2b5e; }
.pricing-table th {
    padding: 15px 20px; color: #fff; font-size: 14px;
    font-weight: 600; text-align: left;
}
.pricing-table td {
    padding: 14px 20px; font-size: 14px; color: #444;
    border-bottom: 1px solid #eee;
}
.pricing-table tbody tr:hover { background: #fff5f2; }
.pricing-table td:first-child { font-weight: 600; color: #0d2b5e; }
.table-btn {
    background: #25d366; color: #fff; padding: 6px 14px;
    border-radius: 4px; font-size: 12px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 5px;
    transition: background 0.3s;
}
.table-btn:hover { background: #1da851; }
.pricing-note {
    text-align: center; font-size: 13px; color: #888;
    margin-top: 20px;
}
.pricing-note i { color: #ff5722; margin-right: 4px; }

/* ========== WHY CHOOSE US ========== */
.why-us { padding: 60px 0; background: #0d2b5e; }
.why-us .section-title h2 { color: #fff; }
.why-us .section-title p { color: #aaa; }
.why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.why-card {
    background: rgba(255,255,255,0.05); border-radius: 10px;
    padding: 30px 25px; text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.why-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(255,87,34,0.15); color: #ff5722;
    font-size: 24px; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 15px;
}
.why-card h3 { font-size: 17px; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 13px; color: #bbb; line-height: 1.7; }

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 60px 0; background: #f9f9f9; }
.testimonial-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.testimonial-card {
    background: #fff; border-radius: 10px; padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); }
.stars { margin-bottom: 12px; }
.stars i { color: #ffc107; font-size: 14px; }
.testimonial-card p { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: #0d2b5e; color: #fff; font-size: 14px;
    font-weight: 600; display: flex; align-items: center;
    justify-content: center;
}
.testimonial-author strong { font-size: 14px; color: #0d2b5e; display: block; }
.testimonial-author span { font-size: 12px; color: #888; }

@media (max-width: 768px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}

/* ========== CONTACT / BOOKING SECTION ========== */
.contact { padding: 60px 0; background: #fff; }
.contact-wrap { display: flex; gap: 30px; }
.contact-form { flex: 1.2; }
.contact-form form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: flex; gap: 12px; }
.form-row input, .form-row select, .contact-form textarea {
    width: 100%; padding: 12px 15px; border: 1px solid #ddd;
    border-radius: 6px; font-size: 14px; font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}
.form-row input:focus, .form-row select:focus, .contact-form textarea:focus {
    border-color: #ff5722; outline: none;
}
.contact-form button { align-self: flex-start; cursor: pointer; border: none; }
.form-group { width: 100%; }
.form-error { color: #e53935; font-size: 11px; display: block; min-height: 16px; padding-top: 3px; }
.form-row input.input-error, .form-row select.input-error { border-color: #e53935; }
.contact-info { flex: 0.8; display: flex; flex-direction: column; gap: 15px; }
.info-card {
    display: flex; align-items: flex-start; gap: 15px;
    padding: 15px; background: #f9f9f9; border-radius: 8px;
}
.info-card i { color: #ff5722; font-size: 20px; margin-top: 3px; }
.info-card h4 { font-size: 14px; color: #0d2b5e; margin-bottom: 3px; }
.info-card p { font-size: 13px; color: #666; }
.info-card a { color: #ff5722; }

@media (max-width: 768px) {
    .contact-wrap { flex-direction: column; }
    .form-row { flex-direction: column; }
}

/* ========== FAQ SECTION ========== */
.faq { padding: 60px 0; background: #f9f9f9; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff; border-radius: 8px; margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); overflow: hidden;
}
.faq-question {
    padding: 16px 20px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 14px; font-weight: 600; color: #0d2b5e;
    transition: background 0.3s;
}
.faq-question:hover { background: #fff5f2; }
.faq-question i { color: #ff5722; font-size: 14px; transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-answer p { padding: 0 20px 16px; font-size: 13px; color: #666; line-height: 1.7; }

/* ========== FOOTER ========== */
.footer { background: #0a1f44; color: #ccc; padding: 50px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
}
.footer-logo { height: 50px; margin-bottom: 15px; }
.footer-col p { font-size: 13px; line-height: 1.7; margin-bottom: 15px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.1); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; transition: background 0.3s;
}
.footer-social a:hover { background: #ff5722; }
.footer-col h4 {
    font-size: 16px; color: #fff; margin-bottom: 18px;
    position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 35px; height: 2px; background: #ff5722;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
    font-size: 13px; color: #aaa; transition: all 0.3s;
}
.footer-col ul li a:hover { color: #ff5722; padding-left: 5px; }
.footer-contact li {
    font-size: 13px; display: flex; align-items: flex-start; gap: 10px;
    color: #aaa;
}
.footer-contact li i { color: #ff5722; margin-top: 3px; width: 16px; }
.footer-contact li a { color: #aaa; }
.footer-contact li a:hover { color: #ff5722; }
.visitor-counter {
    margin-top: 20px; padding: 12px 15px; background: rgba(255,255,255,0.08);
    border-radius: 8px; display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: #ccc;
}
.visitor-counter i { color: #ffc107; font-size: 18px; }
.visitor-counter strong { color: #fff; }
.footer-bottom {
    margin-top: 40px; padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: #777; }
.footer-bottom a { color: #ff5722; font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: 5px; text-align: center; }
}

/* ========== SIDEBAR (Mobile Nav) ========== */
.sidebar-header { display: none; }
.sidebar-contact, .sidebar-social { display: none; }

/* Overlay */
.overlay {
    display: none;
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 998;
}
.overlay.active { display: block; }

/* ========== MOBILE BOTTOM BAR ========== */
.mobile-bottom-bar {
    display: none;
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #0d2b5e; z-index: 997;
    justify-content: space-around; align-items: center;
    padding: 8px 0;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.3);
}
.mobile-bottom-bar a {
    color: #fff; text-align: center; font-size: 10px;
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    transition: color 0.3s;
}
.mobile-bottom-bar a i { font-size: 18px; }
.mobile-bottom-bar a:nth-child(1) i { color: #ff5722; }
.mobile-bottom-bar a:nth-child(2) i { color: #25d366; }
.mobile-bottom-bar a:nth-child(3) i { color: #ffc107; }
.mobile-bottom-bar a:nth-child(4) i { color: #03a9f4; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .nav ul li a { padding: 24px 10px; font-size: 13px; }
}
@media (max-width: 992px) {
    .nav {
        position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
        background: #0d2b5e; flex-direction: column;
        padding: 0; transition: right 0.4s ease; z-index: 999;
        overflow-y: auto;
    }
    .nav.active { right: 0; }

    .sidebar-header {
        display: flex; align-items: center; justify-content: space-between;
        padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
        background: #092350;
    }
    .sidebar-logo { height: 40px; }
    .sidebar-close {
        background: none; border: none; color: #fff; font-size: 22px;
        cursor: pointer; width: 35px; height: 35px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        transition: background 0.3s;
    }
    .sidebar-close:hover { background: rgba(255,87,34,0.3); }

    .nav ul { flex-direction: column; gap: 0; padding: 10px 0; }
    .nav ul li a {
        color: #ddd; display: block;
        padding: 13px 20px; font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-transform: none;
    }
    .nav ul li a::after { display: none; }
    .nav ul li a:hover { background: rgba(255,87,34,0.15); color: #ff5722; padding-left: 28px; }

    .sidebar-contact {
        display: flex; flex-direction: column; gap: 10px;
        padding: 20px;
    }
    .sidebar-btn {
        display: flex; align-items: center; justify-content: center; gap: 8px;
        padding: 12px; border-radius: 8px; color: #fff;
        font-size: 14px; font-weight: 500; transition: transform 0.3s;
    }
    .sidebar-btn:hover { transform: scale(1.03); }
    .sidebar-btn.call { background: #ff5722; }
    .sidebar-btn.whatsapp { background: #25d366; }

    .sidebar-social {
        display: flex; justify-content: center; gap: 15px;
        padding: 15px 20px; border-top: 1px solid rgba(255,255,255,0.1);
    }
    .sidebar-social a {
        color: #fff; width: 38px; height: 38px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        background: rgba(255,255,255,0.1); font-size: 15px;
        transition: background 0.3s;
    }
    .sidebar-social a:hover { background: #ff5722; }

    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); background: #ff5722; }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); background: #ff5722; }
    .header-right { display: none; }
    .mobile-bottom-bar { display: flex; }
    body { padding-bottom: 60px; }
}
@media (max-width: 576px) {
    .topbar-left { flex-direction: column; gap: 4px; }
    .topbar-inner { flex-direction: column; gap: 8px; }
    .topbar-divider { display: none; }
    .logo img { height: 42px; }
    .header-inner { min-height: 55px; }
}
