/*
Theme Name: Murari Travels
Theme URI: https://muraritravels.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A custom travel agency theme for Murari Travels - Goldenrod & Vermillion Edition
Version: 1.0.0
License: GPL v2 or later
Text Domain: murari-travels
*/

:root {
    /* Colorful Palette - Goldenrod, Vermillion, Dark Blue, Dutch White */
    --goldenrod: #DAA520;
    --goldenrod-light: #F0C75E;
    --goldenrod-dark: #B8860B;
    --vermillion: #E34234;
    --vermillion-light: #FF6B5A;
    --vermillion-dark: #C0392B;
    --dark-blue: #1A237E;
    --dark-blue-light: #283593;
    --dark-blue-dark: #0D1445;
    --dutch-white: #F8F0E3;
    --dutch-white-dark: #EDE3D0;
    --dutch-white-light: #FFF8F0;
    --primary: #DAA520;
    --primary-dark: #B8860B;
    --primary-light: #F0C75E;
    --secondary: #1A237E;
    --accent: #E34234;
    --accent-light: #FF6B5A;
    --light-bg: #F8F0E3;
    --dark: #1A237E;
    --text: #2C2C2C;
    --white: #ffffff;
    --shadow: 0 8px 30px rgba(26, 35, 126, 0.08);
    --shadow-hover: 0 20px 40px rgba(26, 35, 126, 0.12);
    --radius: 12px;
    --whatsapp: #25D366;
    --call: #DAA520;
    --enquiry-gradient: linear-gradient(135deg, #DAA520, #E34234);
    --gradient-bg: linear-gradient(180deg, #FFF8F0 0%, #F8F0E3 30%, #F5EDE0 60%, #F0E8D8 100%);
    --pattern-bg: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23DAA520' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--gradient-bg);
    background-attachment: fixed;
    line-height: 1.6;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pattern-bg);
    pointer-events: none;
    z-index: -1;
    opacity: 1;
}

/* ===== ANIMATED PARTICLES ===== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: float-particle 20s infinite ease-in-out;
}

.particle:nth-child(1) { 
    top: 10%; left: 10%; animation-delay: 0s; width: 8px; height: 8px; 
    background: rgba(218, 165, 32, 0.06);
}
.particle:nth-child(2) { 
    top: 20%; right: 15%; animation-delay: 2s; width: 12px; height: 12px; 
    background: rgba(227, 66, 52, 0.04);
}
.particle:nth-child(3) { 
    bottom: 30%; left: 5%; animation-delay: 4s; width: 6px; height: 6px; 
    background: rgba(218, 165, 32, 0.05);
}
.particle:nth-child(4) { 
    top: 60%; right: 10%; animation-delay: 1s; width: 10px; height: 10px; 
    background: rgba(26, 35, 126, 0.03);
}
.particle:nth-child(5) { 
    bottom: 10%; right: 30%; animation-delay: 3s; width: 8px; height: 8px; 
    background: rgba(227, 66, 52, 0.05);
}
.particle:nth-child(6) { 
    top: 40%; left: 50%; animation-delay: 5s; width: 14px; height: 14px; 
    background: rgba(218, 165, 32, 0.04);
}
.particle:nth-child(7) { 
    top: 80%; left: 20%; animation-delay: 2.5s; width: 6px; height: 6px; 
    background: rgba(26, 35, 126, 0.03);
}
.particle:nth-child(8) { 
    top: 50%; right: 5%; animation-delay: 4.5s; width: 10px; height: 10px; 
    background: rgba(227, 66, 52, 0.04);
}

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(50px, -30px) scale(1.5); opacity: 0.8; }
    50% { transform: translate(-20px, 40px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(30px, -20px) scale(1.2); opacity: 0.7; }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ===== HEADER - DARK BLUE ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(26, 35, 126, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(26, 35, 126, 0.15);
    padding: 0.5rem 0;
    border-bottom: 3px solid var(--goldenrod);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    max-height: 55px;
    width: auto;
}

.logo h1 {
    color: var(--goldenrod) !important;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(218, 165, 32, 0.2);
}

.nav-menu ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--dutch-white);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--goldenrod);
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--goldenrod-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.search-icon {
    font-size: 1.4rem;
    color: var(--dutch-white);
    cursor: pointer;
    transition: 0.3s;
}

.search-icon:hover {
    color: var(--goldenrod);
    transform: scale(1.1);
}

.header-actions .btn {
    color: white !important;
}

.header-actions .btn-whatsapp {
    background: #25D366 !important;
}

.header-actions .btn-whatsapp:hover {
    background: #1DA851 !important;
}

.header-actions .btn-outline {
    border-color: rgba(248, 240, 227, 0.2) !important;
    color: var(--dutch-white) !important;
}

.header-actions .btn-outline:hover {
    background: rgba(218, 165, 32, 0.15) !important;
    border-color: var(--goldenrod) !important;
    color: var(--goldenrod) !important;
}

.header-actions .btn-primary {
    background: var(--goldenrod) !important;
    color: var(--dark-blue) !important;
}

.header-actions .btn-primary:hover {
    background: var(--goldenrod-dark) !important;
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.25) !important;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    line-height: 1;
}

.btn .btn-text {
    display: inline;
}

.btn .btn-icon {
    display: inline;
    font-size: 1.2rem;
    line-height: 1;
}

.btn-primary {
    background: var(--goldenrod);
    color: var(--dark-blue);
}

.btn-primary:hover {
    background: var(--goldenrod-dark);
    transform: translateY(-2px);
    color: var(--dark-blue);
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.25);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--goldenrod);
    color: var(--goldenrod);
}

.btn-outline:hover {
    background: var(--goldenrod);
    color: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background: #1DA851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-call {
    background: var(--call);
    color: var(--dark-blue);
}

.btn-call:hover {
    background: var(--goldenrod-dark);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.25);
}

.btn-enquiry {
    background: var(--enquiry-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(227, 66, 52, 0.2);
}

.btn-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(227, 66, 52, 0.3);
    color: white;
    background: linear-gradient(135deg, #B8860B, #C0392B);
}

/* ============================================================
   HERO SECTION - GOLDENROD & VERMILLION
   ============================================================ */

.hero-slider {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A237E, #0D1445);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 20, 69, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ===== LEFT COLUMN - FORM ===== */
.hero-form-wrapper {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(218, 165, 32, 0.12);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.06), rgba(26, 35, 126, 0.08));
}

