/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    /* Color Tokens - Exact from Figma */
    --primary-color: #FCB722;
    --secondary-color: #080A0D;
    --dark-bg: #050505;
    --dark-bg-2: #1F2226;
    --text-light: #FFFFFF;
    --text-gray-100: #FAFAFA;
    --text-gray-200: #F1F2F3;
    --text-gray-300: #A4A7AE;
    --text-gray-400: #717680;
    --text-gray-500: #414651;
    --text-dark: #080A0D;
    --card-bg: #FAFAFA;
    --card-dark: #050505;
    --border-default: #E9EAEB;
    --border-dark: #262626;
    --border-gray: #272727;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.15);

    /* Font Sizes - Exact from Figma */
    --font-size-title-1: 36px;
    --font-size-h1: 24px;
    --font-size-h2: 22px;
    --font-size-h3: 20px;
    --font-size-h4: 18px;
    --font-size-h5: 16px;
    --font-size-body-1: 14px;
    --font-size-body-2: 12px;

    /* Spacing - Exact from Figma */
    --spacing-8: 8px;
    --spacing-12: 12px;
    --spacing-16: 16px;
    --spacing-20: 20px;
    --spacing-24: 24px;
    --spacing-30: 30px;
    --spacing-40: 40px;
    --spacing-50: 50px;
    --spacing-60: 60px;

    /* Border Radius */
    --radius-14: 14px;
    --radius-16: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: calc(1320px + var(--bs-gutter-x, 2rem)) !important;
}

.mb-40 {
    margin-bottom: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}

.page-template-home .wrapper {
    overflow-x: hidden;
}

.sticky-spacer {
    position: sticky;
    top: 15px;
}


.btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

.btn-warning {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
}

.btn-warning:hover {
    background: #E5A500;
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 183, 20, 0.4);
}

