/* ============================================
   css/style.css - COMPLETE FIXED VERSION
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* ============================================
   NAVBAR
   ----------------------------------------
   The old white-navbar rules that used to live here were removed: the
   `.navbar { background: #fff !important }` in particular overrode the
   dark gradient on `.main-navbar`, leaving white links on a white bar.
   All navbar styling now lives in the TOP BAR + MAIN NAVBAR section
   further down this file.
   ============================================ */

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 60px 0 40px;
    background: #fff;
}

.feature-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: #2e7d32;
}

.feature-box .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #fff;
}

.feature-box .icon-wrapper.primary {
    background: linear-gradient(135deg, #1a237e, #283593);
}

.feature-box .icon-wrapper.success {
    background: linear-gradient(135deg, #1f6332, #2e7d32);
}

.feature-box .icon-wrapper.warning {
    background: linear-gradient(135deg, #e65100, #f57c00);
}

.feature-box .icon-wrapper.info {
    background: linear-gradient(135deg, #00695c, #00897b);
}

.feature-box h5 {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.feature-box p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.packages-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1f6332, #8bc34a);
    border-radius: 2px;
}

.package-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    animation: fadeInUp 0.6s ease forwards;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}

.package-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.package-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .card-img-top {
    transform: scale(1.05);
}

.package-card .badge-featured {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f57c00, #f5b342);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
}

.package-card .badge-featured i {
    margin-right: 5px;
}

.package-card .card-body {
    padding: 20px;
}

.package-card .card-title {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.package-card .card-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.package-card .price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2e7d32;
}

.package-card .btn-outline-primary {
    border-color: #2e7d32;
    color: #2e7d32;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-card .btn-outline-primary:hover {
    background: #2e7d32;
    border-color: #2e7d32;
    color: #fff;
}

/* ============================================
   SIGHTSEEING SECTION
   ============================================ */
.sightseeing-section {
    padding: 70px 0;
    background: #fff;
}

.sightseeing-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 0.6s ease forwards;
}

.sightseeing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.sightseeing-card .card-header-custom {
    background: linear-gradient(135deg, #1f6332, #2e7d32);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.sightseeing-card .card-header-custom .count-badge {
    background: rgba(255,255,255,0.2);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
}

.sightseeing-card .point-item {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s ease;
}

.sightseeing-card .point-item:last-child {
    border-bottom: none;
}

.sightseeing-card .point-item:hover {
    background: #f8f9fa;
}

.sightseeing-card .point-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.sightseeing-card .point-name {
    font-weight: 500;
    color: #333;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(46, 125, 50, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    transition: bottom 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-item .gallery-overlay h6 {
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-item .gallery-overlay .gallery-category {
    font-size: 0.8rem;
    opacity: 0.8;
    background: rgba(255,255,255,0.15);
    padding: 2px 12px;
    border-radius: 50px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    transition: all 0.3s ease;
    height: 100%;
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(139, 195, 74, 0.3);
}

.testimonial-card .stars {
    color: #f5b342;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card .stars i {
    margin-right: 3px;
}

.testimonial-card .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(139, 195, 74, 0.4);
}

.testimonial-card .testimonial-author .author-name {
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-card .testimonial-author .author-location {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #1f6332, #2e7d32);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
}

.cta-section .btn-cta {
    display: inline-block;
    padding: 16px 50px;
    background: #fff;
    color: #1f6332;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-section .btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    color: #1f6332;
}

.cta-section .btn-cta i {
    margin-right: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 50px 0 20px;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #8bc34a !important;
}

.footer h5 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    padding-left: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #aaa;
}

.footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ccc;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.footer .social-icons a:hover {
    background: #2e7d32;
    color: #fff;
    transform: translateY(-3px);
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays */
.feature-box:nth-child(1) { animation-delay: 0.1s; }
.feature-box:nth-child(2) { animation-delay: 0.2s; }
.feature-box:nth-child(3) { animation-delay: 0.3s; }
.feature-box:nth-child(4) { animation-delay: 0.4s; }

.package-card:nth-child(1) { animation-delay: 0.1s; }
.package-card:nth-child(2) { animation-delay: 0.2s; }
.package-card:nth-child(3) { animation-delay: 0.3s; }

.sightseeing-card:nth-child(1) { animation-delay: 0.1s; }
.sightseeing-card:nth-child(2) { animation-delay: 0.2s; }
.sightseeing-card:nth-child(3) { animation-delay: 0.3s; }

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-carousel .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel .carousel-item {
        height: 400px;
        min-height: 400px;
    }
    
    .hero-carousel .carousel-caption {
        padding: 20px 25px;
        max-width: 92%;
    }
    
    .hero-carousel .carousel-caption h1 {
        font-size: 1.8rem;
    }
    
    .hero-carousel .carousel-caption .lead {
        font-size: 0.95rem;
    }
    
    .features-section {
        padding: 40px 0 20px;
    }
    
    .feature-box {
        padding: 20px 15px;
    }
    
    .feature-box .icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .packages-section,
    .sightseeing-section,
    .gallery-section,
    .testimonials-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .package-card .card-img-top {
        height: 180px;
    }
    
    .gallery-item img {
        height: 160px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section .btn-cta {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-carousel .carousel-item {
        height: 350px;
        min-height: 350px;
    }
    
    .hero-carousel .carousel-caption {
        padding: 15px 18px;
        max-width: 95%;
        border-radius: 12px;
    }
    
    .hero-carousel .carousel-caption h1 {
        font-size: 1.4rem;
    }
    
    .hero-carousel .carousel-caption .lead {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .hero-carousel .carousel-caption .btn-hero {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .hero-carousel .carousel-caption .badge-group .badge-item {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 30px;
        height: 30px;
        opacity: 0.7;
    }
    
    .hero-carousel .slide-label {
        display: none;
    }
    
    .feature-box h5 {
        font-size: 0.95rem;
    }
    
    .feature-box p {
        font-size: 0.75rem;
    }
    
    .package-card .card-title {
        font-size: 1rem;
    }
    
    .package-card .price-tag {
        font-size: 1.1rem;
    }
    
    .sightseeing-card .point-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-card .testimonial-text {
        font-size: 0.85rem;
    }
    
    .cta-section .btn-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* ============================================
   TOP BAR + MAIN NAVBAR
   (extracted from the old include/navbar.php)
   ============================================ */
/* ============================================
   TOP BAR STYLES
   ============================================ */
.top-bar {
    background: #0d1b2a;
    color: #a8b2c1;
    padding: 6px 0;
    font-size: 0.8rem;
    border-bottom: 2px solid #1f6332;
    position: relative;
    z-index: 1030;
}
.top-bar a {
    color: #a8b2c1;
    text-decoration: none;
    transition: all 0.3s ease;
}
.top-bar a:hover {
    color: #ffffff;
}
.top-bar .divider {
    color: #2a3f4f;
    margin: 0 8px;
}
.top-bar .top-contact i {
    color: #8bc34a;
    margin-right: 5px;
    width: 16px;
}
.top-bar .social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    margin-left: 4px;
    font-size: 0.8rem;
    color: #a8b2c1;
}
.top-bar .social-icons a:hover {
    background: #1f6332;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 99, 50, 0.3);
}

/* ============================================
   MAIN NAVBAR STYLES
   ============================================ */
.main-navbar {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2a3a 100%);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1029;
    transition: all 0.3s ease;
}
.main-navbar.scrolled {
    padding: 6px 0;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.main-navbar .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}
.main-navbar .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1f6332, #2e7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.6rem;
    color: #fff;
    transition: all 0.5s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(31, 99, 50, 0.3);
}
.main-navbar .logo-icon i {
    transform: rotate(0deg);
    transition: transform 0.6s ease;
}
.main-navbar .navbar-brand:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(31, 99, 50, 0.5);
}
.main-navbar .navbar-brand:hover .logo-icon i {
    transform: rotate(360deg);
}
.main-navbar .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.main-navbar .logo-text .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
}
.main-navbar .logo-text .brand-name .highlight {
    color: #8bc34a;
}
.main-navbar .logo-text .brand-tagline {
    font-size: 0.65rem;
    color: #8bc34a;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0.8;
}

/* Nav Links */
.main-navbar .nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}
.main-navbar .nav-link i {
    margin-right: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.main-navbar .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.06);
}
.main-navbar .nav-link:hover i {
    transform: translateY(-2px);
    color: #8bc34a;
}
.main-navbar .nav-link.active {
    color: #ffffff !important;
    background: rgba(31, 99, 50, 0.2);
}
.main-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 3px;
    background: #8bc34a;
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from { width: 0; opacity: 0; }
    to { width: 25px; opacity: 1; }
}

