@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================== */
:root {
    /* Color Tokens */
    --primary: #1E3547;         /* Deep Forest Slate Blue */
    --primary-light: #2C485E;
    --secondary: #2C7A7B;       /* Alpine Green */
    --secondary-light: #319795;
    --accent: #E28743;          /* Himalayan Sunrise Amber */
    --accent-hover: #D07633;
    --bg-light: #F7FAFC;        /* Soft Off-White */
    --white: #FFFFFF;
    --text-dark: #2D3748;       /* Charcoal Blue */
    --text-muted: #718096;
    --text-light: #EDF2F7;
    --border-color: #E2E8F0;
    
    /* Layout Constants */
    --container-width: 1200px;
    --header-height: 80px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
    --shadow-accent: 0 6px 20px rgba(226, 135, 67, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
}

/* ==========================================
   BASE & RESET STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ==========================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================== */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.25rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

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

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(226, 135, 67, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

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

/* ==========================================
   GLOBAL HEADER & NAVIGATION
   ========================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-nav.scrolled {
    background-color: var(--white);
    height: 70px;
    box-shadow: var(--shadow-md);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

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

.nav-link {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
    position: relative;
    padding: 8px 0;
}

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

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

.nav-link.active {
    font-weight: 700;
    color: var(--accent) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

/* Mobile active toggle styling */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   HERO SECTIONS
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(30, 53, 71, 0.85), rgba(30, 53, 71, 0.4));
    z-index: 1;
}

.hero-inner-page {
    height: 60vh;
    min-height: 400px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-inner-page .hero-title {
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-btn-group {
    display: flex;
    gap: 15px;
}

/* ==========================================
   VALUE PROPOSITION
   ========================================== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(44, 122, 123, 0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(44, 122, 123, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.75rem;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background-color: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.value-card-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.value-card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   FEATURED DESTINATIONS / PACKAGES
   ========================================== */
.destination-grid, .package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dest-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.dest-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 53, 71, 0.9) 20%, rgba(30, 53, 71, 0.3) 60%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    z-index: 2;
}

.dest-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.dest-desc {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 20px;
}

.dest-cta {
    align-self: flex-start;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dest-cta svg {
    transition: transform 0.3s ease;
}

.dest-card:hover .dest-cta svg {
    transform: translateX(5px);
}

/* ==========================================
   PACKAGE CARDS
   ========================================== */
.pkg-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.pkg-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.pkg-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent);
    color: var(--white);
    padding: 6px 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 20px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.pkg-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(30, 53, 71, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--white);
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    z-index: 2;
}

.pkg-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.pkg-inclusions {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    margin: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.inclusion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.inclusion-item svg {
    font-size: 1.2rem;
    color: var(--secondary);
}

.pkg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.pkg-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.pkg-price {
    font-size: 1.35rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--secondary);
}

/* ==========================================
   TRUST SECTION & CAROUSEL
   ========================================== */
.trust-section {
    background-color: var(--primary);
    color: var(--white);
}

.trust-section .section-title {
    color: var(--white);
}

.trust-section .section-subtitle {
    color: var(--text-light);
    opacity: 0.8;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 50px auto;
    overflow: hidden;
    padding: 10px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
    border: 3px solid var(--accent);
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 2px;
}

.rating-stars {
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.carousel-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: -20px;
    margin-bottom: 50px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background-color: var(--accent);
    transform: scale(1.3);
}

.badges-container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.badge-item:hover {
    opacity: 1;
}

