/* ===================================
   KETTLE CREEK RV PARK
   Modern Outdoor/Nature Theme
   =================================== */

/* CSS Variables - Modern Outdoor Hospitality Design */
:root {
    /* Primary Colors - Nature & Trust */
    --primary-green: #15803d;          /* Rich forest green - main brand */
    --secondary-green: #166534;        /* Deep forest green - accents */
    --accent-green: #22c55e;           /* Bright green - highlights */

    /* Accent Colors - Warmth & Action */
    --burnt-orange: #ea580c;           /* Warm burnt orange - primary CTA */
    --rust-orange: #c2410c;            /* Deep rust - CTA hover */
    --warm-gold: #fbbf24;              /* Golden highlight - badges */

    /* Neutral Colors - Clean & Inviting */
    --off-white: #faf8f3;              /* Soft cream - main background */
    --light-cream: #f8f9fa;            /* Light neutral - sections */
    --white: #ffffff;                  /* Pure white - cards */
    --dark-gray: #1f2937;              /* Deep charcoal - text */
    --medium-gray: #6b7280;            /* Medium gray - secondary text */
    --light-gray: #f3f4f6;             /* Light gray - borders */

    /* Typography - Modern & Readable */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-hero: 32px;
    --font-size-h1: 32px;
    --font-size-h2: 28px;
    --font-size-h3: 22px;
    --font-size-body: 17px;
    --line-height-relaxed: 1.75;

    /* Spacing - Generous Whitespace */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;

    /* Effects - Modern Depth */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.08);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
    color: var(--dark-gray);
    background: var(--off-white);
    /* Smooth page transitions */
    opacity: 1;
    transition: opacity 0.15s ease-in;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent flash of unstyled content */
body.loading {
    opacity: 0;
}

/* Improved rendering performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Touch-friendly links and buttons */
a, button, .primary-btn, .secondary-btn {
    -webkit-tap-highlight-color: rgba(200, 147, 66, 0.3);
    touch-action: manipulation;
    /* Ensure minimum touch target size of 44x44px for accessibility */
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-bar-content span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    padding: 15px 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 110px;
    width: auto;
    /* Prevent layout shift */
    min-width: 110px;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.1;
    text-align: center;
    padding: 5px 10px;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-green);
}

.nav-menu a.active {
    border-bottom: 2px solid var(--secondary-green);
    padding-bottom: 3px;
}

.book-btn {
    padding: 14px 32px;
    background: var(--burnt-orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.book-btn:hover {
    background: var(--rust-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    color: var(--white);
    padding-top: 140px;
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    min-height: 600px;
}

/* Mobile-optimized carousel */
@media (max-width: 768px) {
    .hero-carousel {
        min-height: 400px;
    }

    .carousel-slide img {
        object-position: center center;
    }
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    will-change: opacity;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    /* Prevent layout shift */
    display: block;
    max-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    margin-top: 120px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-hero);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--warm-gold);
    display: block;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: var(--line-height-relaxed);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 20px;
}

.hero-rates {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.rate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    min-width: 120px;
}

.rate-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--burnt-orange);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 5px;
}

.rate-period {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-note {
    font-size: 15px;
    margin-top: 20px;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Simple Hero Section - For non-home pages */
.simple-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, #1a5a2e 50%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 160px 0 80px;
    overflow: hidden;
}

.simple-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(250, 248, 243, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.simple-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: transparent;
    backdrop-filter: none;
    padding: 40px 20px;
    border-radius: 0;
    margin-top: 0;
}

.simple-hero .hero-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.simple-hero .hero-subtitle {
    font-size: 18px;
    max-width: 700px;
    opacity: 0.95;
    margin: 0 auto;
    color: var(--off-white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.primary-btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--burnt-orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-align: center;
    line-height: 1.2;
}

.primary-btn:hover {
    background: var(--rust-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.primary-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow);
}

.primary-btn.large {
    padding: 22px 56px;
    font-size: 20px;
}

.secondary-btn {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border: 3px solid var(--white);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1.2;
}

.secondary-btn:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-btn.large {
    padding: 22px 56px;
    font-size: 20px;
}

/* Park Info Section */
.park-info-section {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--light-gray);
}

.park-info-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.info-line {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.info-line:last-child {
    margin-bottom: 0;
}

/* Info Bar */
.info-bar {
    background: var(--light-gray);
    padding: 40px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-green);
    margin-bottom: 2px;
}

.info-text span {
    font-size: 14px;
    color: var(--dark-gray);
}

/* Section Styling */
section {
    padding: var(--spacing-3xl) 0;
}

/* Reservation Check Section */
.reservation-check {
    background: var(--light-gray);
    padding: 80px 0;
}

.reservation-check h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 40px;
    text-align: center;
}