/* Book Now Button */
.main-navbar .btn-book {
    background: linear-gradient(135deg, #1f6332, #2e7d32);
    border: none;
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(31, 99, 50, 0.3);
}
.main-navbar .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(31, 99, 50, 0.5);
    color: #ffffff;
    background: linear-gradient(135deg, #2e7d32, #388e3c);
}
.main-navbar .btn-book i {
    margin-right: 6px;
}

/* Admin Button */
.main-navbar .btn-admin {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}
.main-navbar .btn-admin:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border-color: rgba(255,255,255,0.3);
}
.main-navbar .btn-admin i {
    margin-right: 4px;
    font-size: 0.7rem;
}

/* Notification Badge */
.main-navbar .nav-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #dc3545;
    color: #fff;
    font-size: 0.55rem;
    padding: 1px 6px;
    border-radius: 10px;
    font-weight: 700;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile Toggle */
.main-navbar .navbar-toggler {
    border: 2px solid rgba(255,255,255,0.2);
    padding: 6px 10px;
    border-radius: 8px;
}
.main-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(31, 99, 50, 0.3);
}
.main-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991px) {
    .top-bar .top-contact {
        text-align: center;
        margin-bottom: 4px;
        font-size: 0.7rem;
    }
    .top-bar .social-icons {
        text-align: center;
    }
    .top-bar .social-icons a {
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 0.7rem;
    }
    .main-navbar .navbar-brand {
        flex: 1;
    }
    .main-navbar .logo-text .brand-name {
        font-size: 1.2rem;
    }
    .main-navbar .logo-text .brand-tagline {
        font-size: 0.55rem;
    }
    .main-navbar .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 10px;
    }
    .main-navbar .nav-link.active::after {
        display: none;
    }
    .main-navbar .nav-link {
        padding: 8px 15px !important;
    }
    .main-navbar .btn-book,
    .main-navbar .btn-admin {
        margin-top: 5px;
        width: 100%;
        text-align: center;
    }
    .main-navbar .nav-badge {
        position: relative;
        top: -2px;
        right: 0;
        margin-left: 5px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        font-size: 0.6rem;
        padding: 4px 0;
    }
    .top-bar .divider {
        margin: 0 3px;
    }
    .top-bar .top-contact i {
        width: 12px;
        font-size: 0.6rem;
    }
    .top-bar .social-icons a {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: 0.6rem;
    }
    .main-navbar {
        padding: 6px 0;
    }
    .main-navbar .logo-text .brand-name {
        font-size: 1rem;
    }
    .main-navbar .logo-text .brand-tagline {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }
    .main-navbar .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-right: 8px;
    }
}