.btn-dark {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-dark:hover {
    background: #252938;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 29, 41, 0.4);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

/* ===================================
   Header & Navigation - Pixel Perfect from Figma
   =================================== */
.header-nav {
    position: fixed;
    top: 29px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
}

.top-nav {
    background: #080A0D59;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 0.4px solid #A4A7AE;
    border-radius: 30px;
    height: 85px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    height: 46px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.9;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 8px;
}

.logo-icon i {
    font-size: 18px;
    color: var(--secondary-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-the {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* Navigation Items Container */
.nav-items {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.nav-link-item a {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-size-h5);
    font-weight: 400;
    color: var(--text-gray-200);
    text-decoration: none;
    padding: 10px 10px 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link-item a:hover {
    color: var(--text-light);
}

/* Active Link */
.nav-link-item.active a {
    font-weight: 500;
    color: var(--text-light);
}

.nav-link-item.active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 20px 20px 0 0;
}

/* Contact Link */
.nav-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    margin-left: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-contact i {
    font-size: var(--font-size-h5);
    color: var(--text-gray-300);
}

.nav-contact span {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-size-h5);
    font-weight: 400;
    color: var(--text-gray-300);
    white-space: nowrap;
}

.nav-contact:hover i,
.nav-contact:hover span {
    color: var(--text-light);
}

/* Book Now Button */
.nav-btn-book {
    background: var(--primary-color);
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-size-body-1);
    font-weight: 500;
    padding: 8px 16px;
    height: 46px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 20px;
}

.nav-btn-book:hover {
    background: #E5A500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 183, 34, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   New Header/Navigation Styles
   =================================== */
.top-nav-new {
    background: rgba(8, 10, 13, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 0.4px solid #A4A7AE;
    border-radius: 30px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: relative;
}

/* Logo */
.nav-logo-new {
    width: 173px;
    height: 46px;
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Centered Navigation Links */
.nav-center-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.4px;
    display: flex;
    gap: 16px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-center-links li {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 54px;
    align-items: center;
    position: relative;
}

.nav-center-links li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #F1F2F3;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-center-links li a:hover {
    color: #FFFFFF;
}

/* Active Link */
.nav-center-links li.current-menu-item a,
.nav-center-links li.current_page_item a {
    font-weight: 500;
    color: #FFFFFF;
}

.nav-center-links li.current-menu-item::after,
.nav-center-links li.current_page_item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FCB722;
    border-radius: 20px 20px 0 0;
}

/* Right Section */
.nav-right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Phone Link */
.nav-phone-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.nav-phone-link img {
    width: 16px;
    height: 16px;
}
.phone-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.phone-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #F1F2F3;
    white-space: nowrap;
}

.nav-phone-link .phone-text,
.nav-phone-link svg path {
    color: #F1F2F3;
    stroke: #F1F2F3;
}

svg g path,
svg path {
    transition: all 0.3s ease;
}

svg rect {
    transition: all 0.3s ease;
}

/* Book Now Button */
.nav-book-btn {
    background: #FCB722;
    height: 46px;
    padding: 8px 16px;
    border-radius: 16px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: #080A0D;
    white-space: nowrap;
}

/* .nav-book-btn:hover {
    background: #E0A510;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 183, 34, 0.4);
} */

/* Mobile Toggle (Hidden by default) */
.mobile-toggle-new {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.mobile-toggle-new span {
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.nav-mobile-menu {
    display: none;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    background: rgba(8, 10, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 30px 30px;
    padding: 20px 30px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.nav-mobile-menu.show {
    display: flex;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}



.nav-mobile-links li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #F1F2F3;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-mobile-links li.current-menu-item a,
.nav-mobile-links li.current_page_item a {
    font-weight: 500;
    color: #FFFFFF;
    background: rgba(252, 183, 34, 0.1);
}

.nav-mobile-links li a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.nav-mobile-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-mobile-phone span {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #A4A7AE;
}

.nav-mobile-phone:hover span {
    color: #FFFFFF;
}

.nav-mobile-book {
    background: #FCB722;
    height: 46px;
    padding: 8px 16px;
    border-radius: 16px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #080A0D;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile-book:hover {
    background: #E0A510;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    padding: 82px 0 0 0;
    min-height: 960px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Background Image with Overlay */
.hero-section .hero-bg-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 960px;
    background: url('../../assets/images/new-bg-2.png') center center / cover no-repeat;
    z-index: -2;
}

.partner-banner .hero-bg-image {
    height: clamp(40.625rem, 36.75rem + 19.375vw, 60rem);
}


.hero-section.partner-banner {
    padding: 70px 0 0 0;
    height: clamp(40.625rem, 36.75rem + 19.375vw, 60rem);
    min-height: auto;
}

.partner-banner .hero-content h1 {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    color: #fff;
    font-weight: 700;
}

.partner-btn a {
    width: max-content;
    background: #FCB722;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 500;
    color: #080A0D;
    line-height: normal;
    padding: clamp(1rem, 0.925rem + 0.375vw, 1.375rem);
}

.partner-btn a:hover {
    background: #FFCF66;
    box-shadow: 0 10px 15px -3px rgba(252, 183, 34, 0.20), 0 4px 6px -4px rgba(252, 183, 34, 0.20);
}

/* Gradient Overlay at Bottom */
.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 267px;
    background: linear-gradient(180deg, rgba(31, 34, 38, 0) 0%, #1F2226 86.866%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 1.4rem + 1.75vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
}

.hero-title strong {
    color: var(--primary-color);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #FAFAFA;
    margin-bottom: 0;
}

.hero-subtitle p {
    margin-bottom: 0;
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 584px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 24px;
}

.trust-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.trust-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: #FAFAFA;
}

/* Info Box */
.hero-info-box {
    background: rgba(252, 183, 34, 0.05);
    border-radius: 16px;
    padding: 25px 25px 26px 25px;
    width: 597px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-info-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: var(--primary-color);
    margin: 0;
}

.hero-info-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: #FAFAFA;
    margin: 0;
    max-width: 553px;
}

/* Booking Card */
.booking-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #555;
    border-radius: 16px;
    padding: 30px 30px 39px 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.booking-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: normal;
    margin: 0;
    height: 32px;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ===================================
   Validation Error Box Styles
   =================================== */
.validation-error-box {
    display: none;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
    border-radius: 12px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease-out;
    position: relative;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.validation-error-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.validation-error-content {
    flex: 1;
}

.validation-error-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #EF4444;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.validation-error-message {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #DC2626;
    margin: 0;
    line-height: 1.5;
}

.validation-error-close {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.validation-error-close:hover {
    opacity: 1;
}

/* Error Input Styling */
.error-input {
    border-color: #EF4444 !important;
    background-color: rgba(239, 68, 68, 0.05) !important;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.error-input:focus {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}



/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: normal;
    margin: 0;
}

/* Form Input Wrapper */
.form-input-wrapper {
    position: relative;
    height: 60px;
}

.form-icon {
    position: absolute;
    left: 16px;
    top: 20px;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 1;
}

.form-input {
    width: 100%;
    height: 60px;
    background: rgba(1, 1, 1, 0.15);
    border: 1px solid #909090;
    border-radius: 16px;
    padding: 16px 16px 16px 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: normal;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #f1f2f3;
}

.form-input:focus {
    border-color: #FCB722;
    box-shadow: 0 0 0 4px rgba(252, 183, 34, 0.1);
}

/* Date Picker Wrapper */
.date-picker-wrapper {
    position: relative;
    height: 60px;
}

/* Date and Time Input Styling */
.date-input,
.time-input {
    width: 100%;
    height: 60px;
    background: rgba(1, 1, 1, 0.15);
    border: 1px solid #909090;
    border-radius: 16px;
    padding: 16px 16px 16px 48px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: normal;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.date-input:focus,
.time-input:focus {
    border-color: #FCB722;
    box-shadow: 0 0 0 4px rgba(252, 183, 34, 0.1);
}

/* Hide default calendar/clock icon */
.date-input::-webkit-calendar-picker-indicator,
.time-input::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 10;
}

/* Placeholder overlay */
.date-placeholder {
    position: absolute;
    left: 51px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #f1f2f3;
    line-height: normal;
    pointer-events: none;
    z-index: 5;
    transition: opacity 0.2s ease;
}

.date-placeholder.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Hide native datetime fields when empty */
.date-input::-webkit-datetime-edit,
.time-input::-webkit-datetime-edit {
    opacity: 0;
}

.date-input.has-value::-webkit-datetime-edit,
.time-input.has-value::-webkit-datetime-edit {
    opacity: 1;
    color: #FFFFFF;
}

.date-input::-webkit-datetime-edit-fields-wrapper,
.time-input::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

.date-input::-webkit-datetime-edit-text,
.time-input::-webkit-datetime-edit-text {
    padding: 0 2px;
}

.date-input.has-value::-webkit-datetime-edit-month-field,
.date-input.has-value::-webkit-datetime-edit-day-field,
.date-input.has-value::-webkit-datetime-edit-year-field,
.time-input.has-value::-webkit-datetime-edit-hour-field,
.time-input.has-value::-webkit-datetime-edit-minute-field,
.time-input.has-value::-webkit-datetime-edit-ampm-field {
    color: #FFFFFF;
}

/* =====================================================
   FLATPICKR CUSTOM STYLING - DARK THEME
   ===================================================== */

/* Hide native date/time picker indicators when Flatpickr is active */
.date-input.flatpickr-input,
.time-input.flatpickr-input {
    cursor: pointer;
}

/* Style for Flatpickr altInput (12-hour format display) */
.flatpickr-input.form-input {
    width: 100%;
    height: 60px;
    background: rgba(1, 1, 1, 0.15);
    border: 1px solid #909090;
    border-radius: 16px;
    padding: 0 20px 0 51px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    cursor: pointer;
}

.flatpickr-input.form-input:focus {
    border-color: #FCB722;
    box-shadow: 0 0 0 4px rgba(252, 183, 34, 0.1);
    outline: none;
}

/* Hide the original input when using altInput */
.date-picker-wrapper input[type="time"].flatpickr-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* Flatpickr Calendar Container */
.flatpickr-calendar {
    background: #1a1a1a !important;
    border: 1px solid #909090 !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    font-family: 'Montserrat', sans-serif !important;
    padding: 16px !important;
    width: auto !important;
    max-width: 100% !important;
}

/* Calendar Header */
.flatpickr-months {
    background: transparent !important;
    border-bottom: 1px solid #909090 !important;
    padding-bottom: 12px !important;
    margin-bottom: 12px !important;
}

.flatpickr-month {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.flatpickr-current-month {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 0 !important;
}

.flatpickr-monthDropdown-months {
    background: #1a1a1a !important;
    border: 1px solid #909090 !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    margin: 0px !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: #FCB722 !important;
    fill: #FCB722 !important;
    padding: 0px !important;
    top: 15px !important;
}

.flatpickr-prev-month {
    left: 15px !important;
}

.flatpickr-next-month {
    right: 15px !important;
}

/* Day Names */
.flatpickr-weekdays {
    background: transparent !important;
    margin-bottom: 8px !important;
}

.flatpickr-weekday {
    color: #a4a7ae !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
}

/* Calendar Days */
.flatpickr-days {
    padding: 0 !important;
}

.flatpickr-day {
    color: #ffffff !important;
    border-radius: 8px !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.flatpickr-day:hover {
    background: rgba(252, 183, 34, 0.2) !important;
    border-color: transparent !important;
}

.flatpickr-day.today {
    border-color: #FCB722 !important;
    color: #FCB722 !important;
    font-weight: 600 !important;
}

.flatpickr-day.selected {
    background: #FCB722 !important;
    border-color: #FCB722 !important;
    color: #080A0D !important;
    font-weight: 600 !important;
}

.flatpickr-day.selected:hover {
    background: #FCB722 !important;
    border-color: #FCB722 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #4a4a4a !important;
    opacity: 0.5 !important;
}

.flatpickr-day.inRange {
    background: rgba(252, 183, 34, 0.1) !important;
    border-color: transparent !important;
    box-shadow: -5px 0 0 rgba(252, 183, 34, 0.1), 5px 0 0 rgba(252, 183, 34, 0.1) !important;
}

/* Calendar Footer Buttons */
.flatpickr-calendar .flatpickr-time {
    border-top: 0 !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
    gap: 10px;
}

.flatpickr-time .numInputWrapper span.arrowDown:after,
.flatpickr-time .numInputWrapper span.arrowUp:after {
    border-top-color: #ffffff !important;
    border-bottom-color: #ffffff !important;
}

.flatpickr-calendar .flatpickr-time .flatpickr-time-separator {
    display: none !important;
}

.flatpickr-calendar .flatpickr-time input {
    color: #ffffff !important;
    background: transparent !important;
    border: none !important;
}

.flatpickr-calendar .flatpickr-time input:hover {
    background: rgba(252, 183, 34, 0.1) !important;
}

.flatpickr-calendar .flatpickr-time input.flatpickr-am-pm {
    color: #FCB722 !important;
    font-weight: 600 !important;
}

/* Time Picker Specific Styles */
.flatpickr-time {
    background: transparent !important;
}

.flatpickr-time .flatpickr-time-wrapper {
    background: transparent !important;
}

.flatpickr-time input.flatpickr-hour,
.flatpickr-time input.flatpickr-minute {
    background: rgba(1, 1, 1, 0.15) !important;
    border: 1px solid #909090 !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 8px 12px !important;
    margin: 0 4px !important;
    transition: all 0.2s ease !important;
}

.flatpickr-time input.flatpickr-hour:hover,
.flatpickr-time input.flatpickr-minute:hover {
    border-color: #FCB722 !important;
    background: rgba(252, 183, 34, 0.1) !important;
}

.flatpickr-time input.flatpickr-hour:focus,
.flatpickr-time input.flatpickr-minute:focus {
    border-color: #FCB722 !important;
    box-shadow: 0 0 0 3px rgba(252, 183, 34, 0.2) !important;
    outline: none !important;
}

.flatpickr-time .flatpickr-am-pm {
    background: transparent !important;
    border: 0px !important;
    border-radius: 8px !important;
    color: #FCB722 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 0px !important;
    margin: 0 4px !important;
    transition: all 0.2s ease !important;
}

/* .flatpickr-time .flatpickr-am-pm:hover {
    border-color: #FCB722 !important;
    background: rgba(252, 183, 34, 0.1) !important;
} */

/* Time Picker Dropdown */
.flatpickr-time .flatpickr-time-list {
    background: #1a1a1a !important;
    border: 1px solid #909090 !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

.flatpickr-time .flatpickr-time-list-item {
    color: #ffffff !important;
    transition: all 0.2s ease !important;
}

.flatpickr-time .flatpickr-time-list-item:hover {
    background: rgba(252, 183, 34, 0.2) !important;
}

.flatpickr-time .flatpickr-time-list-item.selected {
    background: #FCB722 !important;
    color: #080A0D !important;
    font-weight: 600 !important;
}

/* Clear and Today Buttons */
.flatpickr-calendar .flatpickr-clear,
.flatpickr-calendar .flatpickr-today {
    background: transparent !important;
    border: none !important;
    color: #FCB722 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.flatpickr-calendar .flatpickr-clear:hover,
.flatpickr-calendar .flatpickr-today:hover {
    background: rgba(252, 183, 34, 0.1) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .flatpickr-calendar {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Booking Submit Button */
.booking-submit-button {
    width: 100%;
    height: 64px;
    border: 1px solid #FCB722;
    background: #FCB722;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 10px 15px -3px rgba(252, 183, 34, 0.2), 0px 4px 6px -4px rgba(252, 183, 34, 0.2);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #080A0D;
    line-height: normal;
}

.booking-submit-button:hover {
    background: transparent;
    color: #ffff;
    gap: 50px;
}

.booking-submit-button:hover svg path {
    stroke: #FCB722;
}

/* Counter Container */
.counter-container {
    width: 100%;
    height: 60px;
    background: rgba(1, 1, 1, 0.15);
    border: 1px solid #909090;
    border-radius: 16px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 33px;
}

.counter-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 4px;
}

.counter-button {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.counter-button img {
    width: 20px;
    height: 20px;
}

.counter-button.minus {
    opacity: 0.5;
}

.counter-button:hover {
    background: rgba(252, 183, 34, 0.1);
}

.counter-value {
    width: 40px;
    height: 26px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #f1f2f3;
    line-height: normal;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* ===================================
   City Section
   =================================== */
/* ===================================
   City Section - Book in Your City
   =================================== */
.city-section {
    background: #1F2226;
    padding-top: clamp(1.5625rem, 1.25rem + 1.5625vw, 3.125rem);
    padding-bottom: clamp(3.125rem, 2.5rem + 3.125vw, 6.25rem);
}

.city-section .container {
    max-width: calc(1164px + var(--bs-gutter-x, 2rem)) !important;
}


/* Section Header */

.city-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0;
    text-transform: capitalize;
    margin: 0;
    color: #FFFFFF;
}


.city-section-title strong {
    font-weight: 600;
    color: var(--primary-color);
}

.city-section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #F1F2F3;
    margin: 0;
}

/* City Card */
.city-card {
    background: #050505;
    border: 1px solid #262626;
    border-radius: 16px;
    overflow: hidden;
}

/* City Card Image */
.city-card-image {
    position: relative;
    height: 160px;
    width: 100%;
    overflow: hidden;
}

.city-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease-in-out;
}

.city-card:hover .city-card-image .city-img {
    transform: scale(1.1);
}

/* City Card Content */
.city-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* City Card Header */
.city-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 48px;
    line-height: normal;
}

.city-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.city-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 28px;
    margin: 0;
}

.city-country {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #F1F2F3;
    line-height: 20px;
    margin: 0;
}

.city-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FCB722;
    line-height: 28px;
    text-align: center;
    white-space: nowrap;
    margin: 0;
}

/* City Features */
.city-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 48px;
}

.city-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 20px;
}

.city-feature-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.city-feature-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #F1F2F3;
    line-height: normal;
    white-space: nowrap;
}

/* City Book Button */
.city-book-button {
    width: 322px;
    height: 47px;
    background: #FCB722;
    border: 1px solid #FCB722;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #080A0D;
    line-height: normal;
}

.city-book-button:hover {
    background: transparent;
    color: #FFFFFF;
}

.city-book-button:hover svg path {
    stroke: #FCB722;
}

/* ===================================
   Services Section - Our Premium Services
   =================================== */
.services-section {
    background: #F2F2F2;
    padding: clamp(3.125rem, -0.7813rem + 12.5vw, 6.25rem) 0;
}

.services-section .container {
    max-width: calc(1216px + var(--bs-gutter-x, 2rem)) !important;
}

.services-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0;
    color: #FCB722;
    text-transform: capitalize;
    margin: 0;
}

.services-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #080A0D;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Service Card */
.service-card {
    background: #FAFAFA;
    border: 1px solid #E9EAEB;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Card Top Section */
.service-card-top {
    border-bottom: 1px solid #E9EAEB;
    padding: 32px;
    height: 293px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Card Header (Icon + Badge) */
.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 64px;
    margin-bottom: 16px;
}

/* Icon Box */
.service-icon-box {
    width: 64px;
    height: 64px;
    background: #FCB722;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-img {
    width: 46px;
    height: 46px;
}

.service-icon-rotated {
    transform: rotate(15deg);
}

/* Badge */
.service-badge {
    height: 28px;
    padding: 4px 12px;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
}

.service-badge-popular {
    background: #F1F2F3;
    color: #000000;
}

.service-badge-premium {
    background: #FF4D5D;
    color: #FFFFFF;
    border-radius: 999px;
}

/* Card Title */
.service-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #080A0D;
    line-height: normal;
    margin: 0;
}

/* Card Description */
.service-card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #080A0D;
    line-height: normal;
    margin: 0;
}

/* Card Price */
.service-card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #FCB722;
    line-height: normal;
    margin: 0;
    margin-top: auto;
}

.price-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #414651;
}