.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 2px solid var(--light-green);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(74, 119, 41, 0.1);
}

.check-btn {
    width: 100%;
    padding: 18px;
    background: var(--sunset-orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(200, 147, 66, 0.3);
}

.check-btn:hover {
    background: var(--warm-tan);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 147, 66, 0.4);
}

/* Okefenokee Section */
.okefenokee-section {
    background: var(--white);
    padding: 80px 0;
}

.okefenokee-section h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
}

.okefenokee-content {
    max-width: 900px;
    margin: 0 auto;
}

.okefenokee-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.okefenokee-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-green);
    margin-top: 40px;
    margin-bottom: 25px;
}

.okefenokee-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.okefenokee-list li {
    padding: 20px 25px;
    background: var(--cream);
    border-left: 5px solid var(--accent-green);
    border-radius: 8px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.okefenokee-list strong {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

/* Location Extras Section */
.location-extras {
    background: var(--cream);
    padding: 80px 0;
}

.location-extras h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

.location-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
}

.cta-badge span:first-child {
    font-size: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-h1);
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 19px;
    color: var(--medium-gray);
    line-height: var(--line-height-relaxed);
    max-width: 700px;
    margin: 0 auto;
}

/* About & Amenities Section */
.about-section {
    background: var(--white);
    padding: 80px 0;
}

/* About Page Background Image Sections */
.about-welcome-bg {
    position: relative;
    background-image: url('../images/parkpic1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    margin-bottom: 80px;
}

.about-welcome-bg .container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

/* Why Choose Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.why-card {
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-green);
}

.why-icon {
    font-size: 56px;
    margin-bottom: var(--spacing-md);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.why-card p {
    font-size: 16px;
    line-height: var(--line-height-relaxed);
    color: var(--medium-gray);
}

/* Amenities Detailed - Updated for clean section */
.amenities-detailed,
.amenities-no-bg {
    position: relative;
    background: none;
    padding: 0;
    margin-bottom: 60px;
}

.amenities-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 15px;
}

.amenities-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 50px;
}

.amenities-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.amenity-section {
    background: var(--cream);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.amenity-section h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent-green);
}

.amenity-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.amenity-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.item-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.item-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.item-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Area Attractions - Updated for clean section */
.area-attractions,
.attractions-no-bg {
    position: relative;
    background: none;
    padding: 0;
    margin-bottom: 60px;
}

.attractions-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 50px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.attraction-card {
    padding: 35px;
    background: var(--cream);
    border-radius: 15px;
    border-left: 5px solid var(--accent-green);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Attraction Card with Background Image */
.attraction-card-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.attraction-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0.4) 100%);
    padding: 35px;
    width: 100%;
    border-radius: 15px;
}

.attraction-card-bg .attraction-icon {
    color: var(--white);
}

