/*
Theme Name: Heaven Show Tours
Theme URI: https://heavenshowtours.com
Author: Heaven Show Tours
Author URI: https://heavenshowtours.com
Description: Premium WordPress theme for Heaven Show Tours - Kashmir based travel agency. Built from custom HTML design with full admin panel control.
Version: 1.0.0
License: GPL v2
Text Domain: heaven-show-tours
Tags: travel, tourism, kashmir, responsive, custom-admin
*/

/* ========================================
   WORDPRESS BASE RESETS
   ======================================== */
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', sans-serif; color: #334155; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --primary-navy: #1e3a8a;
    --accent-orange: #f59e0b;
    --accent-gold: #fbbf24;
    --nature-green: #15803d;
    --dark-text: #0f172a;
    --body-text: #334155;
    --bg-secondary: #f1f5f9;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar { 
    background: linear-gradient(90deg, var(--primary-navy), var(--nature-green)); 
    color: white; 
    padding: 0.75rem 2rem; 
    font-size: 0.875rem; 
}
.top-bar-content { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 1rem; 
}
.top-bar a { color: white; text-decoration: none; font-weight: 500; }
.top-bar i { margin-right: 0.5rem; color: var(--accent-gold); }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar { 
    position: sticky; 
    top: 0; 
    background: rgba(255,255,255,0.98); 
    backdrop-filter: blur(20px); 
    z-index: 1000; 
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); 
    border-bottom: 3px solid var(--accent-orange); 
}
.nav-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 1rem 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-icon { 
    width: 50px; 
    height: 50px; 
    background: linear-gradient(135deg, var(--primary-navy), var(--nature-green)); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    font-size: 1.5rem; 
}
.logo-text { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--primary-navy); 
}
.logo-sub { 
    font-size: 0.6875rem; 
    color: var(--accent-orange); 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    display: block; 
    font-weight: 600; 
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { 
    color: var(--dark-text); 
    font-weight: 600; 
    font-size: 0.9375rem; 
    text-decoration: none; 
    position: relative; 
    padding: 0.5rem 0; 
}
.nav-links a::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 3px; 
    background: var(--accent-orange); 
    transition: width 0.3s ease; 
    border-radius: 2px; 
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { 
    background: var(--accent-orange); 
    color: white !important; 
    padding: 0.625rem 1.5rem !important; 
    border-radius: 50px; 
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4); 
}
.mobile-menu-btn { 
    display: none; 
    background: none; 
    border: none; 
    font-size: 1.5rem; 
    cursor: pointer; 
    color: var(--primary-navy); 
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero { 
    min-height: 100vh; 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 6rem 2rem;
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 58, 138, 0.8) 100%);
}
.hero-content { 
    text-align: center; 
    color: white; 
    z-index: 2; 
    max-width: 900px; 
    position: relative; 
    animation: fadeInUp 1s ease-out; 
}
@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(30px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.hero-badge { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    background: var(--accent-orange); 
    color: white; 
    padding: 0.625rem 1.75rem; 
    border-radius: 50px; 
    margin-bottom: 1.5rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.8125rem; 
    font-weight: 700; 
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4); 
    animation: pulse 2s infinite; 
}
@keyframes pulse { 
    0%, 100% { transform: scale(1); } 
    50% { transform: scale(1.03); } 
}

.hero h1 { 
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    margin-bottom: 1.5rem; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); 
    color: white; 
    font-family: 'Playfair Display', serif; 
}
.hero-content > p { 
    font-size: 1.25rem; 
    margin-bottom: 2.5rem; 
    opacity: 0.95; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto; 
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========================================
   BUTTONS
   ======================================== */
.btn { 
    padding: 1rem 2rem; 
    border-radius: 50px; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    cursor: pointer; 
    border: none; 
    font-size: 1rem; 
    text-decoration: none; 
}
.btn-primary { 
    background: var(--accent-orange); 
    color: white; 
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4); 
}
.btn-primary:hover { background: #d97706; transform: translateY(-2px); }
.btn-secondary { 
    background: rgba(255, 255, 255, 0.2); 
    color: white; 
    border: 2px solid rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(10px); 
}
.btn-secondary:hover { background: white; color: var(--primary-navy); }
.btn-outline { 
    background: transparent; 
    color: var(--primary-navy); 
    border: 2px solid var(--primary-navy); 
}
.btn-outline:hover { background: var(--primary-navy); color: white; transform: translateY(-2px); }

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: 6rem 2rem; max-width: 1400px; margin: 0 auto; }
.section-alt { background: var(--bg-secondary); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { 
    display: inline-block; 
    background: rgba(245, 158, 11, 0.1); 
    color: var(--accent-orange); 
    padding: 0.5rem 1.5rem; 
    border-radius: 50px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-size: 0.8125rem; 
    font-weight: 700; 
    margin-bottom: 1rem; 
    border: 2px solid rgba(245, 158, 11, 0.2); 
}
.section-title { 
    font-size: clamp(2rem, 4vw, 3rem); 
    color: var(--dark-text); 
    margin-bottom: 1rem; 
    font-family: 'Playfair Display', serif; 
    position: relative; 
    display: inline-block; 
}
.section-title::after { 
    content: ''; 
    position: absolute; 
    bottom: -12px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 60px; 
    height: 4px; 
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold)); 
    border-radius: 2px; 
}
.section-subtitle { 
    color: #64748b; 
    font-size: 1.125rem; 
    max-width: 600px; 
    margin: 1.5rem auto 0; 
}