/* Card Bottom Section */
.service-card-bottom {
    padding: 32px 32px 0 32px;
    height: 310px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* What's Included Title */
.service-included-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: normal;
    margin: 0;
}

/* Features List */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Feature Bullet */
.feature-bullet {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(252, 183, 34, 0.2);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    position: relative;
}

.feature-bullet::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #FCB722;
    border-radius: 999px;
}

/* Feature Text */
.feature-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #080A0D;
    line-height: normal;
}

/* Service Button */
.service-button {
    width: 100%;
    height: 50px;
    background: #000000;
    border: 1px solid #404040;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.service-button span {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: normal;
}

.button-icon {
    width: 16px;
    height: 16px;
}

/* Services CTA Box */
.services-cta {
    background: #FAFAFA;
    border: 1px solid #E9EAEB;
    border-radius: 16px;
    height: 222px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px;
}

.services-cta-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    max-width: 877px;
}

.services-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #080A0D;
    line-height: normal;
    margin: 0;
}

.services-cta-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #414651;
    line-height: normal;
    margin: 0;
}

.services-cta-button {
    width: 228px;
    height: 48px;
    background: #FCB722;
    border: none;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #080A0D;
    line-height: normal;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-cta-button:hover {
    background: #e0a510;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 183, 34, 0.4);
}

.service-card.featured .service-title {
    color: var(--text-light);
}

.service-description {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: var(--primary-color);
    font-size: 14px;
}

/* New Services Section Styles */


.service-card-new {
    background: #FAFAFA;
    border: 1px solid #E9EAEB;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-top-section {
    border-bottom: 1px solid #E9EAEB;
    height: 330px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 64px;
    margin-bottom: 16px;
}

.service-icon-container {
    width: 64px;
    height: 64px;
    background: #FCB722;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon {
    width: 46px;
    height: 46px;
}

.service-icon-rotate {
    transform: rotate(15deg);
}

.service-badge {
    height: 28px;
    padding: 4px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-popular {
    background: #F1F2F3;
    color: #000000;
    border-radius: 16px;
}

.badge-premium {
    background: #FF4D5D;
    color: #FFFFFF;
    border-radius: 999px;
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    font-weight: 600;
    line-height: normal;
    color: #080A0D;
    margin: 0 0 12px 0;
}

.service-description {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 400;
    line-height: normal;
    color: #080A0D;
    margin: 0 0 12px 0;
}

.service-price {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    font-weight: 700;
    line-height: normal;
    color: #FCB722;
    margin: 0;
    position: absolute;
    bottom: 32px;
    left: 32px;
}

.price-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    font-weight: 500;
    color: #414651;
}

.price-amount {
    font-weight: 700;
}

.service-bottom-section {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-includes-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: #080A0D;
    margin: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.list-bullet {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(252, 183, 34, 0.2);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    position: relative;
}

.list-bullet::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #FCB722;
    border-radius: 999px;
}

.list-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 400;
    line-height: normal;
    color: #080A0D;
}

