/*
 * ARHolidays UK - Design System
 * Color: Dark Blue #242A59, Gold #FFC107
 * Fonts: Poppins (headings), Open Sans (body)
 */

/* ========== CSS Custom Properties ========== */
:root {
    --primary: #242A59;
    --primary-light: #353D80;
    --primary-dark: #15193B;
    --accent: #FFC107;
    --accent-hover: #D39E00;
    --accent-light: #FFF8E1;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --bg: #fff;
    --bg-light: #f8f9fa;
    --bg-section: #f0f4f8;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-accent: 0 5px 20px rgba(255, 193, 7, 0.3);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --header-height: 80px;
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Typography ========== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 17px;
    max-width: 600px;
    margin: 16px auto 0;
}

/* ========== Header / Navbar ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary);
    height: var(--header-height);
    transition: var(--transition);
}

.header.scrolled {
    background: var(--primary-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    height: 68px;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .logo img {
    max-height: 38px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex !important;
    align-items: center;
    gap: 6px;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 24px;
    z-index: 1000;
    transform: translateY(10px);
    transition: all 0.3s ease;
    text-align: left;
}

.nav-dropdown:hover .dropdown-content,
.nav-dropdown:active .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-header-title {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dropdown-grid a {
    color: var(--text-color) !important;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.dropdown-grid a::after {
    display: none !important;
}

.dropdown-grid a:hover {
    color: var(--primary) !important;
    transform: translateX(3px);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(36, 42, 89, 0.75) 0%, rgba(36, 42, 89, 0.4) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    color: #fff;
    font-size: 52px;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--accent);
    width: 32px;
    border-radius: 6px;
}

/* ========== Search Bar ========== */
.search-bar {
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: 1100px;
    margin: -40px auto 0;
    position: relative;
    z-index: 5;
}

.search-bar .form-group {
    flex: 1;
    min-width: 0;
}

.search-bar label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.search-bar select,
.search-bar input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
    background: var(--bg-light);
}

.search-bar select:focus,
.search-bar input:focus {
    border-color: var(--accent);
    outline: none;
    background: #fff;
}

.search-bar .btn {
    flex-shrink: 0;
    height: 48px;
    white-space: nowrap;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
    color: #fff;
}