/* ============================================
   STATIC-SITE ADDITIONS
   ============================================ */

/* Footer WhatsApp / contact links */
.footer a.footer-contact,
.footer a.text-light { text-decoration: none; }
.footer a.footer-contact:hover,
.footer a.text-light:hover { color: #8bc34a !important; }
.footer .btn-footer-wa {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 9px 22px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.footer .btn-footer-wa:hover {
    background: #1ebe5b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
}
.footer .btn-footer-wa i { margin-right: 7px; }

/* Floating WhatsApp button */
.wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
    z-index: 1040;
    transition: all 0.3s ease;
}
.wa-float:hover {
    background: #1ebe5b;
    color: #fff;
    transform: scale(1.08);
}
@media (max-width: 576px) {
    .wa-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 16px; right: 16px; }
}

/* Testimonial initials (replaces the missing avatar images) */
.avatar-initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #013565, #1f6332);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* "Price on request" treatment */
.price .on-request,
.detail-price .on-request {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Empty / loading state for JS-rendered grids */
.data-empty {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
    padding: 50px 20px;
    color: #6c757d;
}
.data-empty i { font-size: 2.5rem; margin-bottom: 12px; opacity: 0.4; display: block; }


/* ============================================
   FLEET PAGE (cars.html)
   These classes were referenced by the page but
   never defined anywhere — filled in here using
   the site's existing palette.
   ============================================ */
:root {
    --primary-blue: #013565;
    --primary-green: #1f6332;
    --accent-green: #8bc34a;
    --soft-cream: #fdfbf6;
}

.bg-soft-cream { background: var(--soft-cream); }
.text-forest { color: var(--primary-green) !important; }

.badge.bg-tea-green {
    background: var(--primary-green) !important;
    color: #fff;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.location-tag {
    display: inline-block;
    background: rgba(31, 99, 50, 0.1);
    color: var(--primary-green);
    padding: 7px 20px;
    border-radius: 25px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.location-tag i { margin-right: 6px; }

.icon-circle {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(1, 53, 101, 0.25);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.1);
}
.feature-item i { color: var(--primary-green); font-size: 1.2rem; }

/* Entrance animation. Pure CSS on purpose — the old JS observer that
   powered this was deleted with the backend, and an opacity:0 default
   would have left the page blank without it. */
.fade-up {
    animation: fadeUp 0.6s ease both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .fade-up { animation: none; }
}

/* cars.html uses .package-card as a plain card wrapper (no .image-wrapper),
   so give it sane padding in that context. */
.package-card > .card-body { padding: 26px 22px; }

/* Footer credit line */
.footer .footer-credit {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2px;
}
.footer .footer-credit a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(139, 195, 74, 0.4);
    transition: all 0.3s ease;
}
.footer .footer-credit a:hover {
    color: #8bc34a;
    border-bottom-color: #8bc34a;
}