.hero-form-container h3 {
    color: var(--goldenrod);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 20px rgba(218, 165, 32, 0.15);
}

.hero-form-container p {
    color: var(--dutch-white);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.hero-form-group {
    margin-bottom: 1rem;
}

.hero-form-group input,
.hero-form-group select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--dutch-white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-form-group input::placeholder {
    color: rgba(248, 240, 227, 0.4);
}

.hero-form-group input:focus,
.hero-form-group select:focus {
    outline: none;
    border-color: var(--goldenrod);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.08);
}

.hero-form-group select {
    color: var(--dutch-white);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23DAA520' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.hero-form-group select option {
    background: #1A237E;
    color: var(--dutch-white);
}

.btn-hero-submit {
    width: 100%;
    padding: 0.9rem;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #DAA520, #E34234);
    color: var(--dutch-white);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(227, 66, 52, 0.2);
}

.btn-hero-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(227, 66, 52, 0.3);
    background: linear-gradient(135deg, #B8860B, #C0392B);
}

.btn-hero-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ===== HERO FORM RESPONSE STYLES ===== */
#hero-form-response {
    margin-top: 10px;
}

.enquiry-success {
    color: #DAA520;
    font-weight: 600;
    padding: 10px 15px;
    background: rgba(218, 165, 32, 0.08);
    border-radius: 8px;
    margin-top: 10px;
    border-left: 4px solid #DAA520;
    backdrop-filter: blur(10px);
}

.enquiry-error {
    color: #FF6B5A;
    font-weight: 600;
    padding: 10px 15px;
    background: rgba(227, 66, 52, 0.08);
    border-radius: 8px;
    margin-top: 10px;
    border-left: 4px solid #FF6B5A;
    backdrop-filter: blur(10px);
}

/* ===== RIGHT COLUMN - HEADLINE & BUTTONS ===== */
.hero-text-wrapper {
    color: var(--dutch-white);
}

.hero-text-wrapper h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-text-wrapper h1 span {
    color: var(--goldenrod);
    position: relative;
    text-shadow: 0 2px 30px rgba(218, 165, 32, 0.15);
}

.hero-text-wrapper h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--goldenrod), var(--vermillion));
    border-radius: 2px;
}

.hero-text-wrapper p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: var(--dutch-white);
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
}

.btn-hero-icon svg {
    flex-shrink: 0;
}

.btn-hero-icon span {
    display: inline;
}

.btn-hero-icon.btn-wa {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
    border-color: transparent;
}

.btn-hero-icon.btn-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
    background: #1DA851;
}

.btn-hero-icon.btn-call {
    background: var(--goldenrod);
    color: var(--dark-blue);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.15);
    border-color: transparent;
}

.btn-hero-icon.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.25);
    background: var(--goldenrod-dark);
}