.btn-secondary {
    background: var(--primary);
    color: #fff;
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

/* ========== Package Cards ========== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.package-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.package-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-card-image img {
    transform: scale(1.08);
}

.package-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-discount-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #e74c3c;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
    z-index: 2;
}

.package-card-price {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.package-card-price small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
}

/* ========== Package Detail Top Price ========== */
.detail-price-wrapper {
    margin: 14px 0 24px;
}

.detail-price-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-price-original {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.detail-price-original s {
    color: var(--text-light);
    font-size: 16px;
    opacity: 0.8;
}

.detail-badge-inline {
    background: #FFEBEE;
    color: #e74c3c;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 800;
}

.detail-price-offer {
    color: var(--accent);
    font-size: 30px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

.detail-price-offer small {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 4px;
}

.package-card-body {
    padding: 20px;
}

.package-card-destination {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.package-card-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.package-card-body h3 a {
    color: inherit;
}

.package-card-body h3 a:hover {
    color: var(--accent);
}

.package-card-meta {
    display: flex;
    gap: 16px;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
}

.package-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-card-desc {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

/* ========== Book With Confidence ========== */
.confidence-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.confidence-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.confidence-card {
    background: #F4F7F9;
    border-radius: 8px;
    padding: 24px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.confidence-card:hover {
    transform: translateY(-4px);
    background: #eef2f5;
}

.confidence-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.confidence-card p {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* ========== Accreditation Statement ========== */
.accreditation-section {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.4) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-top: 1px solid rgba(255, 193, 7, 0.3);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.accreditation-section p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.accreditation-section p:last-child {
    margin-bottom: 0;
}

.accreditation-section .acc-strong {
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
    max-width: 900px;
}

/* ========== Testimonials ========== */
.testimonials-section {
    padding: 80px 0;
    background: var(--primary);
    color: #fff;
}

.testimonials-section .section-title h2 {
    color: #fff;
}

.testimonials-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 15px;
}

.testimonial-author-loc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== CTA Section ========== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, #FFB300 100%);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 28px;
}

.cta-section .btn {
    background: var(--primary);
    color: #fff;
}

.cta-section .btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* ========== Forms ========== */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: #fff;
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Custom Dropdown UI for Destination Picker */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.custom-select-trigger span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-trigger i {
    color: var(--text-light);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.15);
}

.custom-select-wrapper.open .custom-select-trigger i {
    transform: rotate(180deg);
}

.custom-options-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    overflow: hidden;
    max-height: 350px;
}

.custom-select-wrapper.open .custom-options-panel {
    display: flex;
    flex-direction: column;
}

.dropdown-view-container {
    display: flex;
    width: 200%;
    /* Holds two views side-by-side */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.dropdown-view-container.show-cities {
    transform: translateX(-50%);
}

.dropdown-view {
    width: 50%;
    overflow-y: auto;
    max-height: 350px;
}

.dropdown-group-header {
    background: var(--bg-color);
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-bottom: 1px solid var(--border);
}

.dropdown-group-header:hover {
    background: var(--border);
}

.custom-option {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: var(--bg-color);
}

.custom-option.selected {
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-dark);
    font-weight: 600;
}

.custom-option .opt-label {
    font-size: 14px;
}

.custom-option .opt-meta {
    font-size: 12px;
    color: var(--text-light);
    background: var(--bg-color);
    padding: 2px 8px;
    border-radius: 12px;
}

/* ========== Alerts ========== */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    animation: fadeInUp 0.3s ease;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert-info {
    background: #e3f2fd;
    color: #242A59;
    border-left: 4px solid #242A59;
}

.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
}

.alert-close:hover {
    opacity: 1;
}

/* ========== Footer ========== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer h4 {
    color: #fff;
    font-size: 17px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 5px 0;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact-icon {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.trust-badges {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    align-items: center;
}

.trust-badge-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== WhatsApp & Call Buttons ========== */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    cursor: pointer;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.float-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: #fff;
    padding: 14px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    z-index: 998;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

/* ========== Page Header (inner pages) ========== */
.page-header {
    background: var(--primary);
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.page-header h1 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs span {
    color: var(--accent);
}

/* ========== Package Detail Page ========== */
.package-detail {
    padding: 60px 0;
}

.package-detail-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 50px;
    align-items: start;
}

.package-detail-grid>* {
    min-width: 0;
    /* Prevents CSS Grid blowout from scrollable children */
}

.package-sidebar {
    position: sticky;
    top: 100px;
}

.package-booking-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.package-title {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--primary);
}

.gallery-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-main {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    scroll-behavior: smooth;
    height: 480px;
}

.gallery-main::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    height: 100%;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    z-index: 10;
}

.gallery-arrow:hover {
    background: #fff;
    color: var(--accent);
    transform: translateY(-50%) scale(1.05);
}

.gallery-arrow.prev {
    left: 16px;
}

.gallery-arrow.next {
    right: 16px;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
    /* Room for active state transform */
}

.gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    width: 90px;
    height: 65px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
    scroll-snap-align: start;
    opacity: 0.6;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-main {
        height: 300px;
    }

    .gallery-arrow {
        display: none;
        /* Rely on swipe for mobile */
    }

    .gallery-thumbs {
        margin-top: 12px;
    }
}

.package-price-tag {
    font-size: 34px;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.package-price-tag small {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

.package-meta-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.package-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
}

.meta-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.package-meta-item:hover .meta-icon {
    background: var(--accent-light);
    transform: scale(1.05);
}

.package-tabs {
    display: flex;
    gap: 10px;
    border-bottom: none;
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.package-tabs::-webkit-scrollbar {
    display: none;
}

.package-tab {
    padding: 12px 26px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    flex-shrink: 0;
    white-space: nowrap;
}

.package-tab.active,
.package-tab:hover {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.tab-content {
    display: none;
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 15px;
}

.include-list {
    list-style: none;
}

.include-list li {
    padding: 8px 0;
    padding-left: 32px;
    position: relative;
    font-size: 15px;
    color: var(--text-light);
}

.include-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #28a745;
    background: #e8f5e9;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    top: 10px;
}

.exclude-list li::before {
    content: '\f00d';
    color: #dc3545;
    background: #f8d7da;
}

/* ========== Enquiry Form ========== */
.enquiry-form-section {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    margin-top: 30px;
}

.enquiry-form-section h3 {
    margin-bottom: 24px;
    font-size: 22px;
}

/* ========== Pagination ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.pagination a {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
}

.pagination a:hover {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
}

.pagination span.current {
    background: var(--accent);
    color: #fff;
    border: none;
}

/* ========== Filter Sidebar ========== */
.packages-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding: 60px 0;
}

.filter-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    transition: transform 0.3s ease;
}

