/* ==========================================================================
   Pack and Go Travel House - Premium CSS Stylesheet
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Custom Properties (Design Tokens) */
:root {
    /* Color Palette */
    --primary-navy: #0f1e36;
    --primary-navy-light: #182e50;
    --accent-gold: #c5a059;
    --accent-gold-hover: #b08c47;
    --accent-gold-light: #f6f0e2;
    --accent-red: #c62828;
    --accent-red-hover: #b71c1c;
    --accent-green: #25d366; /* WhatsApp Green */
    
    /* Neutral Colors */
    --bg-dark: #070d19;
    --bg-light: #faf9f6; /* Warm off-white */
    --bg-card-light: #ffffff;
    --bg-card-dark: #12213a;
    
    /* Text Colors */
    --text-dark-primary: #1e293b;
    --text-dark-secondary: #475569;
    --text-light-primary: #f8fafc;
    --text-light-secondary: #cbd5e1;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout & Spacing */
    --container-max-width: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-gold: 0 8px 24px rgba(197, 160, 89, 0.2);

    /* Logo Styling Variables */
    --logo-text-color: #0f1e36;
    --logo-banner-bg: #0f1e36;
    --logo-banner-text: #ffffff;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-navy);
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
}

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

.text-gold {
    color: var(--accent-gold);
}

.text-red {
    color: var(--accent-red);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    outline: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--text-light-primary);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: var(--primary-navy);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(197, 160, 89, 0.35);
}

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

.btn-outline:hover {
    background-color: var(--primary-navy);
    color: var(--text-light-primary);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--text-light-primary);
    color: var(--primary-navy);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background-color: var(--accent-gold-light);
    transform: translateY(-2px);
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.badge-gold {
    background-color: var(--accent-gold-light);
    color: var(--accent-gold-hover);
    border: 1px solid var(--accent-gold);
}

.badge-red {
    background-color: #ffebee;
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(197, 160, 89, 0.2);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 5px 0;
    background-color: rgba(15, 30, 54, 0.95);
    border-bottom: 2px solid var(--accent-gold);
    --logo-text-color: #ffffff;
    --logo-banner-bg: var(--accent-gold);
    --logo-banner-text: #0f1e36;
}

.header.scrolled .nav-link {
    color: var(--text-light-primary);
}

.header.scrolled .nav-link:hover, 
.header.scrolled .nav-link.active {
    color: var(--accent-gold);
}

.header.scrolled .phone-contact {
    color: var(--text-light-primary);
}

.header.scrolled .phone-icon {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* Logo Image & Text Styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 56px;
    width: 56px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--logo-banner-bg);
    transition: var(--transition-smooth);
    background-color: #ffffff;
}

.header.scrolled .logo-img {
    border-color: var(--accent-gold);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-brand {
    display: flex;
    align-items: baseline;
    line-height: 1.1;
}

.logo-brand-pack,
.logo-brand-go {
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 1.45rem;
    color: var(--logo-text-color);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.logo-brand-and {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-red);
    margin: 0 4px;
}

.logo-subtitle {
    background-color: var(--logo-banner-bg);
    color: var(--logo-banner-text);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.55rem;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 3.5px;
    text-align: center;
    margin-top: 4px;
    width: fit-content;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-navy);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold-hover);
}

.contact-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-navy);
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-navy);
    color: var(--text-light-primary);
    transition: var(--transition-smooth);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-navy);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.header.scrolled .hamburger span {
    background-color: var(--text-light-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-light-primary);
    background-color: var(--primary-navy);
    overflow: hidden;
    padding-top: 80px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 13, 25, 0.85) 0%, rgba(7, 13, 25, 0.6) 50%, rgba(197, 160, 89, 0.15) 100%),
                linear-gradient(to top, rgba(7, 13, 25, 0.9) 0%, transparent 40%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 680px;
    animation: fadeInUp 1s ease-out;
}

.puja-badge {
    background: linear-gradient(135deg, var(--accent-red) 0%, #d32f2f 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-light-primary);
}

.hero-title span {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 400;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light-secondary);
    margin-bottom: 35px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Quick Features Section */
.features-section {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background-color: var(--bg-card-light);
    border-radius: var(--border-radius-md);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--accent-gold);
}

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

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-navy);
    color: var(--accent-gold);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
}

/* Section Header */
.section-header {
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 15px auto 0 auto;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-dark-secondary);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: var(--bg-card-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.4);
}

.package-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.package-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
}

.package-duration-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(15, 30, 54, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--text-light-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    margin-bottom: 12px;
}

.package-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.package-highlights {
    font-size: 0.9rem;
    color: var(--text-dark-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.package-price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark-secondary);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
}

.sharing-info {
    font-size: 0.75rem;
    color: var(--text-dark-secondary);
    font-weight: 500;
}

/* Tab Filters for Packages Page */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    background-color: var(--bg-card-light);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--primary-navy);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-tab:hover,
.filter-tab.active {
    background-color: var(--primary-navy);
    color: var(--text-light-primary);
    border-color: var(--primary-navy);
    box-shadow: var(--shadow-sm);
}