/* ========================================
   DESTINATIONS GRID
   ======================================== */
.destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.destination-card { 
    position: relative; 
    height: 400px; 
    border-radius: 20px; 
    overflow: hidden; 
    cursor: pointer; 
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); 
    transition: all 0.3s ease; 
    display: block; 
    border: 3px solid transparent; 
    background: var(--primary-navy); 
}
.destination-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1); 
    border-color: var(--accent-orange); 
}
.destination-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}
.destination-card:hover .destination-img { transform: scale(1.1); }
.destination-overlay { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    padding: 2.5rem 1.5rem 1.5rem; 
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, transparent 100%); 
}
.destination-overlay h3 { 
    font-size: 1.375rem; 
    margin-bottom: 0.5rem; 
    color: white; 
    font-family: 'Playfair Display', serif; 
}
.destination-overlay p { 
    color: rgba(255, 255, 255, 0.85); 
    font-size: 0.9375rem; 
    margin-bottom: 0.75rem; 
}
.destination-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: var(--accent-gold); 
    font-weight: 600; 
    font-size: 0.9375rem; 
    opacity: 0; 
    transform: translateY(10px); 
    transition: all 0.3s ease; 
}
.destination-card:hover .destination-btn { opacity: 1; transform: translateY(0); }

/* ========================================
   PACKAGES GRID
   ======================================== */
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.package-card { 
    background: white; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); 
    border: 1px solid #e2e8f0; 
    display: flex; 
    flex-direction: column; 
    transition: all 0.3s ease; 
    position: relative; 
}
.package-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 0 0 3px var(--accent-orange); 
}
.package-card.featured { border: 2px solid var(--accent-orange); }
.featured-badge { 
    position: absolute; 
    top: 15px; 
    left: -30px; 
    background: var(--accent-orange); 
    color: white; 
    padding: 0.4rem 2.5rem; 
    font-size: 0.6875rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    transform: rotate(-45deg); 
    z-index: 10; 
    letter-spacing: 1px; 
}
.package-header { 
    position: relative; 
    height: 180px; 
    overflow: hidden; 
    background: #e2e8f0; 
}
.package-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}
.package-card:hover .package-img { transform: scale(1.08); }
.package-badge { 
    position: absolute; 
    top: 0.75rem; 
    right: 0.75rem; 
    background: var(--accent-orange); 
    color: white; 
    padding: 0.4rem 0.875rem; 
    border-radius: 50px; 
    font-size: 0.75rem; 
    font-weight: 700; 
    z-index: 5; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.25rem; 
}
.package-badge.romantic { background: #db2777; }
.package-badge.family { background: var(--nature-green); }
.package-badge.adventure { background: #7c3aed; }
.package-body { 
    padding: 1.25rem; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}
.package-body h3 { 
    font-size: 1.125rem; 
    margin-bottom: 0.5rem; 
    color: var(--dark-text); 
}
.package-duration { 
    color: var(--accent-orange); 
    font-weight: 700; 
    margin-bottom: 0.875rem; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-size: 0.875rem; 
}
.package-features { 
    list-style: none; 
    margin-bottom: 1.25rem; 
    flex: 1; 
    background: var(--bg-secondary); 
    padding: 1rem; 
    border-radius: 10px; 
}
.package-features li { 
    padding: 0.375rem 0; 
    color: var(--body-text); 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-size: 0.875rem; 
    border-bottom: 1px dashed #e2e8f0; 
}
.package-features li:last-child { border-bottom: none; }
.package-features i { color: var(--nature-green); }
.package-footer { margin-top: auto; }
.view-all-btn { text-align: center; margin-top: 3rem; }

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us-section { 
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--primary-navy) 100%); 
    color: white; 
    padding: 6rem 2rem; 
}
.why-us-container { max-width: 1400px; margin: 0 auto; }
.why-us-section .section-title { color: white; }
.why-us-section .section-title::after { 
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange)); 
}
.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.why-us-card { 
    background: rgba(255, 255, 255, 0.08); 
    padding: 2.5rem 1.5rem; 
    border-radius: 20px; 
    text-align: center; 
    border: 1px solid rgba(255, 255, 255, 0.15); 
    transition: all 0.3s ease; 
}
.why-us-card:hover { 
    background: rgba(255, 255, 255, 0.12); 
    transform: translateY(-8px); 
    border-color: var(--accent-gold); 
}
.why-us-icon { 
    width: 70px; 
    height: 70px; 
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold)); 
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 1.25rem; 
    color: white; 
    font-size: 1.75rem; 
}
.why-us-card h3 { color: white; font-size: 1.25rem; margin-bottom: 0.75rem; }
.why-us-card p { color: rgba(255, 255, 255, 0.85); font-size: 0.9375rem; line-height: 1.7; }
.trust-badges { 
    display: flex; 
    justify-content: center; 
    gap: 4rem; 
    flex-wrap: wrap; 
    margin-top: 4rem; 
    padding: 2.5rem; 
    background: rgba(255, 255, 255, 0.05); 
    border-radius: 24px; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
}
.trust-number { 
    font-size: 2.75rem; 
    font-weight: 800; 
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    display: block; 
    line-height: 1; 
}
.trust-label { 
    color: rgba(255, 255, 255, 0.9); 
    font-size: 0.875rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-top: 0.5rem; 
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section { background: linear-gradient(to bottom, var(--bg-secondary), white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.testimonial-card { 
    background: white; 
    padding: 2rem; 
    border-radius: 20px; 
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); 
    border: 1px solid #e2e8f0; 
    position: relative; 
    transition: all 0.3s ease; 
}
.testimonial-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); 
}
.rating { color: var(--accent-gold); margin-bottom: 1.25rem; font-size: 1rem; }
.testimonial-card p { 
    color: var(--body-text); 
    font-size: 1rem; 
    line-height: 1.8; 
    margin-bottom: 1.5rem; 
    font-style: italic; 
}
.testimonial-author { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    padding-top: 1.25rem; 
    border-top: 2px solid var(--bg-secondary); 
}
.author-avatar { 
    width: 48px; 
    height: 48px; 
    background: linear-gradient(135deg, var(--primary-navy), var(--nature-green)); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    font-weight: 700; 
    font-size: 1.125rem; 
}
.author-info strong { color: var(--dark-text); display: block; font-size: 0.9375rem; }
.author-info span { color: #64748b; font-size: 0.875rem; }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--dark-text); color: white; }
.footer-cta { 
    background: linear-gradient(135deg, var(--primary-navy), var(--nature-green)); 
    padding: 4rem 2rem; 
    text-align: center; 
}
.footer-cta-content h2 { 
    font-size: 2.25rem; 
    margin-bottom: 1rem; 
    color: white; 
    font-family: 'Playfair Display', serif; 
}
.footer-cta-content p { 
    font-size: 1.125rem; 
    margin-bottom: 1.5rem; 
    opacity: 0.95; 
}
.footer-cta-content a { color: var(--accent-gold); text-decoration: none; font-weight: 700; }
.btn-footer { 
    display: inline-block; 
    padding: 1.125rem 3rem; 
    background: white; 
    color: var(--dark-text); 
    border-radius: 50px; 
    font-weight: 700; 
    transition: all 0.3s ease; 
    text-decoration: none; 
}
.btn-footer:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.footer-main { padding: 4rem 2rem 3rem; max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-section h4 { 
    color: var(--accent-gold); 
    font-size: 1rem; 
    margin-bottom: 1.25rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 700; 
}
.footer-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-about-text { 
    color: #94a3b8; 
    line-height: 1.8; 
    margin: 1.25rem 0; 
    font-size: 0.9375rem; 
}
.footer-contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-line { 
    display: flex; 
    gap: 0.875rem; 
    align-items: flex-start; 
    color: #94a3b8; 
    font-size: 0.9375rem; 
    line-height: 1.6; 
    padding: 0.75rem; 
    background: rgba(255, 255, 255, 0.05); 
    border-radius: 10px; 
    transition: all 0.15s ease; 
}
.contact-line:hover { background: rgba(255, 255, 255, 0.1); transform: translateX(4px); }
.contact-line i { color: var(--accent-orange); margin-top: 0.2rem; width: 20px; }
.contact-line a { color: #e2e8f0; text-decoration: none; transition: color 0.15s ease; }
.contact-line a:hover { color: var(--accent-gold); }
.contact-line strong { color: white; display: block; margin-bottom: 0.25rem; font-size: 0.875rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { 
    color: #94a3b8; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    transition: all 0.15s ease; 
    font-size: 0.9375rem; 
    text-decoration: none; 
    padding: 0.25rem 0; 
}
.footer-links a:hover { color: var(--accent-gold); padding-left: 6px; }
.working-hours { display: flex; flex-direction: column; gap: 0.75rem; }
.hours-line { 
    display: flex; 
    justify-content: space-between; 
    color: #94a3b8; 
    font-size: 0.9375rem; 
    padding-bottom: 0.75rem; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}
.hours-line strong { color: white; }
.footer-social-bar { 
    background: rgba(0, 0, 0, 0.2); 
    padding: 1.5rem 2rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}
.social-container { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 1.5rem; 
}
.social-icons-large { display: flex; gap: 0.75rem; }
.social-icons-large a { 
    width: 44px; 
    height: 44px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 10px; 
    color: white; 
    font-size: 1.125rem; 
    transition: all 0.3s ease; 
    text-decoration: none; 
}
.social-icons-large a:hover { transform: translateY(-4px); }
.social-icons-large .facebook { background: #1877f2; }
.social-icons-large .instagram { background: #e4405f; }
.social-icons-large .whatsapp { background: #25d366; }
.footer-bottom { 
    background: rgba(0, 0, 0, 0.3); 
    padding: 1.5rem 2rem; 
    text-align: center; 
}
.footer-bottom p { color: #64748b; font-size: 0.875rem; margin: 0.25rem 0; }
.footer-bottom i { color: #ef4444; animation: heartbeat 1.5s ease-in-out infinite; }
@keyframes heartbeat { 
    0%, 100% { transform: scale(1); } 
    50% { transform: scale(1.15); } 
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(15, 23, 42, 0.98); 
    z-index: 2000; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 2rem; 
    backdrop-filter: blur(10px); 
}
.mobile-menu-close { 
    position: absolute; 
    top: 2rem; 
    right: 2rem; 
    background: none; 
    border: none; 
    color: white; 
    font-size: 2rem; 
    cursor: pointer; 
}
.mobile-menu a { color: white; font-size: 1.5rem; font-weight: 600; text-decoration: none; }

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    width: 50px; 
    height: 50px; 
    background: var(--accent-orange); 
    color: white; 
    border: none; 
    border-radius: 50%; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.25rem; 
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4); 
    opacity: 0; 
    visibility: hidden; 
    transition: all 0.3s ease; 
    z-index: 999; 
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-5px); background: #d97706; }

/* ========================================
   WORDPRESS CONTENT STYLES
   ======================================== */
.entry-content p { margin-bottom: 1.5rem; line-height: 1.8; }
.entry-content h2 { 
    font-family: 'Playfair Display', serif; 
    color: var(--dark-text); 
    margin: 2rem 0 1rem; 
    font-size: 1.75rem; 
}
.entry-content h3 { 
    font-family: 'Playfair Display', serif; 
    color: var(--dark-text); 
    margin: 1.5rem 0 0.75rem; 
    font-size: 1.375rem; 
}
.entry-content ul { 
    margin: 1rem 0 1.5rem 1.5rem; 
    list-style: disc; 
}
.entry-content ul li { margin-bottom: 0.5rem; }
.entry-content img { border-radius: 12px; margin: 1.5rem 0; }

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form-wrapper { 
    max-width: 700px; 
    margin: 0 auto; 
    background: white; 
    padding: 3rem; 
    border-radius: 20px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); 
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { 
    display: block; 
    margin-bottom: 0.5rem; 
    font-weight: 600; 
    color: var(--dark-text); 
    font-size: 0.9375rem; 
}
.form-group input,
.form-group textarea,
.form-group select { 
    width: 100%; 
    padding: 0.875rem 1rem; 
    border: 2px solid #e2e8f0; 
    border-radius: 12px; 
    font-size: 1rem; 
    font-family: 'Inter', sans-serif; 
    transition: all 0.3s ease; 
    background: #f8fafc; 
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { 
    outline: none; 
    border-color: var(--accent-orange); 
    background: white; 
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1); 
}
.form-group textarea { min-height: 150px; resize: vertical; }
.form-submit-btn { 
    width: 100%; 
    padding: 1rem; 
    background: var(--accent-orange); 
    color: white; 
    border: none; 
    border-radius: 50px; 
    font-size: 1.0625rem; 
    font-weight: 700; 
    cursor: pointer; 
    transition: all 0.3s ease; 
}
.form-submit-btn:hover { background: #d97706; transform: translateY(-2px); }
.form-message { 
    padding: 1rem; 
    border-radius: 12px; 
    margin-bottom: 1.5rem; 
    font-weight: 500; 
    display: none; 
}
.form-message.success { 
    background: #dcfce7; 
    color: #166534; 
    border: 1px solid #86efac; 
    display: block; 
}
.form-message.error { 
    background: #fee2e2; 
    color: #991b1b; 
    border: 1px solid #fca5a5; 
    display: block; 
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
.about-hero { 
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 58, 138, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1643906699863-71bdb1011043?w=1920&q=80');
    background-size: cover; 
    background-position: center; 
    padding: 10rem 2rem 6rem; 
    text-align: center; 
    color: white; 
}
.about-hero h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    margin-bottom: 1rem; 
}
.about-hero p { font-size: 1.125rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

.about-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; }
.about-content h2 { 
    font-family: 'Playfair Display', serif; 
    color: var(--dark-text); 
    font-size: 1.875rem; 
    margin: 2.5rem 0 1rem; 
}
.about-content p { color: var(--body-text); line-height: 1.8; margin-bottom: 1.25rem; }

.team-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 2rem; 
    margin-top: 2rem; 
}
.team-card { 
    text-align: center; 
    padding: 2rem; 
    background: var(--bg-secondary); 
    border-radius: 20px; 
}
.team-card .team-avatar { 
    width: 80px; 
    height: 80px; 
    background: linear-gradient(135deg, var(--primary-navy), var(--nature-green)); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 1rem; 
    color: white; 
    font-size: 1.75rem; 
    font-weight: 700; 
}
.team-card h4 { color: var(--dark-text); margin-bottom: 0.25rem; }
.team-card span { color: var(--accent-orange); font-size: 0.875rem; font-weight: 600; }

/* ========================================
   PACKAGES PAGE
   ======================================== */
.packages-hero { 
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 58, 138, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1566837497312-7be7830a7f6e?w=1920&q=80');
    background-size: cover; 
    background-position: center; 
    padding: 10rem 2rem 6rem; 
    text-align: center; 
    color: white; 
}
.packages-hero h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    margin-bottom: 1rem; 
}
.packages-hero p { font-size: 1.125rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero { 
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 58, 138, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1648471745757-9037236cea03?w=1920&q=80');
    background-size: cover; 
    background-position: center; 
    padding: 10rem 2rem 6rem; 
    text-align: center; 
    color: white; 
}
.contact-hero h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    margin-bottom: 1rem; 
}
.contact-hero p { font-size: 1.125rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 4rem 2rem; 
}
.contact-info-card { 
    background: white; 
    padding: 2.5rem; 
    border-radius: 20px; 
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); 
    border: 1px solid #e2e8f0; 
}
.contact-info-card h3 { 
    font-family: 'Playfair Display', serif; 
    color: var(--dark-text); 
    margin-bottom: 1.5rem; 
    font-size: 1.5rem; 
}
.contact-info-item { 
    display: flex; 
    gap: 1rem; 
    align-items: flex-start; 
    margin-bottom: 1.5rem; 
    padding-bottom: 1.5rem; 
    border-bottom: 1px dashed #e2e8f0; 
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-item i { 
    width: 48px; 
    height: 48px; 
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold)); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    font-size: 1.125rem; 
    flex-shrink: 0; 
}
.contact-info-item div strong { 
    display: block; 
    color: var(--dark-text); 
    margin-bottom: 0.25rem; 
}
.contact-info-item div { color: var(--body-text); }
.contact-info-item div a { color: var(--primary-navy); font-weight: 600; }

/* ========================================
   ADMIN BAR FIX
   ======================================== */
.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .navbar { top: 46px; } }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .destinations-grid, .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { min-height: auto; padding: 8rem 1.5rem 4rem; }
    .destinations-grid, .packages-grid, .why-us-grid { grid-template-columns: 1fr; }
    .destination-card { height: 350px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .social-container { flex-direction: column; text-align: center; }
    .contact-form-wrapper { padding: 2rem 1.5rem; }
    .contact-grid { padding: 2rem 1.5rem; }
}