.service-btn {
    width: 100%;
    max-width: 526px;
    height: 50px;
    background: #000000;
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: normal;
}

.service-btn:hover {
    background: #FCB722;
    color: #080A0D;
    gap: 50px;
}

.service-btn:hover svg path {
    stroke: #080A0D;
}



/* Custom Solution Box */
.custom-solution-box {
    background: #FAFAFA;
    border: 1px solid #E9EAEB;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 30px;
}

.custom-solution-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    max-width: 877px;

    line-height: normal;
}

.custom-solution-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem);
    font-weight: 600;
    color: #080A0D;
    margin: 0;
}

.custom-solution-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 500;
    color: #414651;
    margin: 0;
    max-width: 877px;
}

.custom-solution-button {
    width: 228px;
    height: 48px;
    background: #FCB722;
    border: none;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: #080A0D;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .custom-solution-button:hover {
    background: #e0a510;
    box-shadow: 0 4px 12px rgba(252, 183, 34, 0.4);
} */

/* ===================================
   How It Works Section
   =================================== */
/* How It Works Section */
.how-it-works-section,
.your-guest-section {
    padding: clamp(3.125rem, 2.5rem + 3.125vw, 6.25rem) 0;
    background: var(--dark-bg-2);
}

.how-it-works-section .container {
    max-width: calc(1100px + var(--bs-gutter-x, 2rem)) !important;
}


/* Header */
.how-it-works-header,
.city-section-header,
.services-header,
.faq-header {
    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, 0.55rem + 0.375vw, 1rem);
    text-align: center;
}

.how-it-works-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #FCB722;
    line-height: normal;
    text-transform: capitalize;
    margin: 0;
}

.how-it-works-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #F1F2F3;
    line-height: normal;
    margin: 0;
}

/* Card */
.how-it-works-card {
    height: 100%;
    background: #F5F5F5;
    border: 1px solid #E9EAEB;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 46px 24px 44px 24px;
    transition: all 0.3s ease;
}

.how-it-works-card:hover {
    background: #FCB722;
    border-color: #FCB722;
}

/* Icon */
.how-it-works-icon {
    width: 58px;
    height: 58px;
    background: #FCB722;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    transition: all 0.3s ease;
}

.how-it-works-card:hover .how-it-works-icon {
    background: #080A0D;
}

.how-it-works-card:hover .how-it-works-icon svg g path {
    fill: #FCB722;
}

/* Card Title */
.how-it-works-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.0625rem, 1.025rem + 0.1875vw, 1.25rem);
    font-weight: 600;
    color: #080A0D;
    line-height: normal;
    text-align: center;
    margin: 0;
}

/* Card Description */
.how-it-works-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #414651;
    line-height: normal;
    text-align: center;
    margin: 0;
    transition: all 0.3s ease;
}

.how-it-works-card:hover .how-it-works-card-description {
    color: #080A0D;
}

/* Book Now Button */
.how-it-works-button {
    width: 203px;
    height: 47px;
    border: 1px solid #FCB722;
    background: #FCB722;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #080A0D;
    line-height: normal;
}

.how-it-works-button:hover {
    background: transparent;
    color: #fff;
}

.how-it-works-button:hover svg path {
    stroke: #FCB722;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
}

.step-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===================================
   Why Choose Section
   =================================== */
/* Why Choose Section */
.why-choose-section {
    padding: clamp(3.125rem, 2.5rem + 3.125vw, 6.25rem) 0;
    background: var(--dark-bg);
}


/* Header */
.why-choose-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.why-choose-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #FCB722;
    line-height: normal;
    text-transform: capitalize;
    margin: 0;
}

.why-choose-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #F1F2F3;
    line-height: normal;
    margin: 0;
}

/* Card */
.why-choose-card {
    width: 100%;
    height: 300px;
    background: #050505;
    border: 1px solid #262626;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card:hover {
    background: #FCB722;
    border-color: #FCB722;
}

/* Icon */
.why-choose-icon {
    width: 56px;
    height: 56px;
    background: #FCB722;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.why-choose-card:hover .why-choose-icon {
    background: #000000;
}

/* SVG Icon Color Changes on Hover */
.why-choose-icon svg g path,
.why-choose-icon svg path {
    fill: #000000;
    stroke: #000000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card:hover .why-choose-icon svg g path,
.why-choose-card:hover .why-choose-icon svg path {
    fill: #FCB722;
    stroke: #FCB722;
}

.why-choose-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0);
}

/* Card Title */
.why-choose-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: normal;
    text-align: center;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.why-choose-card:hover h3 {
    color: #080A0D;
}

/* Card Description - Hidden by default, slides in on hover */
.why-choose-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #080A0D;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    padding: 0 24px;
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.why-choose-card:hover p {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
}

/* Terms & Conditions Link */
.why-choose-link {
    color: #080A0D;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 4px;
}

.why-choose-link:hover {
    color: #000000;
    text-decoration: none;
}

/* ===================================
   Testimonials Section
   =================================== */
/* Testimonials Section */

.testimonials-header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-section {
    padding: clamp(3.125rem, 2.5rem + 3.125vw, 6.25rem) 0;
    background: #FFFFFF;
    overflow-x: hidden;
}

/* Testimonials Header */

.testimonials-text {
    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, 0.55rem + 0.375vw, 1rem);
    text-align: center;
}

