:root {
    --primary: #0a4da3;
    --secondary: #ffcc00;
    --accent: #e63946;
    --bg: #f6f8fc;
    --card: #ffffff;
    --text: #333;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --dark-text: #e5e7eb;
}

body.dark {
    --bg: var(--dark-bg);
    --card: var(--dark-card);
    --text: var(--dark-text);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    transition: background 0.4s, color 0.4s;
    overflow-x: hidden;
}

/* Popup Selamat Datang */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.welcome-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    transition: transform 0.5s;
    position: relative;
}

.welcome-popup.active .popup-content {
    transform: translateY(0);
}

.popup-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary);
    box-shadow: 0 10px 20px rgba(10, 77, 163, 0.3);
}

.popup-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-content h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.popup-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.popup-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(10, 77, 163, 0.3);
}

.popup-btn:hover {
    background: #083a7a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 77, 163, 0.4);
}

/* Header & Navigation */
header {
    background: linear-gradient(rgba(10, 77, 163, 0.95), rgba(10, 77, 163, 0.98));
    color: white;
    padding: 100px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-image: url('asset/bus.jpeg');
}

.header-content {
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite alternate;
    overflow: hidden;
    border: 3px solid white;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
    position: relative;
    z-index: 3;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 15px;
    position: relative;
    z-index: 3;
    line-height: 1.4;
}

.highlight {
    color: var(--secondary);
    font-weight: 700;
}

.slogan {
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 15px;
    color: var(--secondary);
    font-weight: 600;
    position: relative;
    z-index: 3;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 77, 163, 0.97);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
}

.nav-brand img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary);
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle, .mobile-menu-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.theme-toggle:hover, .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-btn {
    display: none;
}

/* Contact Bar */
.contact-bar {
    background: var(--secondary);
    color: #333;
    text-align: center;
    font-weight: 600;
    padding: 12px;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 64px;
    z-index: 999;
}