.btn-hero-icon.btn-email {
    background: var(--vermillion);
    box-shadow: 0 4px 15px rgba(227, 66, 52, 0.15);
    border-color: transparent;
}

.btn-hero-icon.btn-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 66, 52, 0.25);
    background: var(--vermillion-dark);
}

/* ============================================================
   TOUR SEARCH
   ============================================================ */

.tour-search-wrapper {
    margin-top: -3rem;
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 0 1rem;
}

.tour-search {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(15px);
    border-radius: var(--radius, 12px);
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    border: 1px solid rgba(218, 165, 32, 0.08);
}

.tour-search select,
.tour-search input {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--dutch-white-dark);
    min-width: 160px;
    background: var(--dutch-white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: var(--text);
    cursor: pointer;
    flex: 1 1 auto;
    appearance: auto;
}

.tour-search select option {
    background: var(--dutch-white);
    color: var(--text);
}

.tour-search select:focus,
.tour-search input:focus {
    border-color: var(--goldenrod);
    outline: none;
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.06);
    background: var(--white);
}

.tour-search select:hover,
.tour-search input:hover {
    border-color: var(--goldenrod);
}

.tour-search .btn {
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    background: var(--goldenrod);
    color: var(--dark-blue);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 140px;
    white-space: nowrap;
}

.tour-search .btn:hover {
    background: var(--goldenrod-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.2);
}

/* ============================================================
   PACKAGE SECTIONS - LIGHTER BACKGROUNDS
   ============================================================ */

.package-section {
    padding: 4rem 0;
    position: relative;
}

.package-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pattern-bg);
    opacity: 0.3;
    pointer-events: none;
}

/* SECTION 1: DUTCH WHITE (Popular Packages) */
.section-bg-dutchwhite {
    background: rgba(248, 240, 227, 0.70);
    backdrop-filter: blur(5px);
}

/* SECTION 2: GOLDENROD LIGHT (Special Offers) */
.section-bg-goldenrod {
    background: rgba(218, 165, 32, 0.06);
    backdrop-filter: blur(5px);
}

/* SECTION 3: DARK BLUE (Featured Packages) */
.section-bg-darkblue {
    background: rgba(26, 35, 126, 0.85);
    backdrop-filter: blur(5px);
    color: var(--dutch-white);
}

.section-bg-darkblue .section-header h2 {
    color: var(--dutch-white);
}

.section-bg-darkblue .section-header p {
    color: rgba(248, 240, 227, 0.6);
}

.section-bg-darkblue .section-header .subtitle {
    color: var(--goldenrod);
}

.section-bg-darkblue .package-card {
    background: rgba(255,255,255,0.95);
}

/* SECTION 4: VERMILLION LIGHT (Early Bird Packages) */
.section-bg-vermillion {
    background: rgba(227, 66, 52, 0.04);
    backdrop-filter: blur(5px);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .subtitle {
    color: var(--vermillion);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0.5rem 0;
}

.section-header h2 span {
    color: var(--goldenrod);
}

.section-header p {
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.7;
}

.section-bg-darkblue .section-header p {
    color: rgba(248, 240, 227, 0.6);
}

.section-bg-darkblue .section-header h2 {
    color: var(--dutch-white);
}

.section-bg-darkblue .section-header .subtitle {
    color: var(--goldenrod);
}

/* ============================================================
   PACKAGE GRID & CARDS
   ============================================================ */

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.package-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s ease;
    position: relative;
    border: 1px solid rgba(218, 165, 32, 0.06);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--goldenrod);
}

.package-card .package-image {
    position: relative;
    overflow: hidden;
}

.package-card .package-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-card .package-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.package-card .package-badge.popular {
    background: var(--goldenrod);
    color: var(--dark-blue);
}

.package-card .package-badge.featured {
    background: var(--dark-blue);
    color: var(--dutch-white);
}

.package-card .package-badge.offer {
    background: #28A745;
    color: var(--white);
}

.package-card .package-badge.special {
    background: var(--vermillion);
    color: var(--white);
}

.package-card .package-badge.earlybird {
    background: #F39C12;
    color: var(--white);
}

.package-card .package-price-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.95);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--goldenrod);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    z-index: 2;
}

.package-card .package-price-tag .original-price {
    text-decoration: line-through;
    color: var(--text);
    font-size: 0.9rem;
    margin-right: 0.5rem;
    opacity: 0.6;
}

.package-card .card-body {
    padding: 1.5rem;
}

.package-card .card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.package-card .card-body h3 a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: 0.3s;
}

.package-card .card-body h3 a:hover {
    color: var(--goldenrod);
}