.testimonials-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #080A0D;
    line-height: normal;
    text-transform: capitalize;
    margin: 0;
}

.testimonials-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #414651;
    line-height: normal;
    margin: 0;
}

/* Navigation Buttons */
.testimonials-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    right: 60px;
}

.testimonials-nav-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.testimonials-nav-btn svg path {
    stroke: #A4A7AE;
}

.testimonials-nav-btn:hover svg path {
    stroke: #FCB722;
}

.testimonials-nav-btn:hover {
    transform: scale(1.1);
}

/* Testimonials Swiper */

.testimonials-swiper {
    position: relative;
    overflow: visible;
    padding-top: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
}



.testimonials-swiper .swiper-slide {
    background: #FAFAFA;
    border: 1px solid #E9EAEB;
    border-radius: 14px;
    padding: 24px;
    height: 265px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(1);

}

.testimonials-swiper .swiper-slide-active {
    transform: scale(1.15);
    border-color: #FCB722;
    margin-right: 52px !important;
    margin-left: 35px !important;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: 100%;
}


/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: gap 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Testimonial Avatar */
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Testimonial Author Info */
.testimonial-author h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #080A0D;
    line-height: normal;
    margin: 0;
    transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-author p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #717680;
    line-height: normal;
    margin: 0;
    transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 4px;
    transition: gap 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.testimonial-rating img {
    width: 16px;
    height: 16px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Testimonial Text */
.testimonial-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 400;
    color: #414651;
    margin: 0;
    transition: font-size 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--text-gray);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: clamp(3.125rem, 2.5rem + 3.125vw, 6.25rem) 0;
    background: #080A0D;
}

.faq-container {
    max-width: 872px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}


.faq-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #FCB722;
    line-height: normal;
    text-transform: capitalize;
    margin: 0;
}

.faq-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #F1F2F3;
    line-height: normal;
    margin: 0;
}

/* Bootstrap Accordion Override */
.faq-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Accordion Item */
.faq-accordion-item {
    background: #050505;
    border: 1px solid #262626;
    border-radius: 14px;
    overflow: hidden;
    border-left: 1px solid #262626 !important;
    border-right: 1px solid #262626 !important;
    border-radius: 14px !important;
}

/* Remove default Bootstrap borders */
.faq-accordion-item:first-of-type,
.faq-accordion-item:last-of-type {
    border-radius: 14px;
}

.faq-accordion-item:not(:first-of-type) {
    border-top: 1px solid #262626;
}

.faq-accordion-item:first-child {
    border-top: 1px solid #262626 !important;
}

.faq-accordion-item:last-child {
    border-bottom: 1px solid #262626 !important;
}

.faq-accordion-button:not(.collapsed) svg {
    transform: rotate(180deg);
}

/* Accordion Button */
.faq-accordion-button {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
    box-shadow: none;
}

.faq-accordion-button:not(.collapsed) {
    background: transparent;
    color: #FFFFFF;
    box-shadow: none;
}

.faq-accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion-button span {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: normal;
    text-align: left;
    flex: 1;
}

/* Toggle Icon */
.faq-toggle-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-accordion-button:not(.collapsed) .faq-toggle-icon {
    transform: rotate(180deg);
}

/* Hide default Bootstrap arrow */
.faq-accordion-button::after {
    display: none;
}

/* Accordion Body */
.faq-accordion-body {
    padding: 0 24px 20px;
    background: transparent;
}

.faq-accordion-body p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #717680;
    line-height: normal;
    margin: 0;
}

/* ===================================
   CTA Section
   =================================== */
/* CTA Section */
.cta-section {
    padding: clamp(3.125rem, 2.5rem + 3.125vw, 6.25rem) 0;
    position: relative;
    overflow: visible;
}

.cta-section .container {
    position: relative;
}

.cta-box {
    width: 100%;
    background: #FCB722;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.cta-content {
    padding: 41px 40px;
    width: 100%;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.cta-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #080A0D;
    line-height: normal;
    margin: 0;
    text-transform: capitalize;
}

.cta-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #080A0D;
    line-height: normal;
    margin: 0;
}

.cta-button {
    background: #080A0D;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    width: 179.828px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .cta-button:hover {
    background: #1a1d29;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 10, 13, 0.3);
} */

.cta-image {
    position: absolute;
    right: 250px;
    bottom: 0;
    width: 283px;
    height: 387px;
    z-index: 2;
    pointer-events: none;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===================================
   Footer
   =================================== */
/* Footer */
.footer {
    background: #FCB722;
    border-top: 1px solid #262626;
    position: relative;
    width: 100%;
}

.footer-container {
    max-width: 1343px;
    /* 1311px content + 2*16px padding */
    margin: 0 auto;
    padding: 60px 64px 0;
}

/* Footer Grid - 4 Columns */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 30px;
}

/* Column 1: Logo & Brand */
.footer-brand {
    grid-column: 1;
}

.footer-logo {
    width: 226px;
    height: 60px;
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #080A0D;
    margin: 0;
    max-width: 264px;
}

/* Footer Headings */
.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #080A0D;
    margin: 0 0 16px 0;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #080A0D;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.footer-list li a:hover {
    opacity: 0.8;
}

/* Footer Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #080A0D;
    line-height: 1.4;
}

.contact-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #080A0D;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
    color: #080A0D;
}

.contact-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #080A0D;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #FCB722;
    padding-top: 33px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #080A0D;
    margin: 0;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

from {
    opacity: 0;
    transform: translateY(30px);
}

to {
    opacity: 1;
    transform: translateY(0);
}


.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ===================================
   ADVANCED ANIMATIONS
   =================================== */

/* Floating Animation */
@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Pulse Animation */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Glow Effect */
@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(252, 183, 34, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(252, 183, 34, 0.6), 0 0 60px rgba(252, 183, 34, 0.4);
    }
}

/* Slide in from Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide in from Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale Up */
@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate In */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Bounce In */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Text Glow */
@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(252, 183, 34, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(252, 183, 34, 0.8), 0 0 30px rgba(252, 183, 34, 0.6);
    }
}

/* Utility Animation Classes */
.animate-float {
    animation: floating 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-text-glow {
    animation: textGlow 2s ease-in-out infinite;
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(252, 183, 34, 0.5);
}


.progress-bar-accordions {
    padding: clamp(3.125rem, 2.5rem + 3.125vw, 6.25rem) 0;
    background-color: #080A0D;
}

.accordion-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 733px;
}

/* Accordion Item */
.accordion-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Progress Bar */
.accordion-progress {
    height: 1px;
    position: relative;
    margin-bottom: 12px;
}

.progress-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.10);
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 0;
    background: #FCB722;
    transition: width 5s linear;
}

.accordion-item.active .progress-fill {
    width: 100%;
}

/* Accordion Text */
.accordion-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.accordion-title {
    font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
    font-weight: 400;
    color: #A4A7AE;
    margin: 0;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.accordion-item.active .accordion-title {
    font-weight: 600;
    color: #fff;
}

.accordion-desc {
    font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    font-weight: 400;
    color: #717680;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}

.accordion-item.active .accordion-desc {
    max-height: 100px;
    opacity: 1;
    margin-top: 4px;
}

/* Visual Image Section */
.how-visual {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

.visual-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.visual-image.active {
    opacity: 1;
    pointer-events: auto;
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.your-guest-section .container {
    max-width: calc(1097px + var(--bs-gutter-x, 2rem)) !important;
}

/* Partner Registration Page Specific Styles */
.partner-registration-page {
    background: #1f2226;
    min-height: 100vh;
    padding: clamp(2.5rem, 1.8rem + 3.5vw, 6rem) 0px;
}

.partner-hero-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.partner-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partner-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 1.4rem + 1.75vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.partner-hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    font-weight: 500;
    color: #fafafa;
    margin: 0;
}

.partner-benefits-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #f4c025;
    margin: 0;
}

.partner-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner-benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.partner-benefit-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
    font-weight: 500;
    color: #fafafa;
    margin: 0;
}

.partner-hero-image-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16.4px;
    padding: clamp(0.625rem, 0.4375rem + 0.9375vw, 1.5625rem);
    margin-top: clamp(0.625rem, 0.35rem + 1.375vw, 2rem);
}