.contact-bar a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-bar a:hover {
    color: var(--primary);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title p {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

body.dark .section-title p {
    color: #aaa;
}

/* Routes Section */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.route-card {
    background: var(--card);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.route-card.show {
    opacity: 1;
    transform: translateY(0);
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.route-header {
    background: var(--primary);
    color: white;
    padding: 22px;
    text-align: center;
}

.route-header h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.route-body {
    padding: 22px;
}

.route-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ddd;
}

.route-from, .route-to {
    text-align: center;
}

.city {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.route-arrow {
    display: flex;
    align-items: center;
    color: var(--secondary);
    font-size: 1.6rem;
}

.route-details {
    list-style: none;
    margin-bottom: 22px;
}

.route-details li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.route-details i {
    color: var(--secondary);
    margin-right: 10px;
    width: 18px;
    font-size: 0.9rem;
}

.route-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #16a34a;
    text-align: center;
    margin-top: 18px;
}

/* Unit Counter */
.unit-counter {
    background: var(--card);
    border-radius: 15px;
    padding: 22px;
    text-align: center;
    margin: 25px auto;
    max-width: 550px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--secondary);
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 8px 0;
}

.counter-text {
    font-size: 1.1rem;
    color: #666;
}

body.dark .counter-text {
    color: #aaa;
}

/* Media Slider */
.media-swiper {
    width: 100%;
    height: 450px;
    margin: 35px 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.media-swiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.media-swiper .swiper-slide img,
.media-swiper .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.media-swiper .swiper-slide video {
    max-width: 100%;
    max-height: 100%;
}

/* Armada Card */
.armada-card {
    background: var(--card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.armada-card:hover {
    transform: translateY(-5px);
}

.armada-header {
    background: var(--primary);
    color: white;
    padding: 18px;
    text-align: center;
    flex-shrink: 0;
}

.armada-header h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.armada-body {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.armada-specs {
    list-style: none;
    font-size: 0.85rem;
    margin-bottom: 18px;
    flex-grow: 1;
}

.armada-specs li {
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.armada-specs i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

/* Armada Grid */
.armada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

/* Armada tanpa slider */
.armada-single-image-container {
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    height: 160px;
}

.armada-single-image {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.armada-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.armada-card:hover .armada-single-image img {
    transform: scale(1.05);
}

/* Jasa Pengiriman */
.pengiriman-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.pengiriman-card {
    background: var(--card);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.pengiriman-card:hover {
    transform: translateY(-8px);
}

.pengiriman-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.pengiriman-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.pengiriman-details {
    list-style: none;
}

.pengiriman-details li {
    padding: 7px 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.pengiriman-details i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Button Styles */
.tour-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(10, 77, 163, 0.3);
}

.tour-btn:hover {
    background: #083a7a;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(10, 77, 163, 0.4);
}

.whatsapp-btn {
    background: #25D366;
}

.instagram-btn {
    background: #E4405F;
}

.email-btn {
    background: #EA4335;
}

.text-center {
    text-align: center;
}

.mt-35 {
    margin-top: 35px;
}

/* Layanan 24h */
.layanan-24h {
    background: var(--card);
    border-radius: 15px;
    padding: 25px;
    margin-top: 35px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.layanan-24h h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 18px;
}

.layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    text-align: center;
}

.layanan-icon {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.layanan-grid h4 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.layanan-grid p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.info-note {
    text-align: center;
    margin-top: 18px;
    color: #666;
    font-size: 0.85rem;
}

/* Kontak Grid */
.kontak-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.kontak-card {
    background: var(--card);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.kontak-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.kontak-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.kontak-card p {
    margin-bottom: 18px;
    color: #666;
}

.kontak-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #666;
}

/* Cabang Section */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.branch-card {
    background: var(--card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.branch-map {
    height: 200px;
    position: relative;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(10, 77, 163, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.map-overlay i {
    margin-right: 5px;
}

.open-map-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s;
}

.open-map-btn:hover {
    background: #083a7a;
}

.open-map-btn i {
    margin-right: 5px;
}

.branch-info {
    padding: 22px;
}

.branch-info h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.branch-details {
    list-style: none;
    margin-bottom: 15px;
}

.branch-details li {
    padding: 7px 0;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.branch-details i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 0.9rem;
    width: 16px;
}

/* Operational 24h badge */
.operational-24h {
    display: inline-flex;
    align-items: center;
    background: #16a34a;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-top: 8px;
}

.operational-24h i {
    margin-right: 5px;
    font-size: 0.8rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s infinite;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 25px;
    background: var(--primary);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.footer-logo h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-logo p {
    opacity: 0.9;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.footer-slogan {
    color: var(--secondary);
    font-style: italic;
    margin-top: 10px;
}

.footer-operational {
    margin-top: 15px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--secondary);
    margin-right: 10px;
    width: 18px;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Animations */
@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 5px 25px rgba(37, 211, 102, 0.7); }
    100% { transform: scale(1); box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5); }
}

/* Responsive */
@media (max-width: 1200px) {
    .armada-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    }
}

@media (max-width: 992px) {
    .logo-text {
        font-size: 2.2rem;
    }
    
    .logo-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 18px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
        z-index: 999;
    }
    
    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu a {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .armada-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        padding: 90px 20px 50px;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    .logo-subtitle {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .counter-number {
        font-size: 3rem;
    }
    
    .media-swiper {
        height: 350px;
    }
    
    .armada-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .popup-content {
        padding: 25px 18px;
    }
    
    .popup-content h2 {
        font-size: 1.4rem;
    }
    
    .contact-bar {
        font-size: 0.9rem;
        padding: 10px;
        top: 56px;
    }
}

@media (max-width: 576px) {
    header {
        padding: 80px 15px 40px;
    }
    
    .logo {
        width: 90px;
        height: 90px;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .logo-subtitle {
        font-size: 0.95rem;
    }
    
    .slogan {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 20px;
    }
    
    .media-swiper {
        height: 250px;
    }
    
    .armada-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .armada-single-image-container {
        height: 140px;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pengiriman-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .kontak-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .armada-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .armada-single-image-container {
        height: 130px;
    }
}
/* =============================================
   RENTAL BUS PARIWISATA - INFORMASI UMUM
   ============================================= */

/* Section Rental Bus */
#bus {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.bus-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.bus-section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bus-section-title h2 span {
    color: #4f46e5;
}

.bus-section-title p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #4f46e5;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #475569;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #4f46e5;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefits-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #4f46e5;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    transform: scale(1.1);
}

.benefit-item h4 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    margin: 60px 0;
}

.process-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4f46e5;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #4f46e5;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.process-step h4 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    color: #64748b;
    font-size: 0.95rem;
    max-width: 200px;
    margin: 0 auto;
}

/* CTA Section */
.bus-cta {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.bus-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bus-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.bus-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-whatsapp {
    background: white;
    color: #4f46e5;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-whatsapp:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-call {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-call:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    margin-top: 80px;
}

.faq-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    color: #4f46e5;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    #bus {
        padding: 60px 15px;
    }
    
    .bus-section-title h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .benefits-section {
        padding: 30px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .bus-cta {
        padding: 40px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-whatsapp,
    .cta-call {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .bus-section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .bus-cta h3 {
        font-size: 1.8rem;
    }
    
    .bus-cta p {
        font-size: 1rem;
    }
}

/* Animation Effects */
.service-card,
.benefit-item,
.process-step {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}