.badge-icon {
    font-size: 2rem;
    color: var(--accent);
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==========================================
   COMBINED TOUR / ITINERARY STYLES
   ========================================== */
.itinerary-container {
    max-width: 900px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 10px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

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

.timeline-badge {
    position: absolute;
    top: 2px;
    left: -30px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--secondary);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item.active .timeline-badge {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

.timeline-header {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.timeline-header:hover {
    border-color: var(--secondary);
    background-color: rgba(44, 122, 123, 0.02);
}

.timeline-item.active .timeline-header {
    background-color: rgba(44, 122, 123, 0.05);
    border-color: var(--secondary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.timeline-day {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.9rem;
    background-color: rgba(44, 122, 123, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 15px;
}

.timeline-item.active .timeline-day {
    background-color: var(--accent);
    color: var(--white);
}

.timeline-title-text {
    font-size: 1.1rem;
    font-weight: 600;
    flex-grow: 1;
}

.timeline-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.timeline-item.active .timeline-arrow {
    transform: rotate(180deg);
}

.timeline-content {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-top: none;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.timeline-item.active .timeline-content {
    max-height: 500px;
    padding: 25px;
    border-color: var(--secondary);
}

.itinerary-inclusions-mini {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.itinerary-inclusion-tag {
    font-size: 0.75rem;
    background-color: var(--bg-light);
    padding: 4px 10px;
    border-radius: 12px;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

/* ==========================================
   ABOUT BRAND & TEAM
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: calc(var(--border-radius-lg) - 5px);
    pointer-events: none;
}

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

.team-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    padding-bottom: 25px;
    transition: var(--transition-smooth);
}

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

.team-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-name {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
}

/* ==========================================
   CONTACT PAGE & LEAD FORM
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
}

.contact-info-panel {
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}

.contact-info-panel h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-details-list {
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-detail-item svg {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 4px;
}

.contact-detail-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.9;
}

.contact-detail-text {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.15);
}

.social-icon:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Multi-step Form Container */
.lead-form-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-steps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    position: relative;
}

.form-steps-header::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step-indicator {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 3px solid var(--white);
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.step-indicator.active .step-number {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.2);
}

.step-indicator.active .step-label {
    color: var(--secondary);
    font-weight: 700;
}

.step-indicator.completed .step-number {
    background-color: var(--accent);
    color: var(--white);
}

.form-step-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step-panel.active {
    display: block;
}

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

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

.form-group.full-width {
    grid-column: 1 / span 2;
}

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

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 18px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 0.95rem;
    background-color: #FAFAFA;
    transition: var(--transition-smooth);
    color: var(--text-dark);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.15);
}

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

.form-nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* Success layout */
.form-success-message {
    text-align: center;
    padding: 30px 0;
}

.success-icon-wrap {
    width: 80px;
    height: 80px;
    background-color: rgba(44, 122, 123, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.form-success-message h3 {
    font-size: 1.65rem;
    margin-bottom: 12px;
}

.form-success-message p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Google Maps stylizer */
.map-section {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background-color: #E2E8F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-muted);
}

.map-icon {
    font-size: 3rem;
    color: var(--secondary);
}

/* ==========================================
   DETAIL MODAL
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 53, 71, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(30px);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: bold;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background-color: var(--accent);
    color: var(--white);
}

.modal-header-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.modal-content {
    padding: 30px;
}

.modal-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.modal-duration {
    display: inline-block;
    background-color: rgba(44, 122, 123, 0.1);
    color: var(--secondary);
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
}

.modal-section-title {
    font-size: 1.05rem;
    margin: 20px 0 10px 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
}

.modal-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.modal-list li {
    list-style-type: disc;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

.modal-price-wrap {
    display: flex;
    flex-direction: column;
}

.modal-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.modal-price {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

/* ==========================================
   GLOBAL FOOTER
   ========================================== */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 70px 0 20px 0;
    border-top: 4px solid var(--accent);
}

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

.footer-col-about .logo-link {
    margin-bottom: 20px;
}

.footer-col-about .logo-text {
    color: var(--white);
}

.footer-about-text {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 25px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.75;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.75;
}

.footer-contact svg {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    opacity: 0.6;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }

    .value-grid, .destination-grid, .package-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 25px;
        z-index: 999;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: var(--primary) !important;
        font-size: 1.1rem;
    }
    
    .header-nav:not(.scrolled) .nav-link {
        color: var(--primary) !important;
    }
    
    .nav-menu .btn {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-inner-page .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .value-grid, .destination-grid, .package-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 40px auto 0 auto;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .badges-container {
        gap: 30px;
    }
    
    .form-group-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   FLOATING WHATSAPP WIDGET STYLES
   ========================================== */
.whatsapp-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.whatsapp-floating-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
}

.whatsapp-floating-btn svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #25D366;
    animation: waPulse 2s infinite;
    pointer-events: none;
    box-sizing: border-box;
}

@keyframes waPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.85;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Form popup card */
.whatsapp-popup-card {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 330px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-popup-card.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.wa-popup-header {
    background-color: #075E54;
    color: var(--white);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

.wa-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    object-fit: contain;
    padding: 2px;
}

.wa-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #4AD962;
    border: 2px solid #075E54;
    border-radius: 50%;
}

.wa-agent-info h5 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.wa-agent-info p {
    font-size: 0.75rem;
    opacity: 0.8;
}

.wa-popup-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.wa-popup-close:hover {
    opacity: 1;
}

.wa-popup-body {
    padding: 20px;
}

.wa-welcome-msg {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 18px;
    background-color: #F0F4F8;
    padding: 10px 12px;
    border-radius: 8px;
    border-left: 3px solid #25D366;
}

.wa-form-group {
    margin-bottom: 14px;
    text-align: left;
}

.wa-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.wa-input, .wa-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}

.wa-input:focus, .wa-select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(44, 122, 123, 0.15);
    background-color: var(--white);
}

.wa-submit-btn {
    width: 100%;
    background-color: #25D366;
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    margin-top: 8px;
}

.wa-submit-btn:hover {
    background-color: #20BA5A;
}

.wa-submit-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.wa-error-msg {
    color: #E53E3E;
    font-size: 0.75rem;
    margin-top: 4px;
    display: block;
}

@media (max-width: 480px) {
    .whatsapp-widget-container {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-popup-card {
        bottom: 70px;
        right: 0;
        width: 300px;
    }
}