.package-card .card-body .rating {
    color: #F39C12;
    margin-bottom: 0.5rem;
}

.package-card .card-body .package-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.package-card .card-body .package-description {
    color: var(--text);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    line-height: 1.5;
    opacity: 0.8;
}

/* ============================================================
   PACKAGE BUTTONS - ICON ONLY
   ============================================================ */

.package-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-icon-only {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-icon-only svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.btn-icon-only.btn-wa {
    background: #25D366;
}

.btn-icon-only.btn-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    background: #1DA851;
}

.btn-icon-only.btn-call {
    background: var(--goldenrod);
}

.btn-icon-only.btn-call:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.25);
    background: var(--goldenrod-dark);
}

.btn-icon-only.btn-email {
    background: var(--vermillion);
}

.btn-icon-only.btn-email:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(227, 66, 52, 0.25);
    background: var(--vermillion-dark);
}

/* ============================================================
   WHY CHOOSE - DARK BLUE
   ============================================================ */

.why-choose-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1A237E, #0D1445);
    color: var(--dutch-white);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pattern-bg);
    opacity: 0.06;
    pointer-events: none;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-choose-item .why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(218, 165, 32, 0.06);
    padding: 1rem;
    border-radius: 50%;
    transition: 0.3s;
    border: 1px solid rgba(218, 165, 32, 0.04);
}

.why-choose-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(218, 165, 32, 0.10);
    border-color: rgba(218, 165, 32, 0.12);
}

.why-choose-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-choose-item p {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-section {
    padding: 4rem 0;
    background: rgba(248, 240, 227, 0.70);
    backdrop-filter: blur(5px);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: 0.3s;
    border: 1px solid rgba(218, 165, 32, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--goldenrod);
}

.testimonial-card img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--goldenrod);
}

.testimonial-card .stars {
    color: #F39C12;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.testimonial-card h4 {
    margin-top: 0.5rem;
    color: var(--dark-blue);
}

.testimonial-card p {
    color: var(--text);
    opacity: 0.7;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-grid .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-grid .gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 35, 126, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-grid .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-grid .gallery-item .gallery-overlay span {
    color: var(--goldenrod);
    font-size: 2rem;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-section {
    padding: 4rem 0;
    background: rgba(255,255,255,0.70);
    backdrop-filter: blur(5px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info .info-item .icon {
    font-size: 1.5rem;
    background: var(--dutch-white);
    padding: 0.8rem;
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--goldenrod);
}

.contact-info .info-item h4 {
    color: var(--dark-blue);
    margin-bottom: 0.2rem;
}

.contact-info .info-item p {
    color: var(--text);
    font-size: 0.9rem;
    opacity: 0.7;
}

.contact-info .info-item a {
    color: var(--goldenrod);
    text-decoration: none;
    font-weight: 600;
}

.contact-info .info-item a:hover {
    color: var(--goldenrod-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--dutch-white-dark);
    border-radius: 50px;
    margin-bottom: 1rem;
    transition: 0.3s;
    font-size: 0.95rem;
    background: var(--dutch-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--goldenrod);
    outline: none;
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.06);
    background: var(--white);
}

.contact-form textarea {
    border-radius: var(--radius);
    min-height: 150px;
    resize: vertical;
}

/* ============================================================
   FOOTER - DARK BLUE
   ============================================================ */

.site-footer {
    background: linear-gradient(135deg, #1A237E, #0D1445);
    color: var(--dutch-white);
    padding: 4rem 0 1rem;
    position: relative;
    border-top: 3px solid var(--goldenrod);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pattern-bg);
    opacity: 0.06;
    pointer-events: none;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.site-footer h4 {
    color: var(--goldenrod);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 0.5rem;
}

.site-footer ul li a {
    color: rgba(248, 240, 227, 0.6);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.site-footer ul li a:hover {
    color: var(--goldenrod);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(218, 165, 32, 0.08);
    margin-top: 2rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    color: rgba(248, 240, 227, 0.5);
}

.footer-bottom a {
    color: var(--goldenrod);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--dutch-white);
}

.footer-bottom .footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-bottom .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(218, 165, 32, 0.04);
    color: rgba(248, 240, 227, 0.5);
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid rgba(218, 165, 32, 0.04);
}

.footer-bottom .footer-social a:hover {
    background: var(--goldenrod);
    color: var(--dark-blue);
    transform: translateY(-2px);
    border-color: var(--goldenrod);
    box-shadow: 0 4px 20px rgba(218, 165, 32, 0.15);
}

/* ============================================================
   ENQUIRY POPUP
   ============================================================ */

#enquiry-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 20, 69, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#enquiry-popup.active {
    display: flex !important;
}

#enquiry-popup > div {
    background: var(--dutch-white);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border-top: 4px solid var(--goldenrod);
}

