/* =========================================
   1. HEADER STYLES
   ========================================= */
.header-top {
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

.main-header .header-top .top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Social Icons */
.social-top {
    display: flex;
    gap: 20px;
}

.social-top a {
    color: #ffffff !important;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-top a:hover {
    color: #ff5522 !important;
}

/* Contact Info Text */
.main-header .header-top .top-left .info li,
.main-header .header-top .top-left .info li a {
    color: #ffffff;
}
.main-header .header-top .top-left .info li a:hover {
    color: #ff5522;
}

/* Navigation & Button */
.main-menu {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-outer {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.btn-book-header {
    background-color: #ff5522;
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-book-header:hover {
    background-color: #333;
    color: #fff;
}

/* =========================================
   2. FOOTER STYLES
   ========================================= */
.main-footer {
    background-color: #111111;
    color: #b2b2b2;
    padding-top: 70px;
    padding-bottom: 0px !important; 
    position: relative;
}

.main-footer .bg-layer {
    display: none; 
}

.main-footer h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.main-footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: #ff5522;
}

/* Links */
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #b2b2b2; font-size: 15px; transition: all 0.3s ease; text-decoration: none; }
.footer-links a:hover { color: #ff5522; padding-left: 5px; }

/* Contact */
.footer-contact-info { list-style: none; padding: 0; }
.footer-contact-info li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #b2b2b2;
    font-size: 14px;
    line-height: 1.6;
}
.footer-contact-info i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #ff5522;
    font-size: 16px;
}

/* Socials */
.footer-socials { margin-top: 25px; }
.footer-socials a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #222;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}
.footer-socials a:hover { background: #ff5522; color: #fff; }

/* Copyright Bar */
.proper-footer {
    background-color: #0d0d0d;
    padding: 25px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    color: #777;
    font-size: 14px;
    text-align: center;
}

/* =========================================
   3. FLOATING BUTTONS
   ========================================= */
.float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.float.call {
    background-color: #2196F3;
    bottom: 155px;
    animation: pulsing-blue 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    box-shadow: 0 0 0 0 #2196F3;
}

.float.whatsapp {
    box-shadow: 0 0 0 0 #25d366;
}

.my-float { margin: 0; }

@keyframes pulsing {
    to { box-shadow: 0 0 0 30px rgba(37, 211, 102, 0); }
}

@keyframes pulsing-blue {
    to { box-shadow: 0 0 0 30px rgba(33, 150, 243, 0); }
}

@media (max-width: 768px) {
    .float {
        width: 50%;
        height: 60px;
        bottom: 0;
        border-radius: 0;
        box-shadow: none;
        font-size: 24px;
    }
    .float.whatsapp { left: 0; right: auto; }
    .float.call { left: 50%; bottom: 0; right: 0; }
    body { padding-bottom: 60px; }
}

/* =========================================
   4. HOME HERO SECTION
   ========================================= */
.custom-hero-section {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
}

.hero-carousel-item {
    height: 85vh; 
    min-height: 600px;
    position: relative;
    background-color: #000;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; 
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    padding: 20px;
    padding-top: 150px;
}

.hero-subtitle {
    color: #ff5522; 
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-in-out;
}

.hero-title {
    color: #fff;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s ease-in-out;
}

.hero-text {
    color: #f0f0f0;
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 1.4s ease-in-out;
}

.hero-btn-box {
    animation: fadeInUp 1.6s ease-in-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-carousel-item { height: 70vh; min-height: 500px; }
}

/* =========================================
   5. CAR CARDS & GRIDS
   ========================================= */
.car-section {
    padding: 60px 0;
    background-color: #f4f5f8;
}

.car-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.car-img-box {
    height: 220px;
    width: 100%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.car-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.car-card:hover .car-img-box img { transform: scale(1.05); }

.car-content { padding: 20px; text-align: center; }
.car-title { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: #222; }

/* Common Action Buttons */
.action-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.btn-action {
    flex: 1;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
}

.btn-whatsapp { background-color: #25D366; color: #fff !important; border: 1px solid #25D366; }
.btn-whatsapp:hover { background-color: #1ebc57; color: #fff; }

.btn-call { background-color: #007bff; color: #fff !important; border: 1px solid #007bff; }
.btn-call:hover { background-color: #0056b3; color: #fff; }

.btn-know-more { background-color: transparent; color: #ff5522 !important; border: 1px solid #ff5522; }
.btn-know-more:hover { background-color: #ff5522; color: #fff !important; }

.btn-contact-card { background-color: #ff5522; color: #fff !important; border: 1px solid #ff5522; }
.btn-contact-card:hover { background-color: #e04415; color: #fff; }

/* =========================================
   6. PACKAGE CARDS & GRIDS
   ========================================= */
.packages-section {
    padding-top: 50px;
    padding-bottom: 70px;
    background-color: #f8f9fa;
    position: relative;
    margin-top: 5px; 
    z-index: 2;
    border-radius: 30px 30px 0 0;
}

.package-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: none;
}

.package-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.package-carousel-box { height: 230px; overflow: hidden; position: relative; }
.package-carousel-box img { width: 100%; height: 230px; object-fit: cover; }

.package-content { padding: 25px; }

.package-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
    line-height: 1.3;
    height: 52px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.package-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.package-meta i { color: #ff5522; margin-right: 8px; width: 16px; }

.package-price {
    color: #ff5522;
    font-weight: 800;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 20px;
    display: block;
}

/* =========================================
   7. MODAL STYLES
   ========================================= */
.modal-backdrop.show { opacity: 0.5; z-index: 1040; }
.modal { z-index: 1050; }
.modal-content { border-radius: 15px; border: none; }
.modal-header { border-bottom: 1px solid #eee; background-color: #f9f9f9; border-radius: 15px 15px 0 0; }
.modal-body-content { display: flex; flex-wrap: wrap; gap: 20px; }
.modal-img { flex: 1 1 300px; }
.modal-img img { width: 100%; border-radius: 10px; }
.modal-details { flex: 1 1 300px; }
.detail-item { margin-bottom: 10px; font-size: 16px; }
.detail-item strong { color: #333; width: 100px; display: inline-block; }

.modal-carousel-box {
    height: 350px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.modal-carousel-box img { width: 100%; height: 350px; object-fit: cover; }

/* =========================================
   8. OWL CAROUSEL NAV FIX
   ========================================= */
.owl-carousel .owl-nav button span {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    color: #fff !important;
    display: inline-block;
}

.owl-carousel .owl-nav button span.fa-angle-right::before { content: "\f105" !important; }
.owl-carousel .owl-nav button span.fa-angle-left::before { content: "\f104" !important; }

.owl-theme .owl-nav [class*='owl-'] {
    background: #ff5522 !important;
    border-radius: 5px !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 5px;
    padding: 0 !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.owl-theme .owl-nav [class*='owl-']:hover { background: #333 !important; }

/* =========================================
   9. BUTTON ICON FIX (ARROWS)
   ========================================= */
/* Force Font Awesome Family on Button Icons */
.theme-btn .icon, 
.btn-style-one .icon, 
.btn-style-two .icon {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Force the correct Right Arrow Code */
.theme-btn .icon.fa-angle-right::before,
.theme-btn .icon.fa-angle-right:before {
    content: "\f105" !important;
}

/* Force the correct Left Arrow Code (if used) */
.theme-btn .icon.fa-angle-left::before,
.theme-btn .icon.fa-angle-left:before {
    content: "\f104" !important;
}