:root {
    --primary-color: #05203c;
    --secondary-color: #ff6600;
    --bs-primary: var(--primary-color);
    --bs-secondary: var(--secondary-color);
    --bs-body-font-family: "Noto Sans", sans-serif;
    --bs-body-line-height: 1.6;
    --bs-primary-rgb: 5, 52, 60;
    --bs-secondary-rgb: 255, 102, 0;
    --light-color: #f8f9fa;
    --dark-text: #333;
    --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --fa-display: swap;
}

a {
    color: var(--primary-color);
    transition: all .25s linear;
}

a:hover {
    color: var(--secondary-color);
}

.modal {
    --bs-modal-width: 800px;
}

.btn-theme-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-color);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-bg: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-border-color: var(--secondary-color);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color);
    --bs-btn-disabled-border-color: var(--primary-color);
}

/* Call to Action Button Styles */
.cta-container {
    position: relative;
    margin-left: 2rem;
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.65) 0%, #024a73 100%);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 49, 75, 0.3);
    min-width: 180px;
    cursor: pointer;
    line-height: 1.4;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 49, 75, 0.4);
    background: linear-gradient(135deg, #024a73 0%, var(--primary-color) 100%);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(3, 49, 75, 0.3);
}

.cta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.cta-number {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    /*animation: pulse 2s infinite;*/
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Banner */

.hero {
    position: relative;
    min-height: 350px;
    background-image: linear-gradient(45deg, #ee1f1fdb, #1d2775cd);
    display: flex;
    width: 100%;
    align-items: center;
    background-position: 50% 90%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.hero-body {
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.hero h1,
.hero p {
    color: #fff;
}

.home-hero {
    background-image: url('https://images.unsplash.com/photo-1505228395891-9a51e7e86bf6?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-position: center top;
    min-height: 400px;
}

.hotels-hero {
    background-image: url('../images/hotels-bg.jpg');
}

.car-rentals-hero {
    background-image: url('../images/car-rentals-bg.jpg');
}

section {
    background: #fff;
}

.bg-section {
    background-color: #1d27750f;
}

.accordion-button:focus {
    box-shadow: none;
}


.glass-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    /*overflow: hidden;*/
    width: 100%;
    position: relative;
    z-index: 10;
}

.glass-tabs {
    display: flex;
    padding: 0 0 15px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    /*gap: 10px;*/
    background: rgba(255, 255, 255, 0.05);
}

.glass-tabs .glass-tab:first-child{
    border-top-left-radius: 20px;
}

.glass-tab {
    /*flex: 1;*/
    padding: 5px 10px;
    background: rgba(var(--bs-primary-rgb), 0.9);
    border: none;
    /*border-radius: 12px;*/
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
}

.glass-tab.active {
    background: rgba(var(--bs-secondary-rgb), 0.9);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(var(--bs-secondary-rgb), 0.2);
}

.glass-tab:hover:not(.active) {
    background: rgba(var(--bs-secondary-rgb), 0.8);
}

.glass-form-content {
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.glass-form-section {
    display: none;
}

.glass-form-section.active {
    display: block;
}

.inputLabel {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (max-width: 575px){
    .glass-form-content {
        padding: 15px;
    }
    .glass-tab {
        padding: 4px 8px;
    }
}


/* Header */

.main-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    color: var(--secondary-color);
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.header-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-login {
    color: var(--primary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--primary-color);
    color: white;
}

.btn-signup {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(94, 43, 255, 0.3);
}

/* End Header */


/* Trust Badges */

/*Trust Section*/

.trust-badges {
    display: grid;
    justify-content: center;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.trust-badge {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 230px;
    position: relative;
    overflow: hidden;
}

.trust-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(94, 43, 255, 0.05) 0%, transparent 50%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.trust-badge:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.badge-icon {
    width: 70px;
    height: 70px;
    background: rgba(94, 43, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 2rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.badge-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.badge-description {
    color: #666;
    font-size: 0.75rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .trust-badges{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-badge {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .trust-badges{
        grid-template-columns: repeat(1, 1fr);
    }
    .contact-info {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .badge-title {
        font-size: 1.1rem;
    }
    
    .badge-description {
        font-size: 0.95rem;
    }
}

/* End Trust Badges */


.flight-deals-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #021b34 0%, #05203c 100%);
    overflow: hidden;
  }

  .deals-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
  }

  .deal-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .deal-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  .deal-card:hover .card-image img {
    transform: scale(1.05);
  }

  .discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    font-weight: 700;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
    z-index: 2;
    border: 3px solid white;
  }

  .card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-color), rgba(255, 102, 0, 0.3));
  }

  .destination-info {
    margin-bottom: 20px;
  }

  .destination {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
  }

  .dates {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 1rem;
  }

  .dates::before {
    content: '📅';
    margin-right: 8px;
    font-size: 1.1rem;
  }

  .price-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }

  .original-price {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 15px;
  }

  .sale-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
  }

  .book-btn {
    width: 100%;
    padding: 14px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
    position: relative;
    overflow: hidden;
  }

  .book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
  }

  .book-btn:hover::before {
    left: 0;
  }

  .book-btn:hover {
    background: #e55a00;
  }

  .section-footer {
    text-align: center;
  }

  .footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  .view-all-btn {
    padding: 15px 40px;
    background: transparent;
    color: white;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .view-all-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
  }

  .bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .deals-floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.05;
  }

  .deals-element-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -150px;
    animation: dealsfloat 20s infinite ease-in-out;
  }

  .deals-element-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: 10%;
    animation: dealsfloat 25s infinite ease-in-out reverse;
  }

  .deals-element-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: -100px;
    animation: dealsfloat 22s infinite ease-in-out;
  }

  .deals-element-4 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 30%;
    animation: dealsfloat 18s infinite ease-in-out reverse;
  }

  @keyframes dealsfloat {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(10deg);
    }
  }

  .deals-particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .deals-particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
  }

    
  .section-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .section-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
  }

  .section-subtitle {
    font-size: 1.3rem;
    color: rgba(var(--bs-primary-rgb), 0.8);
    max-width: 700px;
    margin: 0 auto;
  }
    
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .section-subtitle {
      font-size: 1.1rem;
    }
    
    .deals-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .card-image {
      height: 200px;
    }
    
    .destination {
      font-size: 1.6rem;
    }
    
    .sale-price {
      font-size: 1.8rem;
    }
  }
  
  
  /* CTA Strip */
  
  /* Call to Action Strip */
        .cta-strip {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-strip::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/cubes.png');
            opacity: 0.05;
        }

        .cta-strip-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .cta-strip-text {
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
            flex: 1;
            min-width: 250px;
        }

        .cta-strip-text span {
            font-weight: 700;
            color: #ffd700;
        }

        .cta-strip-buttons {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .cta-strip-btn-call {
            background: white;
            color: var(--secondary-color);
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .cta-strip-btn-call:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            background: #f8f9fa;
        }

        .cta-strip-phone-number {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .cta-strip-phone-number:hover {
            color: #ffd700;
            transform: scale(1.05);
        }

        .cta-strip-phone-number i {
            font-size: 1.5rem;
        }

  
  /* End CTA Strip */
  
  /* FAQ Section */
  
    .faq-section {
        padding: 80px 0;
        background: linear-gradient(135deg, rgba(5, 32, 60, 0.05) 0%, rgba(0, 98, 227, 0.05) 100%);
    }
    
    
    /* Search Bar */
        .search-container {
            max-width: 600px;
            margin: 0 auto 50px;
            position: relative;
        }

        .search-input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.25rem rgba(0, 98, 227, 0.25);
        }

        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 1.2rem;
        }

        /* Category Tabs */
        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 50px;
        }

        .category-tab {
            padding: 10px 25px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .category-tab::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transition: left 0.5s ease;
            z-index: -1;
        }

        .category-tab:hover::before,
        .category-tab.active::before {
            left: 0;
        }

        .category-tab:hover,
        .category-tab.active {
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 98, 227, 0.3);
        }

        /* FAQ Accordion */
        .faq-accordion {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .faq-header {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-header:hover {
            background: #f8f9fa;
        }

        .faq-question {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.1rem;
            margin: 0;
            flex: 1;
            padding-right: 20px;
        }

        .faq-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 25px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 25px 25px;
        }

        .faq-answer p {
            color: #666;
            line-height: 1.8;
            margin: 0;
        }

        /* FAQ Categories */
        .faq-category {
            display: inline-block;
            background: rgba(0, 98, 227, 0.1);
            color: var(--secondary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* No Results Message */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            display: none;
        }

        .no-results.show {
            display: block;
        }

        .no-results-icon {
            font-size: 4rem;
            color: #ddd;
            margin-bottom: 20px;
        }

        .no-results-text {
            font-size: 1.2rem;
            color: #999;
        }

        /* Help Section */
        .help-section {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-top: 60px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .help-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .help-text {
            color: #666;
            margin-bottom: 30px;
        }

        .help-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-help {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-contact {
            background: var(--secondary-color);
            color: white;
        }

        .btn-contact:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 98, 227, 0.3);
        }

        .btn-email {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-email:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .category-tabs {
                gap: 10px;
            }
            
            .category-tab {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
            
            .faq-question {
                font-size: 1rem;
            }
            
            .help-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

  /* End FAQ Section */
/*Contact Page*/
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    padding: 40px;
    height: fit-content;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-details .contact-icon {
    font-size: 20px;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 2px;
    width: 24px;
    text-align: center;
}

.contact-details .contact-text {
    flex: 1;
}

.contact-details .contact-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-details .contact-value {
    color: #666;
}

.map-container {
    margin-top: 30px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    padding: 40px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(242, 125, 8, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #024368;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 49, 75, 0.3);
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}


/* Footer Styles */
.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/patterns/cubes.png');
    opacity: 0.2;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    /*filter: brightness(0) invert(1);*/
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-info i {
    color: #fff;
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-contact-info span {
    color: rgba(255, 255, 255, 0.85);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Payment Section */
.payment-section {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.payment-title {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 60px;
    height: 40px;
    background: #fff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.payment-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.payment-icon.visa { color: #1a1f71; }
.payment-icon.mastercard { color: #eb001b; }
.payment-icon.amex { color: #006fcf; }
.payment-icon.paypal { color: #003087; }
.payment-icon.apple-pay { color: #000; }
.payment-icon.gpay { color: #4285f4; }
.payment-icon.cloudflare { color: #f38020; }

/* Disclaimer */
.disclaimer {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.disclaimer a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Decorative Elements */
.footer-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.footer-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.footer-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-title {
        margin-top: 30px;
    }
    
    .payment-icons {
        gap: 10px;
    }
    
    .payment-icon {
        width: 50px;
        height: 35px;
        font-size: 1.5rem;
    }
}


/* Cookie Consent Popup */
.popup-hidden{
    display: none;
}
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    width: 320px;
    max-width: calc(100vw - 40px);
    z-index: 9999;
    transform: translateX(-400px);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-popup.show {
    transform: translateX(0);
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-header i {
    font-size: 1.2rem;
}

.popup-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.popup-body {
    padding: 15px;
}

.popup-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 15px;
}

.popup-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.popup-text a:hover {
    text-decoration: underline;
}

.popup-buttons {
    display: flex;
    gap: 10px;
}

.btn-popup {
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--secondary-color);
    color: white;
}

.btn-accept:hover {
    background: #0052c2;
    transform: translateY(-1px);
}

.btn-decline {
    background: #f0f0f0;
    color: #666;
}

.btn-decline:hover {
    background: #e0e0e0;
}

.btn-settings {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-settings:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-modal .modal-content {
    background: white;
    border-radius: 12px;
    padding: 25px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.cookie-settings-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.cookie-settings-modal .modal-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.3rem;
}

.cookie-settings-modal .close-modal {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-settings-modal .close-modal:hover {
    color: var(--primary-color);
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.cookie-category p {
    color: #666;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--secondary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-settings-modal .modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.btn-modal {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-save {
    background: #f0f0f0;
    color: #666;
}

.btn-save:hover {
    background: #e0e0e0;
}

.btn-accept-all {
    background: var(--secondary-color);
    color: white;
}

.btn-accept-all:hover {
    background: #0052c2;
}


/* Mobile-only sticky CTA button */
.mobile-cta {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    text-align: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.mobile-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
}

.cta-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.9;
}

.cta-number {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.cta-number i.fa-headset::before{
    color: var( --primary-color );
}

/* Phone icon */
.mobile-cta .phone-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    color: var(--primary-color);
}

/* Show only on mobile devices */
@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }
}


/* Responsive */
@media (max-width: 480px) {
    .cookie-popup {
        left: 10px;
        right: 10px;
        width: auto;
    }
}


@media only screen and (min-width: 920px) {
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}