/* ===================================
   Global Styles & Reset
   =================================== */
html {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

:root {
    --primary-color: #3B2A5A;
    --primary-dark: #2A1D42;
    --secondary-color: #2E8B6D;
    --accent-color: #1F6F8B;
    --text-dark: #2B2B2B;
    --text-light: #6b7280;
    --bg-light: #FAFAF8;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.navbar .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    .navbar .container {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

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

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

ul {
    list-style: none;
}

/* ===== General form inputs fix - prevent overflow ===== */
input,
select,
textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 75px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: -5px;
}

.logo-text .tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary,
.btn-secondary,
.btn-large {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    margin-right: 0.75rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white !important;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white !important;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(135deg, #3B2A5A 0%, #2A1D42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.65;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 42, 90, 0.55) 0%, rgba(31, 111, 139, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        padding: 1rem 16px;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

.hero-stats {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 2;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Plan Tour Form Section (Updated)
   =================================== */
.enquiry-section {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    padding: 4rem 10px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .enquiry-section {
        padding: 2rem 10px;
        margin-top: -1.5rem;
    }
}

@media (max-width: 480px) {
    .enquiry-section {
        padding: 1.5rem 8px;
        margin-top: -1rem;
    }
}

.enquiry-card {
    background: white;
    border-radius: 12px;
    padding: 3rem 5rem 60px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    min-height: 400px;
    position: relative;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .enquiry-card {
        padding: 2rem 3rem;
    }
}

@media (max-width: 768px) {
    .enquiry-card {
        padding: 1.5rem;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .enquiry-card {
        padding: 1rem 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

.plan-tour {
    width: 100%;
}

.plan-banner {
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .plan-banner {
        margin-bottom: 1rem;
    }
}

.plan-banner span {
    font-size: clamp(0.75rem, 3.5vw, 1.2rem);
    color: var(--text-light);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.plan-banner h4 {
    font-size: clamp(1.3rem, 6vw, 2.5rem);
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

.plan-banner h4 span {
    color: var(--secondary-color);
}

.top-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .top-fields {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .top-fields {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.bottom-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    gap: 1.5rem;
    align-items: end;
}

@media (max-width: 1024px) {
    .bottom-fields {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .bottom-fields {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        align-items: stretch;
    }
}

.input-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.input-field input,
.input-field select {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .input-field input,
    .input-field select {
        font-size: 16px;
        padding: 0.75rem;
    }
}

.input-field input:focus,
.input-field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 42, 90, 0.1);
}

.input-field label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.submit-btn input[type="submit"] {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}

.submit-btn input[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== Terms & Conditions checkbox fix ===== */
.terms-row,
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 12px;
}

.terms-row input[type="checkbox"],
.checkbox-row input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-row label,
.checkbox-row label {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design for Plan Tour Form */
@media (max-width: 768px) {
    .top-fields {
        grid-template-columns: 1fr;
    }
    
    .bottom-fields {
        grid-template-columns: 1fr;
    }
    
    .input-field.schedule {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group .checkbox-label {
    margin-bottom: 0;
    font-weight: 400;
    display: flex;
    flex-direction: row;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

/* Date input styling for visibility */
.form-group input[type="date"] {
    min-height: 44px;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.form-group input[type="date"]::placeholder {
    color: var(--text-light);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 42, 90, 0.15);
}

@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 0.75rem;
    }
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}

/* ===================================
   Featured Packages
   =================================== */
.featured-packages {
    padding: 5rem 0;
    background: var(--bg-light);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .featured-packages {
        padding: 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .featured-packages {
        padding: 1.5rem 0;
    }
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.package-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-content {
    padding: 1.5rem;
}

.package-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.package-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.package-details span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.package-price-note {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

/* ---- Duration pills on package cards ---- */
.duration-pills-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.duration-pills-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.duration-pills {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    background: rgba(59, 42, 90, 0.07);
    border-radius: 30px;
    padding: 4px;
}

.duration-pill {
    padding: 0.28rem 0.7rem;
    border: none;
    border-radius: 30px;
    background: transparent;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
    line-height: 1.5;
}

.duration-pill:hover {
    background: rgba(59, 42, 90, 0.15);
}

.duration-pill.pill-active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 8px rgba(59, 42, 90, 0.35);
}

/* ---- Variant tabs on package detail page ---- */
.variant-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    padding: 5px;
    background: rgba(59, 42, 90, 0.07);
    border-radius: 35px;
    width: fit-content;
}

.variant-tab {
    padding: 0.45rem 1.1rem;
    border: none;
    border-radius: 30px;
    background: transparent;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}

.variant-tab:hover {
    background: rgba(59, 42, 90, 0.15);
}

.variant-tab.tab-active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 2px 10px rgba(59, 42, 90, 0.35);
}

/* ===================================
   Destinations
   =================================== */
.destinations {
    padding: 5rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .destinations {
        padding: 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .destinations {
        padding: 1.5rem 0;
    }
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.destination-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.05);
}

.dest-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.dest-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.dest-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.package-count {
    display: inline-block;
    background: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ===================================
   Why Choose Us
   =================================== */
.why-choose {
    padding: 5rem 0;
    background: var(--bg-light);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .why-choose {
        padding: 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .why-choose {
        padding: 1.5rem 0;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 5rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .about-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 1.5rem 0;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.2rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-text p {
        font-size: 0.92rem;
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }
}

.about-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-features {
        gap: 0.75rem;
        margin-top: 1rem;
    }
}

.about-feature {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.about-feature strong {
    font-size: clamp(1rem, 4vw, 2rem);
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.about-feature span {
    color: var(--text-light);
    font-size: clamp(0.65rem, 2vw, 0.9rem);
    white-space: normal;
    line-height: 1.3;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-light);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 1.5rem 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group:last-child {
    margin-bottom: 0;
}

.contact-form button {
    margin-top: 1rem;
    width: 100%;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #3B2A5A;
    color: white;
    padding: 3rem 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-main-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.footer-logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin: 0;
    line-height: 1;
}

.footer-logo-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1;
}

.office-info h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-brand {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

.footer-sub-brand {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0;
    line-height: 1.1;
    display: block;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-col h4 {
    padding-bottom: 0.7rem;
}

.footer-col:first-child {
    padding-right: 2rem;
}

.footer-col:first-child p {
    font-size: 0.9rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-col a:hover {
    color: white;
}

.social-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: flex-start;
}

@media (max-width: 600px) {
    .social-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    transition: all 0.3s ease;
    opacity: 1;
    flex-shrink: 0;
}

.social-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1); /* Ensures icons are white */
    transition: all 0.3s ease;
}

.social-icon span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-icon:hover span {
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon:hover img {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 24px 16px;
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        width: 100%;
    }
    
    /* Popular Tours links - fix truncation */
    .popular-tours-col a,
    .footer-col ul li a {
        white-space: normal;
        word-break: break-word;
        display: block;
        padding: 4px 0;
        font-size: 14px;
    }
    
    /* Order the footer columns explicitly */
    .quick-links-col {
        order: 1;
    }

    .connect-col,
    .social-links-col {
        order: 2;
        margin-top: -16px;
    }

    .popular-tours-col {
        order: 3;
    }
    
    .footer-right-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo {
        justify-content: flex-start;
        text-align: left;
    }
    
    .office-info, .contact-info {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-col {
        width: 100%;
    }
    
    /* Popular Tours links - fix truncation */
    .popular-tours-col a,
    .footer-col ul li a {
        white-space: normal;
        word-break: break-word;
        display: block;
        padding: 4px 0;
        font-size: 14px;
    }
    
    .social-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-icon {
        gap: 0.5rem;
    }
    
    .social-icon span {
        display: inline;
    }
    
    .footer-col ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #3B2A5A 0%, #2A1D42 100%);
    color: white;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 42, 90, 0.65) 0%, rgba(31, 111, 139, 0.55) 100%);
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .page-header {
        padding: 3.5rem 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 2.5rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
}

/* ===================================
   Filter Section
   =================================== */
.filter-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid var(--border-color);
}

.filter-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.filter-group select {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 42, 90, 0.1);
}

.filter-group select:hover {
    border-color: var(--primary-color);
}

.filter-wrapper .btn-secondary {
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: fit-content;
}

.filter-wrapper .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 42, 90, 0.3);
}

.results-count {
    text-align: center;
    color: var(--text-light);
    font-weight: 500;
}

.results-count p {
    background: white;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.no-results {
    text-align: center;
    padding: 3rem;
}

.no-results h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ===================================
   Packages Section
   =================================== */
.packages-section {
    padding: 3rem 0;
    min-height: 400px;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===================================
   Package Details Page
   =================================== */
.breadcrumb {
    padding: 1.5rem 0;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.package-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.package-hero-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.package-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.package-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-light);
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.meta-item {
    display: flex;
    gap: 0.5rem;
}

.package-section {
    margin-top: 2rem;
}

.package-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.inclusions-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.inclusions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.info-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.terms-list {
    list-style: disc;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.terms-list li {
    padding: 0.5rem 0;
}

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

.booking-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.price-section {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.price-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.booking-form-section {
    padding: 1.5rem 0;
}

.booking-form-section h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-color);
    color: white;
}

.help-section {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.help-section h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.help-section p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.help-phone {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.related-packages {
    padding: 3rem 0;
    background: var(--bg-light);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* ===================================
   Booking Page
   =================================== */
.booking-section {
    padding: 3rem 0;
    background: var(--bg-light);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .booking-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 1.5rem 0;
    }
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.booking-form-container {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .booking-form-container {
        padding: 1.5rem 16px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .booking-form-container {
        padding: 1rem 16px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .form-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .form-header h2 {
        font-size: 1.3rem;
    }
}

.form-section {
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .form-section {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .form-section {
        margin-bottom: 1.2rem;
    }
}

.form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.checkbox-label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.form-actions button,
.form-actions input[type="submit"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.booking-sidebar .info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

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

.benefits-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.benefits-list strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.benefits-list p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-box {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.contact-box h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-box p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-all;
}

.contact-btn-large:hover {
    background: var(--primary-color);
    color: white;
}

.testimonial-box {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.testimonial-box h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.testimonial strong {
    color: var(--text-dark);
    font-size: 0.9rem;
}
/* ===================================
   Whatsapp Contact Button
   =================================== */
   .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}

.bounce {
    animation: bounce 2s 1;
}

@keyframes bounce {
    0%,
    25%,
    50%,
    75%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-12px);
    }
}
/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.itinerary-day {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.itinerary-day h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.itinerary-day p {
    color: var(--text-light);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .navbar {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .nav-wrapper {
        padding: 0 15px;
        width: 100%;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        display: none;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .enquiry-card {
        padding: 1.5rem;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .package-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    
    .filter-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        font-size: 2.2rem;
        line-height: 1;
    }
    
    .footer-col ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .logo img {
        height: 55px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-brand {
        font-size: 1.8rem;
        line-height: 1;
    }
    
    .footer-sub-brand {
        font-size: 1rem;
    }
    
    .footer-col ul {
        flex-direction: column;
    }
    
    .social-icon img {
        width: 28px;
        height: 28px;
    }
}