.partner-hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    aspect-ratio: 526 / 290;
    object-fit: cover;
}

.partner-form-card {
    background: rgba(5, 5, 5, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.partner-form-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.partner-form-title {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #ffffff;
    margin: 0;
    height: 32px;
    font-style: normal;
}

.partner-form-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #9f9fa9;
    margin: 0;
    height: 20px;
    font-style: normal;
}

.partner-form-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partner-form-fields-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
}

.partner-form-row {
    display: flex;
    gap: 16px;
}

.partner-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    width: 50%;
}

.partner-form-group.full-width {
    width: 100%;
}

.partner-form-label {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #d4d4d8;
    height: 14px;
    font-style: normal;
    white-space: nowrap;
}

.partner-form-label .required {
    color: #f5222d;
}

.partner-form-input,
.partner-form-select {
    background: #1f2226;
    border: 1px solid #313131;
    border-radius: 8px;
    height: 36px;
    padding: 0px 16px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-style: normal;
    color: #ffffff;
    width: 100%;
    overflow: hidden;
    line-height: normal;
}

.partner-form-input::placeholder {
    color: #a4a7ae;
}

.partner-form-select {
    appearance: none;
    background: #1f2226 url('../images/icons/chevron-down.svg') no-repeat;
    background-position: right 16px center;
    background-size: 11.5px 5.5px;
    cursor: pointer;
    padding-right: 40px;
}

/* Style placeholder state */
.partner-form-select:invalid,
.partner-form-select[data-placeholder] {
    color: #a4a7ae;
}

/* Style selected state */
.partner-form-select:valid:not([data-placeholder]) {
    color: #ffffff;
}

/* Style options */
.partner-form-select option {
    color: #ffffff;
    background: #1f2226;
}

.partner-form-select option[value=""],
.partner-form-select option:disabled {
    color: #a4a7ae;
}

.partner-interests-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.partner-checkbox {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-checkbox label {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.partner-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    background: rgba(229, 229, 229, 0.3);
    border: 1px solid #71717b;
    border-radius: 4px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    position: relative;
    margin-top: 0;
}

.partner-checkbox-bottom {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    background: rgba(229, 229, 229, 0.3);
    border: 1px solid #71717b;
    border-radius: 4px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    position: relative;
    margin-top: 0;
}

.partner-checkbox-bottom:checked {
    background: #f4c025;
    border-color: #f4c025;
}

.partner-checkbox-bottom:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-size: 10px;
    font-weight: 700;
}



.partner-checkbox input[type="checkbox"]:checked {
    background: #f4c025;
    border-color: #f4c025;
}

.partner-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-size: 10px;
    font-weight: 700;
}

.partner-checkbox label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #9f9fa9;
    flex: 1;
}

.wpcf7-list-item {
    margin: 0 !important;
}

.partner-consent-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partner-consent-item label {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.partner-consent-item:first-child {
    height: 32px;
}

.partner-consent-item label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #9f9fa9;
    flex: 1;
}

.wpcf7-response-output {
    color: #fff;
    margin: 0 !important;
}

.partner-submit-btn {
    background: #f4c025;
    border: none;
    border-radius: 6.8px;
    height: 48px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.partner-submit-btn:hover {
    background: #ffd54f;
    box-shadow: 0 4px 12px rgba(244, 192, 37, 0.4);
}

/* ==========================================================================
   Order Summary Page Styles
   ========================================================================== */

.order-summary-page {
    background: #1f2226;
    min-height: 100vh;
}

/* Top Navigation */
.order-top-nav {
    background: rgba(8, 10, 13, 0.35);
    border: 0px 0px 0.4px solid #a4a7ae;
    border-radius: 30px;
    height: 85px;
    margin: 29px auto 0;
    margin-top: 0;
    max-width: 1320px;
    padding: 0 30.5px;
}

.order-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.order-logo img {
    height: 46px;
    width: 173px;
}

.order-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.order-phone img {
    width: 16px;
    height: 16px;
}

.order-phone span {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #f1f2f3;
}

/* Progress Stepper */
.order-progress-section {
    margin-top: 60px;
    padding: 0;
    width: 100%;
}

.order-progress-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 60px;
    position: relative;
}

.order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.order-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3d3d3d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.order-step.completed .order-step-circle {
    background: #fcb722;
}

.order-step.completed .order-step-circle img {
    width: 24px;
    height: 24px;
}

.order-step.active .order-step-circle {
    background: #fcb722;
    color: #000000;
}

.order-step-line {
    position: absolute;
    top: 20px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #383838;
    z-index: 1;
}

.order-step:last-child .order-step-line {
    display: none;
}

.order-step-label {
    margin-top: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
}

/* Main Content */
.order-main-content {
    padding: 40px 0 0px;
}

.order-card {
    background: rgba(5, 5, 5, 0.5);
    border: 1px solid #2a2a2a;
    border-radius: 16.4px;
    padding: 30px;
    margin-bottom: 32px;
}

.order-card-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.order-card-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #a4a7ae;
    margin: 0 0 11px 0;
}

.order-card-body {
    margin-top: 11px;
}

/* Bag Selection */
.order-card-header {
    margin-bottom: 11px;
}

.order-card-header h2 {
    height: 28px;
    line-height: normal;
}

.order-card-subtitle {
    margin-top: 4px;
}

.order-card-body {
    margin-top: 0;
}

.bag-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2c2c2c;
}

.bag-item:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.bag-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.bag-image {
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

/* Hand-carry specific crop */
/* .bag-item:nth-child(1) .bag-image img {
    width: 121.95%;
    height: 121.95%;
    left: -10.98%;
    top: -10.98%;
    object-fit: cover;
} */

/* Regular specific crop */
/* .bag-item:nth-child(2) .bag-image img {
    width: 131.82%;
    height: 131.82%;
    left: -15.91%;
    top: -20%;
    object-fit: cover;
} */

/* Out-of-format - centered */
/* .bag-item:nth-child(3) .bag-image img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
} */

/* Protective wrapping icon */
.bag-icon {
    background: #ffdf99;
    position: relative;
}

.bag-icon img {
    position: absolute;
    left: 14px;
    top: 8px;
    width: 36px;
    height: 49px;
    object-fit: contain;
}

.bag-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: normal;
}

.bag-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
}

.bag-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #a4a7ae;
    margin: 0;
    white-space: nowrap;
}

.bag-desc-wrap {
    white-space: normal;
    max-width: 327px;
}

.bag-size {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #a4a7ae;
    margin: 0;
    white-space: nowrap;
}

.bag-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
}

.bag-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    font-style: italic;
    color: #a4a7ae;
    margin: 0;
    max-width: 327px;
    line-height: normal;
}

.bag-counter {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    width: 128px;
}

.counter-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.counter-btn img {
    width: 20px;
    height: 20px;
}

.counter-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-value {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    width: 40px;
    height: 32px;
    line-height: 32px;
    text-align: center;
}