.attraction-card-bg h3 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.attraction-card-bg .attraction-distance {
    background: var(--burnt-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.attraction-card-bg p {
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.attraction-card-bg .attraction-features {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
}

.attraction-card-bg .attraction-features li {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.attraction-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.attraction-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.attraction-distance {
    display: inline-block;
    padding: 5px 15px;
    background: var(--secondary-green);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 15px;
}

.attraction-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.attraction-features {
    list-style: none;
    padding: 0;
}

.attraction-features li {
    padding: 8px 0;
    color: var(--dark-gray);
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.attraction-features li:last-child {
    border-bottom: none;
}

/* Highway Access */
.highway-access {
    background: var(--primary-green);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.highway-access h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.highway-access ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highway-access li {
    font-size: 16px;
    line-height: 1.6;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
}

.about-cta h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Rates & Reservations Section */
.rates-section {
    background: var(--white);
    min-height: 80vh;
}

.reservation-notice {
    background: var(--light-gray);
    border-left: 5px solid var(--secondary-green);
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    text-align: center;
}

.reservation-notice p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.reservation-notice p:last-child {
    margin-bottom: 0;
}

.reservation-form-wrapper {
    background: var(--light-gray);
    padding: 50px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.reservation-booking-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 35px;
}

.form-section h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    background: var(--white);
    border: 2px solid var(--light-green);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    min-width: 200px;
}

.radio-option:hover {
    border-color: var(--secondary-green);
    box-shadow: var(--shadow);
}

.radio-option input[type="radio"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-label {
    flex: 1;
}

.radio-label strong {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-green);
    display: block;
    margin-bottom: 5px;
}

.radio-description {
    font-size: 14px;
    color: var(--dark-gray);
}

.date-display {
    display: block;
    font-size: 14px;
    color: var(--dark-gray);
    margin-top: 8px;
    font-style: italic;
}

.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.reservation-results {
    margin-top: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--accent-green);
}

.results-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.units-count {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
}

.price-display {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-green);
}

.firefly-notice {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.firefly-notice p {
    font-size: 14px;
    color: var(--dark-gray);
}

.firefly-notice a {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
}

.firefly-notice a:hover {
    text-decoration: underline;
}

.direct-booking-cta {
    background: var(--cream);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.direct-booking-cta h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.direct-booking-cta p {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.primary-btn.large {
    padding: 20px 50px;
    font-size: 18px;
}

/* Park Rules Section */
.rules-section {
    background: var(--white);
    min-height: 80vh;
}

.rules-box {
    background: var(--light-gray);
    border-left: 5px solid var(--secondary-green);
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 15px;
}

.rules-heading {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.rules-list {
    list-style: none;
    padding-left: 0;
}

.rules-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-size: 20px;
    font-weight: bold;
}

.rules-main {
    margin-bottom: 40px;
}

.rules-main-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 50px;
}

.rule-category {
    background: var(--cream);
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-green);
}

.rule-icon-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rule-emoji {
    font-size: 28px;
}

.emergency-box {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(58, 85, 32, 0.1));
    border-left-color: var(--sunset-orange);
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-green);
    margin-top: 25px;
    margin-bottom: 15px;
}

.waiver-section {
    background: var(--light-gray);
    padding: 50px 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    border: 3px solid var(--primary-green);
}

.waiver-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.acknowledgment-list {
    list-style: none;
    padding-left: 0;
}

.acknowledgment-list li {
    padding: 10px 0;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    color: var(--primary-green);
    font-weight: 500;
}

.acknowledgment-list li::before {
    content: none;
}

.waiver-note {
    background: var(--primary-green);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
}

.rules-cta {
    background: var(--cream);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.rules-cta h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.rules-cta p {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.rules-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Page Section */
.contact-page-section {
    background: var(--white);
    min-height: 80vh;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-green);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-green);
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-note {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.quick-reservation-box {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.quick-reservation-box h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.quick-reservation-box p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.reservation-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.or-divider {
    font-size: 18px;
    font-weight: 600;
    padding: 0 10px;
}

.directions-section {
    margin-bottom: 60px;
}

.directions-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 50px;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.direction-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-green);
}

.direction-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.direction-steps {
    list-style-position: inside;
    padding-left: 0;
}

.direction-steps li {
    padding: 10px 0;
    line-height: 1.7;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.direction-steps li:last-child {
    border-bottom: none;
}

.gps-box {
    background: var(--cream);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
}

.gps-box h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.gps-box p {
    font-size: 16px;
    margin-bottom: 10px;
}

.map-embed {
    margin-bottom: 40px;
}

.map-embed h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 30px;
}

.contact-footer-info {
    background: var(--light-gray);
    padding: 50px 40px;
    border-radius: 20px;
}

.contact-footer-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 40px;
}

.contact-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
}

.contact-icon-small {
    font-size: 28px;
    flex-shrink: 0;
}

.footer-contact-item p {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

/* Location Section */
.location-section {
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.location-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--accent-green), var(--secondary-green));
    color: var(--white);
}

