        :root {
            --primary-blue: #1e3a8a;
            --primary-orange: #ff6b35;
            --dark-gray: #2d3748;
            --light-gray: #f7fafc;
            --text-gray: #4a5568;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-gray);
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-toggler {
            background-color: #233c82;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: white !important;
        }

        .navbar-nav .nav-link {
            color: #294285 !important;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-orange) !important;
        }

        .phone-number {
            color: white;
            margin-right: 1rem;
            display: flex;
            align-items: center;
        }

        .btn-book {
            background-color: var(--primary-orange);
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-book:hover {
            background-color: #e65a2a;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(30, 59, 138, 0.471)),
                url('../images/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            min-height: 600px;
            display: flex;
            align-items: center;
            padding: 2rem 0;
            position: relative;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(45deg,
                    rgba(255, 255, 255, 0.01),
                    rgba(255, 255, 255, 0.02) 10px,
                    transparent 10px,
                    transparent 20px);
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }

        .btn-search {
            background-color: var(--primary-orange);
            color: white;
            border: none;
            padding: 0.875rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            width: 100%;
            transition: all 0.3s ease;
        }

        .btn-search:hover {
            background-color: #e65a2a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        /* Statistics Section */
        .statistics-section {
            background-color: var(--light-gray);
            padding: 4rem 0;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
        }

        .stat-icon {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        /* Features Section */
        .features-section {
            padding: 2rem 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-align: center;
            margin-bottom: 3rem;
        }

        .feature-card {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            margin-bottom: 2rem;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-orange);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-orange), #ff8c5a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .feature-description {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Locations Section */
        .locations-section {
            background-color: var(--light-gray, #f7f9fc);
            padding: 3rem 0;
        }
         .locations-section .btn-search{
            border-top-left-radius: 0px;
            border-top-right-radius: 0px; 
        }

        /* Section title */
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 2rem;
        }

        /* Card base */
        .location-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            background-size: cover;
            background-position: center;
            transition: all 0.4s ease; 
              border-bottom-left-radius: 0px;
            border-bottom-right-radius: 0px;
        }

        .location-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(30, 58, 138, 0.2);
            /* overlay */
            transition: all 0.4s ease;
        }

        .location-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .location-card:hover::before {
            background: rgba(30, 58, 138, 0.8);
        }

        /* Card content */
        .location-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            color: #fff;
            text-align: center;
            padding: 2rem;
            transition: transform 0.4s ease;
        }

        .location-card:hover .location-content {
            transform: translateY(-5px);
        }

        .location-name {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .location-description {
            font-size: 1.05rem;
            opacity: 0.9;
        }

        /* Background images */
        .location-card.ny {
            background-image: url('../images/New-York-Bay.webp');
        }

        .location-card.la {
            background-image: url('../images/Los-Angeles.jpg');
        }

        .location-card.lv {
            background-image: url('../images/Las-Vegas.avif');
        }

        .location-card.miami {
            background-image: url('../images/Miami.jpg');
        }

        .location-card.sf {
            background-image: url('../images/Washington.jpg');
        }

        .location-card.chicago {
            background-image: url('../images/sydney.jpg');
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .location-card {
                height: 200px;
            }

            .location-name {
                font-size: 1.4rem;
            }

            .location-description {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.5rem;
            }

            .location-card {
                height: 180px;
            }
        }


        /* How It Works Section */
        .how-it-works-section {
            padding: 2rem 0;
        }

        .step-card {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .step-description {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials-section {
            background-color: var(--light-gray);
            padding: 2rem 0;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            margin: 0 1rem;
        }

        .testimonial-rating {
            color: #fbbf24;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary-blue);
            font-size: 1.1rem;
        }

        /* Footer */
        .footer {
            background-color: var(--dark-gray);
            color: rgba(255, 255, 255, 0.8);
            padding: 4rem 0 2rem;
        }

        .footer h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 0.75rem;
        }

        .footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer ul li a:hover {
            color: var(--primary-orange);
        }


        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.75rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.875rem;
            }

            .booking-form {
                padding: 1.5rem;
            }

            .phone-number {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 22px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Policy Pages Styles */
        .policy-content {
            padding-top: 76px;
        }

        .policy-content #policy-hero {
            min-height: 300px;
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(30, 58, 138, 0.8));
        }

        .policy-content .hero-content {
            padding: 4rem 0;
        }

        .policy-section {
            color: var(--text-gray);
            line-height: 1.7;
        }

        .policy-section h2 {
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .policy-section h3 {
            color: var(--primary-blue);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .policy-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .policy-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-orange);
        }

        .policy-card ul {
            list-style: none;
            padding-left: 0;
        }

        .policy-card ul li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .policy-card ul li:before {
            content: "•";
            color: var(--primary-orange);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .policy-notice {
            background-color: rgba(255, 107, 53, 0.1);
            border-left: 4px solid var(--primary-orange);
            padding: 1.5rem;
            border-radius: 0 10px 10px 0;
        }

        .policy-updates {
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .policy-content #policy-hero {
                min-height: 200px;
            }

            .policy-content .hero-content {
                padding: 2rem 0;
            }

            .policy-section h2 {
                font-size: 1.5rem;
            }

            .policy-section h3 {
                font-size: 1.2rem;
            }
        }

        /* Contact Page Styles */
        .contact-form-wrapper {
            border: 1px solid #e2e8f0;
            border-radius: 15px;
        }

        .contact-form-wrapper .form-control,
        .contact-form-wrapper .form-select {
            padding: 0.75rem 1rem;
            border-color: #e2e8f0;
        }

        .contact-form-wrapper .form-control:focus,
        .contact-form-wrapper .form-select:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
        }

        .map-wrapper {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* FAQ Accordion Styles */
        .accordion-item {
            border: 1px solid #e2e8f0;
            margin-bottom: 0.5rem;
        }

        .accordion-button {
            padding: 1.25rem;
            font-weight: 500;
            color: var(--primary-blue);
        }

        .accordion-button:not(.collapsed) {
            background-color: rgba(255, 107, 53, 0.1);
            color: var(--primary-orange);
        }

        .accordion-button:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6b35'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        #contact-hero {
            min-height: 400px;
        }

        @media (max-width: 768px) {
            #contact-hero {
                min-height: 300px;
            }

            .contact-form-wrapper {
                margin-bottom: 2rem;
            }
        }

        /* Loading animation */
        .form-control.loading {
            background-image: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        /* logo  */
        .car-brands {
            text-align: center;
            background: #fff;
            padding: 20px 20px;
        }

        .car-brands h2 {
            font-size: 22px;
            font-weight: 500;
            color: #1f3c77;
            margin-bottom: 40px;
            line-height: 1.4;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(99px, 1fr));
            align-items: center;
            justify-items: center;
            gap: 30px 50px;
            max-width: 1320px;
            margin: 0 auto;
        }

        .brands-grid img {
            max-width: 120px;
            height: auto;
            transition: transform 0.3s ease;
        }

        .brands-grid img:hover {
            transform: scale(1.05);
        }

        .step-card span {
            font-size: 16px;
            color: var(--primary-orange);
            font-weight: 600;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .car-brands h2 {
                font-size: 18px;
            }

            .brands-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .brands-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px; 
                justify-content: center;
            }

            .brands-grid img {
                max-width: 100px;
            }
        }

        .hide-on-mobile {
            display: block;
        }

        @media (max-width: 768px) {
            .hide-on-mobile {
                display: none;
            }

            .hero-section {
                min-height: 300px;
            }

            .features-section .row {
                gap: 15px;
            }

            .mob-nav {
                width: 95%;
                margin-right: auto;
                margin-left: auto;
                border-radius: 15px;
                margin-top: 10px;
            }
        }

        .carousel-item {
            padding-bottom: 40px;
        }

        .carousel-indicators [data-bs-target] {
            background-color: var(--primary-orange);
        } 