/* Contact Form Styles */

.contact-form-container {
    position: relative;
    width: 100%;
}

.contact-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: normal;
    margin: 0;
}

.contact-form-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #717680;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 20px;
}

.contact-form {
    position: absolute;
    top: 80px;
    left: 0;
    width: 552px;
    max-width: 100%;
}

.contact-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-input-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.contact-form-row .contact-input-wrapper {
    margin-bottom: 0;
    flex: 1;
}

.contact-form-row .contact-input-wrapper:first-child {
    width: 275px;
}

.contact-form-row .contact-input-wrapper:last-child {
    width: 261px;
}

.contact-input {
    width: 100%;
    height: 50px;
    background: #1f2226;
    border: 1px solid #313131;
    border-radius: 6.8px;
    padding: 12px 16px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: normal;
}

.contact-input::placeholder {
    color: rgba(16, 24, 40, 0.5);
    opacity: 0;
}

.contact-input:focus {
    outline: none;
    border-color: #fcb722;
}

.order-contact-label {
    position: absolute;
    left: 20px;
    top: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #717680;
    line-height: normal;
    pointer-events: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.contact-required {
    color: #fb2c36;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.contact-input:focus+.order-contact-label,
.contact-input:not(:placeholder-shown)+.order-contact-label {
    opacity: 0;
}

/* Phone Input with intl-tel-input */
.contact-phone-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.contact-phone-input {
    padding-left: 100px !important;
}

.contact-phone-label {
    position: absolute;
    left: 100px;
    top: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #717680;
    line-height: normal;
    pointer-events: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    z-index: 1;
}

/* Override intl-tel-input styles */
.iti {
    width: 100%;
    position: relative;
}

.iti__flag-container {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #1f2226;
    border: 1px solid #313131;
    border-right: none;
    border-radius: 6.8px 0 0 6.8px;
    width: 83.438px;
    z-index: 2;
}

.iti__selected-flag {
    padding: 0 17px;
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* .iti__flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
} */

.iti__selected-dial-code {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #ffffff;
    line-height: 20px;
}

.iti__arrow {
    display: none;
}

.iti__country-list {
    background: #1f2226;
    border: 1px solid #313131;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-top: 4px;
}

.iti__country {
    padding: 8px 16px;
    color: #ffffff;
}

.iti__country:hover {
    background: rgba(252, 183, 34, 0.1);
}

.iti__country.iti__highlight {
    background: rgba(252, 183, 34, 0.2);
}

.iti__dial-code {
    color: #717680;
}

/* Payment Method Section */
.payment-method-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.payment-method-section {
    border-bottom: 1px solid #323232;
    padding-bottom: 0;
}

.payment-method-header {
    height: 28px;
    margin-bottom: 12px;
}

.payment-method-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: normal;
    margin: 0;
    white-space: nowrap;
}

.payment-method-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
}

.payment-method-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 32px;
    padding: 0 12px 0 0;
    cursor: pointer;
}

.payment-method-option input[type="radio"] {
    display: none;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method-icon {
    height: 16px;
    width: auto;
}

.apple-pay-icon {
    width: 38.968px;
    height: 16px;
}

.payment-method-content img[alt="Credit Card"] {
    width: 20.571px;
    height: 16px;
}

.google-pay-icons {
    display: flex;
    align-items: center;
    gap: 4.811px;
}

.google-pay-g {
    width: 13.843px;
    height: 14.124px;
}

.google-pay-pay {
    width: 24.117px;
    height: 16px;
}

.payment-method-text {
    font-family: 'Arial', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #635bff;
    white-space: nowrap;
    margin-left: 10px;
}

.payment-method-radio {
    width: 13px;
    height: 13px;
    border: 1px solid #414141;
    border-radius: 666px;
    flex-shrink: 0;
    position: relative;
}

.payment-method-option input[type="radio"]:checked~.payment-method-content~.payment-method-radio {
    border-color: #fcb722;
}

.payment-method-option input[type="radio"]:checked~.payment-method-content~.payment-method-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background: #fcb722;
    border-radius: 50%;
}

/* Continue Button */
.payment-continue-btn {
    width: 100%;
    height: 56px;
    background: #fcb722;
    border: none;
    border-radius: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: #080a0d;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-continue-btn:hover {
    background: #ffda6a;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Terms Text */
.payment-terms-wrapper {
    height: 30px;
    position: relative;
}

.payment-terms-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: #737373;
    margin: 0;
}

.payment-terms-link {
    color: #155dfc;
    text-decoration: none;
}

.payment-terms-link:hover {
    text-decoration: underline;
}

.payment-terms-separator {
    color: #737373;
}


/* Booking Summary */
.booking-summary-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 32px 0;
}

