/* Modern Outdoor & Adventure Vibe Design System */
@import url('https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Forest & Gold Adventure Vibe */
    --bg-dark: #0a0f0d;
    --bg-card: rgba(18, 30, 24, 0.65);
    --bg-card-hover: rgba(26, 44, 35, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(16, 185, 129, 0.15);
    
    --primary: #10b981;       /* Emerald Pine */
    --primary-hover: #059669;
    --accent: #f59e0b;        /* Campfire Amber */
    --accent-hover: #d97706;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-emerald: #a7f3d0;
    
    --glass-bg: rgba(10, 15, 13, 0.75);
    --glass-border: rgba(255, 255, 255, 0.06);
    
    --font-heading: 'Cabinet Grotesk', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
    
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Scrollbar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #050807;
}
::-webkit-scrollbar-thumb {
    background: #15261f;
    border-radius: 5px;
    border: 2px solid #050807;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    line-height: 1.2;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(8, 12, 10, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    fill: var(--primary);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

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

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #047857 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background-image: linear-gradient(rgba(10, 15, 13, 0.65), rgba(10, 15, 13, 0.95)), url('images/hero_rv_forest.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--primary);
    animation: pulse 1.5s infinite alternate;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 650px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #047857 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 600px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-number {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Sections General */
section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

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

/* Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.intro-img-wrapper:hover .intro-img {
    transform: scale(1.03);
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 35px;
}

.intro-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
    transition: var(--transition);
}

.intro-feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.intro-feature-icon {
    width: 32px;
    height: 32px;
    fill: var(--primary);
    margin-bottom: 12px;
}

.intro-feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.intro-feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* SVG Interactive Map styling */
.resort-map-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.map-wrapper {
    width: 100%;
    margin-top: 30px;
    position: relative;
}

.svg-map {
    width: 100%;
    height: auto;
    display: block;
}

/* Interactive SVG Site elements */
.svg-site {
    cursor: pointer;
    transition: var(--transition);
}

.svg-site rect, .svg-site path {
    fill: rgba(16, 185, 129, 0.15);
    stroke: var(--primary);
    stroke-width: 1.5px;
    transition: var(--transition);
}

.svg-site text {
    fill: #fff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-anchor: middle;
    pointer-events: none;
}

.svg-site:hover rect, .svg-site:hover path {
    fill: rgba(245, 158, 11, 0.35);
    stroke: var(--accent);
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.5));
}

.svg-site.premium rect {
    stroke: var(--accent);
    fill: rgba(245, 158, 11, 0.15);
}

.svg-site.premium:hover rect {
    fill: rgba(245, 158, 11, 0.4);
}

.svg-road {
    fill: #1e293b;
    stroke: #334155;
    stroke-width: 1px;
}

.svg-bg {
    fill: #0c1511;
}

.svg-facility {
    fill: #1e293b;
    stroke: #475569;
    stroke-width: 2px;
}

.svg-greenery {
    fill: #064e3b;
    opacity: 0.6;
}

/* Map legend & tooltips */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.legend-color {
    width: 20px;
    height: 12px;
    border-radius: 4px;
    border: 1px solid var(--primary);
}

.legend-color.standard {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--primary);
}

.legend-color.premium {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--accent);
}

.legend-color.facility {
    background: #1e293b;
    border-color: #475569;
}

/* Site detail card on map click/hover */
.site-tooltip-card {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 280px;
    background: rgba(8, 14, 11, 0.9);
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 10;
}

.site-tooltip-card.active {
    transform: translateY(0);
    opacity: 1;
}

.site-tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.site-tooltip-title {
    font-size: 1.2rem;
    color: #fff;
}

.site-tooltip-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 9999px;
    font-weight: 700;
    text-transform: uppercase;
}

.site-tooltip-badge.standard {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.site-tooltip-badge.premium {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.site-tooltip-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

/* Rates Grid */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.rate-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.rate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition);
}

.rate-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.rate-card:hover::before {
    background: var(--primary);
}

.rate-card.featured {
    border-color: var(--accent);
    background: rgba(26, 38, 30, 0.85);
}

.rate-card.featured::before {
    background: var(--accent);
}

.rate-card.featured:hover {
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

.rate-badge {
    position: absolute;
    top: 25px;
    right: -30px;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 30px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.rate-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.rate-price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
    margin: 15px 0 25px;
}

.rate-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    font-family: var(--font-body);
}

.rate-features {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.rate-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.rate-feature-item svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    flex-shrink: 0;
}

/* Rules Accordion */
.rules-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: rgba(16, 185, 129, 0.4);
}

.accordion-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.accordion-title {
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    fill: var(--text-secondary);
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    fill: var(--primary);
}

.accordion-item.active {
    border-color: var(--primary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.accordion-item.active .accordion-body {
    max-height: 1000px; /* Large enough to fit content */
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.accordion-content {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

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

.rules-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.rules-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1;
}

/* Adventure Guide styling */
.adventure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.adventure-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.adventure-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.adventure-img-wrapper {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.adventure-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.adventure-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.adventure-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.adventure-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.adventure-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.adventure-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.adventure-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.adventure-meta svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
}

/* Booking Widget/Modal styling */
.booking-section {
    background: linear-gradient(rgba(10, 15, 13, 0.85), rgba(10, 15, 13, 0.85)), url('images/hiker_mountain_peak.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.booking-card {
    background: rgba(10, 18, 14, 0.9);
    border: 1px solid var(--primary);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

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

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

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

select.form-control option {
    background-color: var(--bg-dark);
    color: #fff;
}

/* Est Calculator Output */
.calc-container {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.calc-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.calc-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Location and Directions styling */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.map-embed {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Tabbed Directions styling */
.directions-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
}

.tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.tab-btn.active {
    color: var(--primary);
    background: rgba(16, 185, 129, 0.1);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

.direction-step {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.direction-step-num {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direction-step-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Contact Info cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    fill: var(--primary);
    margin-bottom: 16px;
}

.contact-info-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info-card p, .contact-info-card a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary);
}

/* Footer Section */
footer {
    background: #050807;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 15px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Animations & Responsive */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.3); opacity: 1; }
}

@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .adventure-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #080c0a;
        flex-direction: column;
        padding: 30px;
        border-bottom: 1px solid var(--border-color);
        gap: 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