#enquiry-popup .close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text);
    transition: 0.3s;
    opacity: 0.4;
}

#enquiry-popup .close-popup:hover {
    color: var(--vermillion);
    transform: rotate(90deg);
    opacity: 1;
}

/* ============================================================
   ENQUIRY FORM STYLES
   ============================================================ */

#enquiry-form input:focus,
#enquiry-form select:focus,
#enquiry-form textarea:focus {
    border-color: var(--goldenrod) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.06) !important;
}

#enquiry-form .btn-primary {
    background: var(--goldenrod);
    color: var(--dark-blue);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 40px;
    font-size: 16px;
}

#enquiry-form .btn-primary:hover {
    background: var(--goldenrod-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(218, 165, 32, 0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
    .hero-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text-wrapper h1 {
        font-size: 2.8rem;
    }
    
    .hero-form-wrapper {
        padding: 2rem;
    }
    
    .hero-action-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-text-wrapper h1 {
        font-size: 2.2rem;
    }
    
    .hero-text-wrapper p {
        font-size: 1rem;
    }
    
    .hero-form-wrapper {
        padding: 1.5rem;
    }
    
    .hero-form-container h3 {
        font-size: 1.4rem;
    }
    
    .btn-hero-icon {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .btn-hero-icon span {
        display: inline;
    }
    
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tour-search {
        flex-direction: column;
        align-items: stretch;
    }
    .tour-search select,
    .tour-search input {
        width: 100%;
        min-width: unset;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-text-wrapper h1 {
        font-size: 1.8rem;
    }
    
    .hero-text-wrapper p {
        font-size: 0.9rem;
    }
    
    .hero-form-wrapper {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .hero-form-container h3 {
        font-size: 1.2rem;
    }
    
    .hero-form-group input,
    .hero-form-group select {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .btn-hero-submit {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
    
    .btn-hero-icon {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .btn-hero-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .contact-info {
        grid-template-columns: 1fr;
    }
    .btn-icon-only {
        width: 34px;
        height: 34px;
    }
    .btn-icon-only svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 1200px) {
    .package-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-actions .btn .btn-text {
        display: none !important;
    }
    
    .header-actions .btn {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0 !important;
    }
    
    .header-actions .btn .btn-icon {
        font-size: 1.3rem !important;
        margin: 0 !important;
    }
    
    .header-actions .btn-outline {
        border: 2px solid rgba(248, 240, 227, 0.15) !important;
        background: transparent !important;
        color: var(--dutch-white) !important;
    }
    
    .header-actions .btn-outline .btn-icon {
        color: var(--dutch-white) !important;
    }
    
    .header-actions .btn-outline:hover {
        background: rgba(218, 165, 32, 0.15) !important;
        border-color: var(--goldenrod) !important;
    }
    
    .header-actions .btn-outline:hover .btn-icon {
        color: var(--goldenrod) !important;
    }
}

@media (max-width: 480px) {
    .header-actions .btn {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
    }
    
    .header-actions .btn .btn-icon {
        font-size: 1.1rem !important;
    }
}

/* ============================================================
   FORM RESPONSE STYLES
   ============================================================ */

.enquiry-success {
    color: #28A745;
    font-weight: 600;
    padding: 10px 15px;
    background: rgba(40, 167, 69, 0.04);
    border-radius: 8px;
    border-left: 4px solid #28A745;
}

.enquiry-error {
    color: #E34234;
    font-weight: 600;
    padding: 10px 15px;
    background: rgba(227, 66, 52, 0.04);
    border-radius: 8px;
    border-left: 4px solid #E34234;
}

#enquiry-response {
    margin-top: 15px;
}

#hero-form-response .enquiry-success {
    color: #DAA520;
    font-weight: 600;
    padding: 10px 15px;
    background: rgba(218, 165, 32, 0.06);
    border-radius: 8px;
    border-left: 4px solid #DAA520;
    backdrop-filter: blur(10px);
}

#hero-form-response .enquiry-error {
    color: #FF6B5A;
    font-weight: 600;
    padding: 10px 15px;
    background: rgba(227, 66, 52, 0.06);
    border-radius: 8px;
    border-left: 4px solid #FF6B5A;
    backdrop-filter: blur(10px);
}

/* ============================================================
   ANIMATED BADGE PULSE
   ============================================================ */

.package-badge.offer,
.package-badge.special,
.package-badge.earlybird {
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}