.detail-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.detail-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.detail-map {
    width: 100%;
    height: 222px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.detail-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-marker>img {
    width: 49px;
    height: 56.592px;
}

.marker-icon {
    position: absolute;
    top: 8.68px;
    left: 10.25px;
    width: 29.183px;
    height: 29.183px;
    background: #ffffff;
    border-radius: 14.592px;
    padding: 4.732px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-icon img {
    width: 18.93px;
    height: 18.93px;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 13px;
}

.detail-row img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.order-main-content .detail-row span {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
}

/* Insurance Section */
.insurance-option {
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 17px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.insurance-option.premium {
    background: rgba(252, 183, 34, 0.1);
    border-color: #fcb722;
}

.insurance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.insurance-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.insurance-left input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 1.25px solid #2a2a2a;
    border: 1.25px solid #fff;
    border-radius: 50%;
    appearance: none;
    cursor: pointer;
    position: relative;
}

.insurance-left input[type="radio"]:checked {
    background: #fcb722;
    border-color: #fcb722;
}

.insurance-left input[type="radio"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.insurance-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.insurance-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
}

.insurance-badge {
    background: #f1f2f3;
    border-radius: 26px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #717680;
}

.insurance-badge img {
    width: 14px;
    height: 14px;
}

.insurance-toggle {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.insurance-option.expanded .insurance-toggle {
    transform: rotate(180deg);
}

.insurance-option:not(.expanded) .insurance-toggle {
    transform: rotate(0deg);
}

.insurance-toggle img {
    width: 24px;
    height: 24px;
}

.insurance-details {
    margin-top: 16px;
    display: none;
}

.insurance-option.expanded .insurance-details {
    display: block;
}

.insurance-content {
    background: rgba(8, 10, 13, 0.5);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.insurance-content img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.insurance-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.insurance-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

/* Promo Code */
.promo-code-section {
    display: flex;
    gap: 6px;
    margin: 16px 0;
}

.promo-input {
    flex: 1;
    height: 50px;
    background: #1f2226;
    border: 1px solid #313131;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #ffffff;
}

.promo-input::placeholder {
    color: #ffffff;
}

.promo-btn {
    width: 127px;
    height: 50px;
    background: #fcb722;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    background: #ffda6a;
}

/* Price Summary */
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.price-label {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label img {
    width: 24px;
    height: 24px;
}

.price-label span {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #ffffff;
}

.price-value {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #ffffff;
}

/* Total */
.total-row {
    background: rgba(252, 183, 34, 0.1);
    border-radius: 0px;
    padding: 10px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.total-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.total-value {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.total-amount {
    color: #fcb722;
}

/* Your Booking Includes */
.includes-title {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.includes-list li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.includes-list li span {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #ffffff;
    line-height: 20px;
}

.page-template-booking .header-nav,
.page-template-booking .footer,
.page-template-order-summary .header-nav,
.page-template-order-summary .footer,
.page-sitemap .header-nav,
.page-sitemap .footer {
    display: none;
}

.thank-you-page .order-top-nav {
    display: none;
}

label.partner-form-label br {
    display: none;
}

.partner-form-group p,
.partner-interests-section p {
    margin: 0;
}


/* ===================================
   Terms and Conditions Page Styles
   =================================== */

/* Main Container */
.policy-sec {
    padding-top: 120px;
    padding-bottom: 80px;
}


/* Typography */
.policy-content h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 20px;
}

.policy-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--text-light);
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-dark);
}

.policy-content h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 20px;
}

.policy-content h4 {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: var(--text-gray-200);
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-content h5 {
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    font-weight: 600;
    color: var(--text-gray-300);
    margin-top: 20px;
    margin-bottom: 12px;
}

/* Paragraphs */
.policy-content p,
.policy-content p a,
.policy-content a {
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.8;
    color: var(--text-gray-300);
    margin-bottom: 16px;
}

.policy-content p a,
.policy-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-content p strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Lists */
.policy-content ul {
    padding-left: 30px;
    margin-bottom: 25px;
    list-style: none;
}

.policy-content ul li {
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.8;
    color: var(--text-gray-300);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.policy-content ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Table Styles */
.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--card-dark);
    border-radius: var(--radius-14);
    overflow: hidden;
}

.policy-content table thead {
    background: var(--primary-color);
}

.policy-content table thead th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.policy-content table tbody tr {
    border-bottom: 1px solid var(--border-dark);
    transition: background 0.3s ease;
}

.policy-content table tbody tr:hover {
    background: rgba(252, 183, 34, 0.05);
}

.policy-content table tbody tr:last-child {
    border-bottom: none;
}

.policy-content table tbody td {
    padding: 16px 20px;
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--text-gray-300);
    line-height: 1.6;
}

.contact-item>svg {
    flex: 0 0 21px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .policy-content article {
        padding: 40px;
    }

    .policy-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 768px) {
    .policy-content main {
        padding: 40px 0;
    }

    .policy-content article {
        padding: 30px 20px;
        border-radius: var(--radius-14);
    }

    .policy-content h1 {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .policy-content h2 {
        margin-top: 35px;
        margin-bottom: 20px;
    }

    .policy-content ul {
        padding-left: 20px;
    }

    .policy-content table thead th,
    .policy-content table tbody td {
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .policy-content article {
        padding: 25px 15px;
    }

    .policy-content ul li {
        padding-left: 15px;
    }
}

/* ===================================
   Flatpickr Custom Continue Button
   =================================== */
.flatpickr-continue-btn {
    width: calc(100% - 20px);
    margin: 10px 10px;
    padding: 12px 20px;
    background-color: #FCB722;
    color: #080A0D;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.flatpickr-continue-btn:hover {
    background-color: #E0A420;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(252, 183, 34, 0.3);
}

.flatpickr-continue-btn:active {
    transform: translateY(0);
}

/* Flatpickr Dark Theme Customization */
.flatpickr-calendar.dark {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.flatpickr-calendar.dark .flatpickr-time {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile responsive */
@media (max-width: 576px) {
    .flatpickr-continue-btn {
        padding: 14px 20px;
        font-size: 16px;
    }
}

.flatpickr-continue-btn {
    width: 100%;
    margin-top: 10px;
    border: 1px solid #FCB722;
    background: #FCB722;
    border-radius: 8px;
    padding: 5px 0;
    margin: 10px 0 0;
}

.faq-accordion-body p a {
    color: #FCB722;
}

.free-item-notice {
    color: #eee;
    font-size: 13px;
    display: flex;
    justify-content: end;
    gap: 8px;
}

#startingPriceRow .breakdown-row-desc {
    display: flex;
    justify-content: end;
}

div#wrappingBreakdown,
div#insuranceBreakdown {
    background: rgba(252, 183, 34, 0.1);
    border-color: #fcb722;
    border: 2px solid #fcb722;
    border-radius: 10px;
    margin-top: 10px;
    padding: 15px;
}

/* What's Included Box in Starting Price */
.whats-included-box {
    background: rgba(252, 183, 34, 0.1);
    border: 1px solid #fcb7223d;
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 12px;
    font-size: 13px;
    color: #fff;
}

.whats-included-title {
    font-weight: 600;
    color: #fcb722;
    margin-bottom: 8px;
    font-size: 13px;
}

.whats-included-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ddd;
    margin-bottom: 6px;
    font-size: 12px;
}

.whats-included-item:last-child {
    margin-bottom: 0;
}

.whats-included-item .checkmark {
    color: #fcb722;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

/* Discount Badges Container */
.discount-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    justify-content: flex-end;
}

.discount-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInScale 0.3s ease-out;
    background: rgba(252, 183, 34, 0.1);
    border: 1px solid #fcb7223d;
}

.discount-badge .discount-icon {
    font-size: 14px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}





input.form-input.datetime-input.flatpickr-input.flatpickr-mobile {
  -webkit-appearance: none; /* Removes default styling on iOS devices */
  -moz-appearance: none; /* Removes default styling on Firefox */
  appearance: none; /* Removes default styling */
}

input[type="date"] {
  width: 100%; /* Ensures the field takes full available width */
  font-size: 16px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* .date-picker-wrapper input{
     border: 1px solid #ccc !important;
     box-sizing: border-box;
     color: red !important;
}

.date-picker-wrapper input::placeholder {
    color: red !important;
} */

/* input.form-input.datetime-input.flatpickr-input.flatpickr-mobile {
color: red !important;

}
input.form-input.datetime-input.flatpickr-input.flatpickr-mobile::placeholder{
    color: red !important;
} */

/* For iPhone specific fix */
@media (max-width: 480px) {
  input[type="date"] {
    width: 95%; /* Slightly reduced width to ensure proper rendering on small screens */
    font-size: 14px;
  }
}

@supports (-webkit-appearance: none) {
   input.form-input.datetime-input.flatpickr-input.flatpickr-mobile {
    /* Custom styling to ensure the date picker is wide enough */
    width: 100%;
    font-size: 16px;
    padding: 0px;
    border-radius: 16px;  
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .whats-included-box {
        padding: 10px 12px;
        font-size: 12px;
    }

    .whats-included-title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .whats-included-item {
        font-size: 11px;
        margin-bottom: 5px;
        gap: 6px;
    }

    .whats-included-item .checkmark {
        font-size: 13px;
    }

    .discount-badges-container {
        gap: 6px;
        margin-top: 8px;
    }

    .discount-badge {
        font-size: 11px;
        padding: 5px 10px;
        gap: 5px;
    }

    .discount-badge .discount-icon {
        font-size: 13px;
    }
     
/*    input.form-input.datetime-input.flatpickr-input.flatpickr-mobile {*/
/*    max-width: 280px !important;*/
/*}*/


}

@media (max-width: 480px) {
    .whats-included-box {
        padding: 8px 10px;
    }

    .whats-included-item {
        font-size: 10.5px;
    }

    .discount-badge {
        font-size: 10.5px;
        padding: 4px 8px;
    }
}

.order-progress-section {
    padding: 0;
    margin-top: 130px;
}

.order-top-nav {
    position: fixed;
    z-index: 1000000;
    background-color: #000;
    width: calc(100% - 32px);
    left: 50%;
    transform: translateX(-50%);
}


.payment-continue-btn {
    flex: 0 0 100%;
}

.payment-method-content {
    flex-wrap: wrap;
    gap: 15px;
}

.paybutton-link {
    flex: 1 1 auto;
}