/* bottom CTA */ 
.bottom-banner {
  background: #ffeaea;
  border: 2px solid #e74c3c;
      z-index: 10;
    box-shadow: 0 -1px 3px #ffe0ce;
  border-radius: 8px;
  padding: 8px 10px;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: bold; 
  bottom: 2px;
  left: 1%;
  width: 98%;
  
}

.banner-left img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.banner-middle {
  flex: 1;
  text-align: center;
  padding: 0 10px;
  color: #000000;
  font-size: 11px;
} 
.banner-middle strong {
  display: block;
  font-size: 16px;
  margin-top: 4px;
  color: #e74c3c;
}

.banner-middle .discount {
  color: #fff;
  background: #28a745;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.banner-right .call-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #28a745;
  color: #fff;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
}
        /* call  */ 

    .callIcon1 {
        position: relative;
        right: 8px;
        top: 1px;
    }

        .callIcon1 a._phonebox {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background-color: #c60001;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #106e00;
            animation: zoom-in-zoom-out 2s ease-out infinite;
            text-decoration: none;
        }

        .callIcon1 a {
            color: #000;
            font-size: 12px;
            font-weight: 600;
            text-align: center;
            display: block;
            padding-bottom: 1px;
            line-height: 25px;
            position: relative;
            top: -1px;
            z-index: 10;
        }

    .wifi-symbol {
        display: block;
        position: absolute;
        top: 6px;
        left: 12px;
        display: inline-block;
        height: 36px;
    }

        .wifi-symbol .wifi-circle.first {
            -o-animation-delay: 800ms;
            -moz-animation-delay: 800ms;
            -webkit-animation-delay: 800ms;
            animation-delay: 800ms;
            width: 15px;
            height: 15px;
            left: 16px;
            top: 0px;
        }

        .wifi-symbol .wifi-circle {
            box-sizing: border-box;
            -moz-box-sizing: border-box;
            display: block;
            width: 100%;
            height: 100%;
            font-size: 21.4285714286px;
            position: absolute;
            bottom: 0;
            left: 0;
            border-color: #fff;
            border-style: solid;
            border-width: 2px 2px 0 0;
            -webkit-border-radius: 0 100% 0 0;
            border-radius: 0 100% 0 0;
            opacity: 0;
            -o-animation: wifianimation 2.5s infinite;
            -moz-animation: wifianimation 2.5s infinite;
            -webkit-animation: wifianimation 2.5s infinite;
            animation: wifianimation 2.5s infinite;
        }

            .wifi-symbol .wifi-circle.second {
                width: 12px;
                height: 12px;
                -o-animation-delay: 400ms;
                -moz-animation-delay: 400ms;
                -webkit-animation-delay: 400ms;
                animation-delay: 400ms;
                left: 14px;
                top: 5px;
            }

            .wifi-symbol .wifi-circle.third {
                width: 8px;
                height: 8px;
                left: 12px;
                top: 10px;
            }

        .wifi-symbol .fourth {
            width: 30px;
            height: 36px;
            background: url(https://www.redumbrellaholidays.com/Content/images/animatePhone.png) left center no-repeat;
            background-size: 20px;
            display: inline-block;
        }

    @keyframes zoom-in-zoom-out {
        0% {
            transform: scale(1, 1);
        }

        50% {
            transform: scale(1.3, 1.3);
        }

        100% {
            transform: scale(1, 1);
        }
    }

    @keyframes wifianimation {

        0% {
            opacity: 1;
        }

        5% {
            opactiy: 1;
        }

        6% {
            opactiy: .8;
        }

        100% {
            opactiy: .8;
        }
    }

    ._txtpuk small {
        font-size: 11px;
    }

    .stickybottom_uk {
        padding-top: 6px;
        padding-bottom: 4px;
    }
@media (min-width:500px){
    .bottom-banner{
        display : none;
    }
} 


/* Cancellation Policy Page Styles */
.cancellation-policy-main {
    background: #f7fafc;
    padding: 3rem 0;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(30,58,138,0.07);
}
.cancellation-policy-main h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.cancellation-policy-main ul {
    background: #fff;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 1px 4px rgba(30,58,138,0.05);
    margin-bottom: 1.5rem;
}
.cancellation-policy-main ul li {
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}
.cancellation-policy-main p, .cancellation-policy-main address {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}
.cancellation-policy-main address {
    background: #fff;
    border-left: 4px solid var(--primary-orange);
    padding: 1rem 1.5rem;
    border-radius: 0 10px 10px 0;
    font-style: normal;
}
.cancellation-policy-main a {
    color: var(--primary-orange);
    text-decoration: underline;
}
.cancellation-policy-main a:hover {
    color: var(--primary-blue);
    text-decoration: none;
}
@media (max-width: 768px) {
    .cancellation-policy-main {
        padding: 1.5rem 0.5rem;
    }
    .cancellation-policy-main h2 {
        font-size: 1.2rem;
    }
    .cancellation-policy-main ul {
        padding: 0.75rem 1rem;
    }
}