.location-image {
    font-size: 60px;
    margin-bottom: 20px;
}

.location-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.location-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.location-card.featured h3 {
    color: var(--white);
}

.distance {
    display: inline-block;
    padding: 5px 15px;
    background: var(--golden-orange);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 15px;
}

.location-card p {
    line-height: 1.7;
}

.location-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

/* Reviews Section */
.reviews-section {
    background: var(--white);
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.stars {
    font-size: 30px;
    color: #ffa500;
}

.rating-text {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-green);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.review-stars {
    font-size: 22px;
    color: var(--warm-gold);
    margin-bottom: var(--spacing-sm);
}

.review-text {
    font-size: 17px;
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-md);
    font-style: italic;
    color: var(--dark-gray);
}

.review-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-green);
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.booking-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.booking-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

.booking-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.booking-note {
    font-size: 16px;
}

.booking-note a {
    color: var(--golden-orange);
    font-weight: 600;
    text-decoration: none;
}

.booking-note a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 30px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-item a {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-container {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--light-green), var(--accent-green));
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.map-placeholder p:first-child {
    font-size: 60px;
    margin-bottom: 20px;
}

.map-note {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--secondary-green);
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--golden-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .top-bar-content {
        gap: 10px;
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .top-bar-content span {
        font-size: 12px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: 70vh;
        padding-top: 120px;
    }

    .hero-content {
        padding: 40px 24px;
        margin-top: 30px;
        border-radius: var(--radius-md);
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-note {
        font-size: 13px;
    }

    .section-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .okefenokee-section h2,
    .location-extras h2 {
        font-size: 26px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-badges {
        gap: 15px;
    }

    .cta-badges span {
        font-size: 14px;
    }

    .location-card.featured {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Increased padding for better mobile spacing */
    .container {
        padding: 0 20px;
    }

    .top-bar {
        padding: 8px 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        padding: 5px 0;
        font-size: 11px;
    }

    .top-bar-content span {
        font-size: 11px;
        text-align: center;
    }

    .navbar {
        top: auto;
        position: fixed;
        padding: 10px 0;
    }

    .logo-img {
        height: 65px;
        min-width: 65px;
    }

    .logo-text {
        font-size: 15px;
        line-height: 1.2;
    }

    .hero {
        padding-top: 100px;
        min-height: 60vh;
    }

    .hero-content {
        padding: 30px 20px;
        margin-top: 20px;
        border-radius: var(--radius-sm);
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .hero-note {
        font-size: 12px;
        margin-top: 15px;
    }

    .hero-features {
        gap: 15px;
        margin-bottom: 25px;
    }

    .feature-badge {
        padding: 10px 15px;
        font-size: 13px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
        font-size: 14px;
    }

    .primary-btn.large,
    .secondary-btn.large {
        padding: 16px 35px;
        font-size: 15px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .okefenokee-content h3 {
        font-size: 20px;
        margin-top: 30px;
    }

    .okefenokee-content p {
        font-size: 15px;
    }

    .okefenokee-list li {
        padding: 15px 18px;
        font-size: 14px;
    }

    .location-card {
        padding: 25px 20px;
    }

    .location-card h3 {
        font-size: 18px;
    }

    .review-card {
        padding: 25px 20px;
    }

    .review-text {
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .cta-badges span {
        font-size: 13px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .why-choose-grid,
    .amenities-sections,
    .attractions-grid,
    .location-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .amenities-detailed {
        padding: 30px 15px;
    }

    .amenity-section {
        padding: 20px;
    }

    .amenity-section h3 {
        font-size: 20px;
    }

    .attraction-card {
        padding: 20px;
    }

    .attraction-card h3 {
        font-size: 18px;
    }

    .highway-access {
        padding: 25px 20px;
    }

    .about-cta {
        padding: 35px 20px;
    }

    .about-cta h2 {
        font-size: 24px;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
    }

    .map-container iframe {
        height: 300px;
    }

    /* Better mobile form inputs */
    .form-group input,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 16px;
    }

    /* Mobile-optimized tables and lists */
    .rules-list li,
    .okefenokee-list li {
        font-size: 14px;
        padding: 10px 15px;
    }

    /* Better mobile navigation */
    .mobile-toggle {
        min-height: 44px;
        min-width: 44px;
        padding: 10px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .section-title {
        font-size: 20px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .primary-btn,
    .secondary-btn {
        padding: 12px 25px;
        font-size: 13px;
    }

    .logo-text {
        font-size: 13px;
    }

    .logo-img {
        height: 55px;
        min-width: 55px;
    }

    /* Improved mobile-specific adjustments */
    .top-bar-content span {
        font-size: 10px;
    }

    .hero-content {
        padding: 25px 15px;
    }

    .feature-badge {
        padding: 8px 12px;
        font-size: 11px;
    }

    .section-subtitle {
        font-size: 13px;
    }
}

/* Pricing Page - Simple Clean Design */
.pricing-section {
    background: var(--white);
    min-height: 80vh;
}

.pricing-cards-section {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: var(--white);
    border: 3px solid var(--light-gray);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-green);
}

.pricing-card.featured {
    border-color: var(--golden-orange);
    border-width: 4px;
    background: linear-gradient(135deg, rgba(200, 147, 66, 0.05), rgba(212, 161, 71, 0.05));
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--golden-orange);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(200, 147, 66, 0.3);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.pricing-amount {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-green);
}

.price {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--dark-gray);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px 30px;
    background: var(--secondary-green);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    margin-top: 30px;
}

.pricing-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.pricing-card.featured .pricing-btn {
    background: var(--golden-orange);
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--warm-tan);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
}

.pricing-note p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.pricing-note a {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Pricing Additional Sections */
.whats-included,
.site-types,
.additional-fees,
.pricing-notes,
.pricing-cta {
    margin-bottom: 60px;
}

.whats-included h2,
.site-types h2,
.additional-fees h2,
.pricing-notes h2,
.pricing-cta h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 40px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.included-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.included-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.included-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.included-item p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.site-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.site-type-card {
    background: var(--cream);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-green);
}

.site-type-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.site-type-card ul {
    list-style: none;
    padding: 0;
}

.site-type-card li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-type-card li:last-child {
    border-bottom: none;
}

.fees-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.fee-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.fee-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 10px;
}

.fee-item p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.fee-item a {
    color: var(--secondary-green);
    text-decoration: none;
    font-weight: 600;
}

.fee-item a:hover {
    text-decoration: underline;
}

.pricing-notes {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    padding: 12px 0 12px 30px;
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-notes li:last-child {
    border-bottom: none;
}

.pricing-notes li::before {
    content: �;
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-size: 24px;
    font-weight: bold;
}

.pricing-cta {
    background: var(--cream);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-cta p {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 35px;
}

/* Responsive Pricing */
@media (max-width: 968px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .site-types-grid {
        grid-template-columns: 1fr;
    }
}

/* Content sections with cleaner white backgrounds */
.content-section {
    background: var(--white);
    padding: 80px 0;
}

.content-section-light {
    background: var(--light-gray);
    padding: 80px 0;
}

/* Updated about content - cleaner white background */
.about-content-clean {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 60px 40px 30px;
    border-radius: 0;
}

.about-content-clean h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.about-content-clean p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* Photo Gallery - Side by Side */
.photo-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    margin: 50px auto;
    max-width: 1000px;
    flex-wrap: wrap;
}

.photo-gallery-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.about-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
    display: block;
}

.about-photo:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Remove old background image styles from these sections */
.about-welcome-no-bg,
.amenities-no-bg,
.attractions-no-bg {
    background: none;
    background-image: none;
    padding: 0;
    margin: 0;
}

/* Mobile adjustments for photo gallery */
@media (max-width: 768px) {
    .photo-gallery {
        gap: 15px;
        margin: 30px auto;
    }

    .photo-gallery-item {
        min-width: 200px;
        max-width: 100%;
    }

    .about-photo {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .photo-gallery {
        flex-direction: column;
        gap: 20px;
    }

    .photo-gallery-item {
        width: 100%;
        max-width: 100%;
    }

    .about-photo {
        height: 200px;
    }
}

/* Decorative Photo Sections */
.decorative-photo-section {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.3) 100%
    );
    pointer-events: none;
}

/* Mobile adjustments for decorative sections */
@media (max-width: 768px) {
    .decorative-photo-section {
        height: 200px;
        background-attachment: scroll; /* Better performance on mobile */
    }
}

@media (max-width: 480px) {
    .decorative-photo-section {
        height: 150px;
    }
}

/* Park Photo Gallery Styles */
.park-gallery-section {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 15px;
}

.gallery-subtitle {
    font-size: 17px;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Cover Image */
.gallery-cover {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    cursor: pointer;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.gallery-cover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cover-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-cover:hover .cover-photo {
    transform: scale(1.05);
}

.gallery-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}

.gallery-cover:hover .gallery-overlay-text {
    background: linear-gradient(to top, rgba(21, 128, 61, 0.95), rgba(21, 128, 61, 0.6));
}

.gallery-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.gallery-overlay-text p {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.photo-count {
    font-size: 16px !important;
    font-weight: 400 !important;
    margin-top: 8px !important;
    opacity: 0.9;
}

/* Collapsible Gallery */
.park-photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-height: 5000px;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease;
    opacity: 1;
}

.park-photo-gallery.collapsed {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-photo {
    transform: scale(1.05);
}

/* Gallery Close Button */
.gallery-close-btn {
    display: block;
    margin: 30px auto 0;
    padding: 16px 40px;
    background: var(--burnt-orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.gallery-close-btn:hover {
    background: var(--rust-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Gallery Lightbox Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: auto;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    margin: auto;
    display: block;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--white);
    font-size: 48px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
    line-height: 1;
    padding: 0 15px;
}

.modal-close:hover {
    color: var(--burnt-orange);
    transform: scale(1.1);
}

.modal-caption {
    text-align: center;
    color: var(--white);
    padding: 20px;
    font-size: 18px;
    margin-top: 15px;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 40px;
    font-weight: bold;
    padding: 20px 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
}

.modal-prev:hover,
.modal-next:hover {
    background-color: var(--burnt-orange);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* Responsive Gallery Styles */
@media (max-width: 968px) {
    .park-photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }

    .gallery-title {
        font-size: 26px;
    }

    .gallery-subtitle {
        font-size: 15px;
    }

    .gallery-cover {
        max-width: 600px;
    }

    .gallery-overlay-text p {
        font-size: 20px;
    }

    .gallery-icon {
        font-size: 40px;
    }

    .modal-prev,
    .modal-next {
        padding: 15px 10px;
        font-size: 30px;
    }

    .modal-close {
        font-size: 36px;
        right: 20px;
        top: 15px;
    }
}

@media (max-width: 768px) {
    .park-photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 12px;
    }

    .gallery-cover {
        max-width: 100%;
    }

    .gallery-overlay-text {
        padding: 20px 15px;
    }

    .gallery-overlay-text p {
        font-size: 18px;
    }

    .gallery-icon {
        font-size: 36px;
    }

    .photo-count {
        font-size: 14px !important;
    }

    .modal-content {
        max-width: 95%;
        max-height: 70vh;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .park-photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .gallery-title {
        font-size: 22px;
    }

    .gallery-subtitle {
        font-size: 14px;
    }

    .gallery-overlay-text p {
        font-size: 16px;
    }

    .gallery-icon {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .gallery-close-btn {
        padding: 14px 30px;
        font-size: 14px;
    }

    .modal-prev,
    .modal-next {
        padding: 12px 8px;
        font-size: 24px;
    }

    .modal-close {
        font-size: 32px;
        right: 15px;
    }
}