.mobile-filter-toggle {
    display: none;
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.filter-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-header-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.close-filter {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text);
    cursor: pointer;
}

.filter-box {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.filter-box h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-box h4 i {
    color: var(--accent);
}

.filter-box .form-control {
    margin-bottom: 10px;
    border-color: #e1e8ed;
    transition: all 0.2s ease;
}

.filter-box .form-control:hover,
.filter-box .form-control:focus {
    border-color: var(--accent);
}

.price-range-display {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ========== About Page ========== */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.trust-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.trust-card-icon {
    font-size: 42px;
    margin-bottom: 14px;
}

.trust-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.trust-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ========== Contact Page ========== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.contact-form-box {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 14px;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* ========== Loading Spinner ========== */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 40px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========== Suppliers Section ========== */
.suppliers-section {
    padding: 30px 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    text-align: center;
    overflow: hidden;
}

.suppliers-title {
    color: #2196F3;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.suppliers-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.suppliers-marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-suppliers 90s linear infinite;
}

.suppliers-marquee-track:hover {
    animation-play-state: paused;
}

.suppliers-marquee-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    padding-right: 40px;
}

.supplier-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.supplier-logo:hover {
    transform: scale(1.05);
}

@keyframes scroll-suppliers {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .packages-layout {
        grid-template-columns: 1fr;
    }

    .mobile-filter-toggle {
        display: flex;
    }

    .filter-sidebar {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.95);
        width: 90vw;
        max-width: 400px;
        height: auto;
        max-height: 85vh;
        background: #fff;
        z-index: 1050;
        padding: 24px;
        overflow-y: auto;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .filter-sidebar.open {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }

    .filter-backdrop.open {
        display: block;
        opacity: 1;
    }

    .filter-header-mobile {
        display: flex;
    }

    .filter-box {
        border: none;
        padding: 0 0 20px 0;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .package-detail-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .confidence-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 66px;
    }

    .suppliers-title {
        font-size: 20px;
    }

    .supplier-logo {
        max-height: 48px;
    }

    .suppliers-marquee-group {
        gap: 30px;
        padding-right: 30px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        width: 100%;
    }

    .nav-links .nav-dropdown {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links .nav-dropdown .dropdown-trigger {
        padding: 14px 0;
        font-size: 16px;
        width: 100%;
        justify-content: flex-start;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .search-bar {
        flex-direction: column;
        align-items: stretch;
        margin-top: -30px;
        width: 100%;
    }

    .search-bar .btn {
        margin-top: 10px;
        width: 100%;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .confidence-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .float-call {
        display: flex;
    }

    .float-whatsapp {
        bottom: 80px;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 70vh;
    }

    /* Package Detail Mobile Fixes */
    .gallery-main {
        height: 250px;
    }

    .package-meta-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .package-booking-card {
        padding: 24px;
    }

    .package-title {
        font-size: 24px;
    }

    .package-price-tag {
        font-size: 28px;
    }

    .package-tabs {
        flex-wrap: wrap;
    }

    .tab-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .package-card-image {
        height: 180px;
    }
}

@media (max-width: 900px) {
    .nav-dropdown {
        display: block;
        text-align: left;
    }

    .dropdown-trigger {
        justify-content: flex-start;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding: 15px;
        min-width: 100%;
        visibility: visible;
        opacity: 1;
        transform: none;
        border-radius: 10px;
        border-left: 2px solid var(--accent);
        margin-top: 10px;
        display: none;
    }

    .nav-dropdown:hover .dropdown-content {
        display: none;
    }

    .nav-dropdown.mobile-open .dropdown-content {
        display: block;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
    }

    .dropdown-trigger::after {
        display: none !important;
    }
}