/* About Intro Section (Home) */
.about-intro {
    background-color: var(--accent-gold-light);
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.about-intro-img-wrapper {
    position: relative;
}

.about-intro-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-navy);
    color: var(--text-light-primary);
    padding: 25px;
    border-radius: var(--border-radius-md);
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-experience-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.about-experience-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-intro-content .section-title {
    text-align: left;
}

.about-intro-content .section-title::after {
    margin: 15px 0 0 0;
}

.about-intro-text {
    color: var(--text-dark-secondary);
    margin-bottom: 30px;
}

.about-intro-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.bullet-icon {
    color: var(--accent-red);
}

/* Insurance Callout */
.insurance-banner {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    color: var(--text-light-primary);
    border-radius: var(--border-radius-md);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

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

.insurance-icon {
    font-size: 3rem;
    color: var(--accent-gold);
}

.insurance-title {
    font-size: 1.6rem;
    color: var(--text-light-primary);
    margin-bottom: 5px;
}

.insurance-desc {
    color: var(--text-light-secondary);
    font-size: 0.95rem;
}

/* Testimonials / Reviews */
.testimonials-section {
    background-color: #f0edf5; /* Light subtle violet tint background */
}

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

.testimonial-card {
    background-color: var(--bg-card-light);
    border-radius: var(--border-radius-md);
    padding: 35px;
    box-shadow: var(--shadow-md);
    position: relative;
    border-left: 5px solid var(--accent-red);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

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

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    color: rgba(197, 160, 89, 0.15);
    font-family: serif;
    line-height: 1;
}

.ratings {
    display: flex;
    gap: 4px;
    color: #ffb300;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-dark-secondary);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

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

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent-gold-light);
    color: var(--accent-gold-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--accent-gold);
}

.author-info h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-navy);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-dark-secondary);
}

/* Call To Action Banner */
.cta-banner {
    position: relative;
    background-image: linear-gradient(rgba(15, 30, 54, 0.85), rgba(15, 30, 54, 0.95)), url('assets/travel_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light-primary);
    text-align: center;
    padding: 120px 0;
    border-top: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
}

.cta-title {
    font-size: 3rem;
    color: var(--text-light-primary);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-desc {
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: var(--text-light-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact / Booking Page Styling */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info-panel {
    background-color: var(--primary-navy);
    color: var(--text-light-primary);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-lg);
}

.contact-info-panel h3 {
    color: var(--text-light-primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid var(--accent-gold);
}

.contact-item-details h5 {
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item-details p,
.contact-item-details a {
    font-size: 1.05rem;
    color: var(--text-light-secondary);
}

.contact-item-details a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.contact-form-panel {
    background-color: var(--bg-card-light);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form-subtitle {
    color: var(--text-dark-secondary);
    margin-bottom: 35px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: #faf9f6;
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent-gold);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

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

/* Gallery Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 280px;
    cursor: pointer;
    border: 3px solid #ffffff;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 30, 54, 0.8) 0%, transparent 60%);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
    color: var(--text-light-primary);
    transform: translateY(10px);
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.gallery-info h4 {
    color: var(--text-light-primary);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 0.9;
    background: linear-gradient(to top, rgba(15, 30, 54, 0.9) 0%, rgba(197, 160, 89, 0.1) 100%);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

/* Lightbox Modal styling */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 13, 25, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 900px;
    max-height: 80vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-gold);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-caption {
    color: #ffffff;
    text-align: center;
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    animation: pulse 2s infinite;
}

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

.float-whatsapp {
    background-color: var(--accent-green);
}

.float-phone {
    background-color: var(--accent-red);
}

/* Inner Page Header */
.inner-hero {
    background: linear-gradient(rgba(15, 30, 54, 0.8), rgba(15, 30, 54, 0.9)), url('assets/travel_hero.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light-primary);
    text-align: center;
    padding: 140px 0 80px 0;
    border-bottom: 3px solid var(--accent-gold);
}

.inner-hero h1 {
    font-size: 3rem;
    color: var(--text-light-primary);
    margin-bottom: 10px;
}

.inner-hero-breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light-secondary);
}

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

/* About Details Page */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.about-features-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.about-features-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 89, 0.3);
}

.about-features-icon {
    font-size: 2.2rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

/* Footer styling */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light-secondary);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--accent-gold);
    --logo-text-color: #ffffff;
    --logo-banner-bg: var(--accent-gold);
    --logo-banner-text: #0f1e36;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .logo-img {
    border-color: var(--accent-gold);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-title {
    color: var(--text-light-primary);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--text-light-secondary);
}

.footer-link:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-contact-icon {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.footer-contact-text a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 0.85rem;
}

.footer-credits {
    font-size: 0.85rem;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid,
    .testimonials-grid,
    .gallery-grid,
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .section-padding {
        padding: 60px 0;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-navy);
        flex-direction: column;
        padding: 50px 0;
        transition: var(--transition-smooth);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--text-light-primary);
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .contact-nav {
        display: none; /* Hide on mobile navbar to save space */
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-intro-grid,
    .contact-section-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-img-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .about-experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }
    
    .insurance-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .features-grid,
    .packages-grid,
    .testimonials-grid,
    .gallery-grid,
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
