
       

        /* HERO SECTION - FULL WIDTH FIX */
        .travel-hero {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            background: #000;
            /* Remove any margins and padding that might cause spacing */
            margin: 0 !important;
            padding: 0 !important;
        }

        /* Container override for full width */
        .travel-hero .container-fluid {
            padding: 0 !important;
            margin: 0 !important;
            max-width: 100% !important;
        }

        .carousel-inner {
            height: 100vh;
        }

        .carousel-item {
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .carousel-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
            z-index: 1;
        }

        .carousel-item:nth-child(1) {
            background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 30%), color-mix(in srgb, var(--background-color), transparent 30%)), url("../img/hero/image-2.jpg") center center no-repeat
        }
        .carousel-item:nth-child(2) {
            background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 30%), color-mix(in srgb, var(--background-color), transparent 30%)), url("../img/hero/image-3.jpg") center center no-repeat
        }
        .carousel-item:nth-child(3) {
            background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 30%), color-mix(in srgb, var(--background-color), transparent 30%)), url("../img/hero/image-2.jpg") center center no-repeat
        }
        .carousel-item:nth-child(4) {
            background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 30%), color-mix(in srgb, var(--background-color), transparent 30%)), url("../img/hero/image-3.jpg") center center no-repeat
        }
        .carousel-item:nth-child(5) {
            background: linear-gradient(color-mix(in srgb, var(--background-color), transparent 30%), color-mix(in srgb, var(--background-color), transparent 30%)), url("../img/hero/image-2.jpg") center center no-repeat
        }

        .carousel-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            color: var(--contrast-color);
            /* Add proper container padding here instead */
            padding: 0 50px;
        }

        .hero-content-index {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .carousel-item.active .hero-content-index {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-content-index h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--contrast-color);
            animation-delay: 0.2s;
        }

        .hero-content-index .lead {
            font-size: 1.25rem;
            max-width: 600px;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            animation-delay: 0.4s;
        }

        .hero-buttons {
            animation-delay: 0.6s;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-right: 15px;
        }

        .btn-primary {
            background-color: var(--accent-color);
            border: 2px solid var(--accent-color);
            color: var(--contrast-color);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: var(--contrast-color);
        }

        .btn-outline-light {
            background-color: transparent;
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
        }

        .btn-outline-light:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .trust-badges {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
            animation-delay: 0.8s;
        }

        .carousel-item.active .trust-badges {
            opacity: 1;
            transform: translateX(0);
        }

        .badges-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .badge-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .badge-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .badge-icon {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
        }

        .badge-content h4 {
            color: var(--contrast-color);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .badge-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.4;
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0.8;
            transition: all 0.3s ease;
            top: 50%;
            transform: translateY(-50%);
        }

        .carousel-control-prev {
            left: 30px;
        }

        .carousel-control-next {
            right: 30px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.2);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            bottom: 30px;
            margin-bottom: 0;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.5);
            background: transparent;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .carousel-indicators .active {
            background: var(--accent-color);
            border-color: var(--accent-color);
            opacity: 1;
            transform: scale(1.2);
        }

        /* Progress Bar */
        .slide-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: var(--accent-color);
            width: 0%;
            transition: width 5s linear;
            z-index: 3;
        }

        .carousel-item.active .slide-progress {
            width: 100%;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content-index h1 {
                font-size: 2.5rem;
            }
            
            .badges-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .badge-item {
                padding: 1rem;
            }

            .carousel-content {
                padding: 0 30px;
            }
        }

        @media (max-width: 768px) {
            .travel-hero {
                min-height: 80vh;
            }
            
            .carousel-inner {
                height: 80vh;
            }
            
            .hero-content-index {
                text-align: center;
            }

            .hero-content-index h1 {
                font-size: 2rem;
            }

            .hero-content-index .lead {
                font-size: 1rem;
            }

            .badges-grid {
                grid-template-columns: 1fr;
                margin-top: 2rem;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 50px;
                height: 50px;
            }
            
            .carousel-control-prev {
                left: 15px;
            }
            
            .carousel-control-next {
                right: 15px;
            }

            .carousel-content {
                padding: 0 20px;
            }
        }

        /* Remove any default Bootstrap margins that might interfere */
        .row {
            margin: 0 !important;
        }

        .col-lg-8, .col-lg-4 {
            padding: 0 15px;
        }

        /* Animation Classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .carousel-item.active .fade-in-up {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-up:nth-child(1) { animation-delay: 0.1s; }
        .fade-in-up:nth-child(2) { animation-delay: 0.3s; }
        .fade-in-up:nth-child(3) { animation-delay: 0.5s; }
        .fade-in-up:nth-child(4) { animation-delay: 0.7s; }

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.8s ease;
        }

        .carousel-item.active .fade-in-right {
            opacity: 1;
            transform: translateX(0);
        }