/* Louisiana Governmental Studies - Main Stylesheet */

/* ========================================
   Link Styles for Headers and Titles
   ======================================== */

/* Remove default link styling from h2 and h3 links */
h2 a, h3 a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

h2 a:hover, h3 a:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Map section specific link styles */
.map-details h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.map-details h3 a:hover {
    color: var(--primary-green);
}

/* Art section specific link styles */
.art-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.art-card h3 a:hover {
    color: var(--primary-green);
}

.section-header h2 a {
    color: var(--text-dark);
    text-decoration: none;
}

.section-header h2 a:hover {
    color: var(--primary-green);
}

/* Keep featured product title white when inside green background */
.featured-details h3 a {
    color: white !important;
    text-decoration: none;
}

.featured-details h3 a:hover {
    opacity: 0.9;
}

/* Remove any link styling from images */
a img {
    border: none;
    outline: none;
}

.map-image a, 
.art-image a,
.featured-image a {
    display: block;
    text-decoration: none;
    border: none;
    outline: none;
}

/* Add hover effect for clickable images */
.map-image a img,
.art-image a img {
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.map-image a:hover img,
.art-image a:hover img {
    transform: scale(1.05);
    opacity: 0.95;
}

/* ========================================
   Reset and Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1B7838;
    --dark-green: #0F4C2A;
    --light-green: #2FA651;
    --accent-gold: #FFD700;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

/* Fix for iOS Safari bottom bar */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* ========================================
   Loader Styles
   ======================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeOut 0.5s 1s forwards;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin: 0 auto 20px;
    animation: pulse 1s infinite;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    animation: loading 1s ease-in-out;
}

/* Book Loader for Directory Page */
.loader-book {
    width: 80px;
    height: 100px;
    position: relative;
    animation: flip 1s infinite;
}

.loader-book::before,
.loader-book::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 100px;
    background: var(--primary-green);
    border-radius: 5px;
}

.loader-book::before {
    left: 0;
    transform-origin: right center;
    animation: pageFlip 1s infinite;
}

.loader-book::after {
    right: 0;
}

/* Map Loader for Maps Page */
.loader-map {
    width: 100px;
    height: 100px;
    position: relative;
    animation: mapFold 2s infinite;
}

.loader-map::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 10px;
    transform-style: preserve-3d;
    animation: mapRotate 2s infinite;
}

/* Art Loader for Art Prints Page */
.loader-art {
    width: 100px;
    height: 120px;
    position: relative;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: artFrame 2s infinite;
}

.loader-art::before {
    content: '🎨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    animation: artPaint 2s infinite;
}

@keyframes mapFold {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.9); }
}

@keyframes mapRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes artFrame {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.05); }
    75% { transform: rotate(-5deg) scale(1.05); }
}

@keyframes artPaint {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========================================
   Navigation Styles
   ======================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    min-width: 48px;
    min-height: 48px;
    touch-action: manipulation;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link:hover::after {
    width: 100%;
}

/* ========================================
   Hero Section Styles
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, transparent 50%, rgba(255, 255, 255, 0.1) 50.5%);
    animation: rotate 30s linear infinite;
}

/* Directory Page Hero */
.hero-directory {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: auto;
}

.hero-directory::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,144C672,139,768,149,864,170.7C960,192,1056,224,1152,213.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    animation: fadeInUp 1s 0.2s ease backwards;
}

.hero-directory p {
    font-size: 1.3rem;
    max-width: 800px;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.4s ease backwards;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 2rem;
    animation: badgePulse 2s infinite;
}

/* ========================================
   Button Styles
   ======================================== */
.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: white;
    color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Universal Buy Button Styling */
.buy-btn {
    padding: 1rem 1.5rem;
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.2;
    min-width: 140px;
    box-sizing: border-box;
    height: auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 48px;
    touch-action: manipulation;
}

button.buy-btn,
a.buy-btn {
    padding: 1rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 140px;
    box-sizing: border-box;
    height: auto;
}

.buy-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.buy-btn.tax-exempt {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.buy-btn.tax-exempt:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.featured-product .buy-btn {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.featured-product .buy-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: white;
}

.featured-product .buy-btn.tax-exempt {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.featured-product .buy-btn.tax-exempt:hover {
    background: var(--primary-green);
    color: white;
    border-color: white;
}

/* All Buy Buttons - Consistent Styling */
.buy-btn-primary,
.buy-btn-secondary {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.buy-btn-primary:hover,
.buy-btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Products Section Styles
   ======================================== */
.products {
    padding: 5rem 2rem 3rem;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 2rem;
}

/* White text for books section header */
#books .section-header h2 {
    color: white;
}

#books .section-header p {
    color: white;
}

/* Override for research section headers */
.research-section .section-header h2,
.research-section .section-header p {
    color: #fff;
}

/* Featured Product */
.featured-product {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.featured-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    overflow: visible;
}

.featured-image {
    flex: 0 0 auto;
    animation: float 6s ease-in-out infinite;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    min-height: 0;
}

.featured-image img {
    display: block;
    width: 300px;
    height: auto;
    max-height: 575px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.featured-details {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.featured-details h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-details p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.price-tag {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.pricing-tiers {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-tiers ul {
    list-style: none;
}

.pricing-tiers li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.buy-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.map-card .product-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.map-card .buy-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

/* ========================================
   Product Showcase (Directory Page)
   ======================================== */
.product-showcase {
    padding: 5rem 2rem;
    background: white;
    position: relative;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.product-visual {
    position: relative;
    animation: fadeInLeft 1s ease;
}

.book-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: bookFloat 6s ease-in-out infinite;
}

.book-cover-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 2px 0 10px rgba(0, 0, 0, 0.2);
}

.product-details {
    animation: fadeInRight 1s ease;
}

.product-details h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
}

.product-details h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 40px;
}

.features-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.features-list li:hover {
    padding-left: 50px;
    background: var(--bg-light);
    margin: 0 -1rem;
    padding-right: 1rem;
}

/* ========================================
   Pricing Section (Directory Page)
   ======================================== */
.pricing-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tier-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.tier-quantity {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.tier-unit {
    font-size: 1rem;
    color: var(--text-light);
}

/* Purchase Section */
.purchase-section {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.purchase-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.purchase-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.purchase-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.purchase-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.purchase-buttons form {
    display: inline-block;
}

.tax-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========================================
   Maps Section Styles
   ======================================== */
.maps-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.map-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.map-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.map-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-image-house-senate {
    width: 100%;
    max-width: 440px;
    height: auto;
    aspect-ratio: 440/205;
    object-fit: cover;
    border-radius: 10px;
}

.map-image-congressional {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 350/330;
    object-fit: cover;
    border-radius: 10px;
}

.map-details h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-features {
    list-style: none;
    margin-bottom: 2rem;
}

.map-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.map-features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.map-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-option {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.price-option h4 {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-option .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
}

/* ========================================
   Art Section Styles
   ======================================== */
.art-section {
    padding: 5rem 2rem;
    background: white;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.art-card {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.art-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.art-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.art-card:hover::after {
    transform: scaleX(1);
}

.art-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.art-print-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.art-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.art-artist {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.art-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* ========================================
   Research Section Styles
   ======================================== */
.research-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    position: relative;
    overflow: hidden;
}

.research-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.research-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.research-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.research-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.research-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.research-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.research-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.research-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

/* ========================================
   Info Cards (Directory Page)
   ======================================== */
.info-section {
    padding: 5rem 2rem;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -100%;
    left: -100%;
    animation: rotate 20s linear infinite;
}

.info-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* ========================================
   Footer Styles
   ======================================== */
footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes flip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(10deg); }
}

@keyframes pageFlip {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(-90deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

@keyframes bookFloat {
    0%, 100% { 
        transform: perspective(1000px) rotateY(-5deg) translateY(0);
    }
    50% { 
        transform: perspective(1000px) rotateY(5deg) translateY(-20px);
    }
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* ========================================
   Maps Page Specific Styles
   ======================================== */

/* Maps Hero */
.hero-maps {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: auto;
}

.hero-maps::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,144C672,139,768,149,864,170.7C960,192,1056,224,1152,213.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

/* Maps Showcase Section */
.maps-showcase-section {
    padding: 5rem 2rem;
    background: white;
}

.maps-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.map-product-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.map-product-image {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-showcase-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

.map-product-details {
    padding: 3rem;
}

.map-product-details h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.map-product-details h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
}

.map-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 2rem 0;
    line-height: 1.8;
}

.map-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.map-pricing-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.pricing-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.map-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-green);
    margin: 1rem 0;
}

.pricing-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.map-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.map-buttons form {
    width: 100%;
}

.map-buttons .buy-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
}

/* Bundle Offer */
.bundle-offer {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 20px;
    padding: 3rem;
    color: white;
    text-align: center;
    margin-top: 3rem;
}

.bundle-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bundle-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.bundle-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.sale-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-gold);
}

.savings {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

.bundle-cta {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
}

/* Maps Benefits Section */
.maps-benefits {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Art Prints Page Specific Styles
   ======================================== */

/* Art Hero */
.hero-art {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-art::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

/* Art About Section */
.art-about-section {
    padding: 5rem 2rem;
    background: white;
}

.art-about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.art-about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.art-about-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.art-about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.art-about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.art-contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.art-contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.art-phone {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.art-about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.artist-portrait {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.portrait-text {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}

/* Art Collection Section */
.art-collection-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.art-collection-container {
    max-width: 1400px;
    margin: 0 auto;
}

.art-print-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.art-print-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.art-print-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.art-print-image-container {
    position: relative;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.art-print-showcase {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.art-print-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
}

.art-print-details {
    padding: 3rem;
}

.art-print-details h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.art-artist-name {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.art-description {
    margin-bottom: 2rem;
}

.art-description p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.art-specs {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-light);
}

.art-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.art-price-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.art-price-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.art-price-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.art-price-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.art-order-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.art-order-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.art-order-phone {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-dark);
}

/* Art Info Section */
.art-info-section {
    padding: 5rem 2rem;
    background: white;
}

.art-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.art-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.art-info-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.art-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.art-info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.art-info-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.art-info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Art CTA Section */
.art-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.art-cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.art-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.art-cta-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.art-cta-phone span {
    font-size: 1.3rem;
}

.art-cta-phone a {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.art-cta-phone a:hover {
    transform: scale(1.05);
    text-decoration: underline;
}

.art-hours {
    font-size: 1rem;
    opacity: 0.8;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet Responsive */
@media (max-width: 968px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Maps Page */
    .map-product-grid {
        grid-template-columns: 1fr;
    }

    .map-product-image {
        padding: 2rem;
    }

    .map-features-grid {
        grid-template-columns: 1fr;
    }

    /* Art Prints Page */
    .art-about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .artist-portrait {
        width: 250px;
        height: 250px;
        margin: 2rem auto;
    }

    .art-print-grid {
        grid-template-columns: 1fr;
    }

    .art-pricing {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-btn {
        display: block;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid #eee;
        display: block;
        min-height: 48px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-directory {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .hero-directory p {
        font-size: 1.1rem;
    }

    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Art Prints Page */
    .hero-art h1 {
        font-size: 1.5rem;
    }

    .art-about-section {
        padding: 2.5rem 1rem;
    }

    .art-about-text h2 {
        font-size: 2rem;
    }

    .art-about-text p {
        font-size: 1rem;
    }

    .art-contact-info {
        padding: 1.25rem;
    }

    .art-contact-info h3 {
        font-size: 1.3rem;
    }

    .art-phone {
        font-size: 1.3rem;
    }

    .artist-portrait {
        width: 180px;
        height: 180px;
    }

    .portrait-text {
        font-size: 1.1rem;
    }

    .art-collection-section {
        padding: 2.5rem 1rem;
    }

    .art-print-image-container {
        padding: 1.5rem 0.75rem;
    }

    .art-print-showcase {
        max-width: 230px;
    }

    .art-print-details {
        padding: 1.5rem 1rem;
    }

    .art-print-details h2 {
        font-size: 1.5rem;
    }

    .art-artist-name {
        font-size: 1rem;
    }

    .art-description p {
        font-size: 0.95rem;
    }

    .art-specs {
        padding: 0.75rem;
    }

    .spec-item {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .art-price-box {
        padding: 1.25rem;
    }

    .art-price-amount {
        font-size: 1.75rem;
    }

    .art-order-phone {
        font-size: 1.3rem;
    }

    .art-info-card {
        padding: 1.5rem;
    }

    .art-info-icon {
        font-size: 2.5rem;
    }

    .art-info-card h3 {
        font-size: 1.3rem;
    }

    .art-info-card p {
        font-size: 0.9rem;
    }

    .art-cta-section {
        padding: 1.5rem 1rem;
    }

    .art-cta-section h3 {
        font-size: 1.5rem;
    }

    .art-cta-section p {
        font-size: 1rem;
    }

    .art-cta-phone a {
        font-size: 1.3rem;
    }

    /* Featured Product */
    .featured-content {
        flex-direction: column;
        text-align: center;
    }

    .featured-image {
        margin: 0 auto 3rem;
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: none;
        overflow: visible;
        min-height: 0;
    }

    .featured-image img {
        width: 100%;
        max-width: 250px;
        height: auto;
        max-height: 400px;
        margin: 0 auto;
    }

    #books .section-header {
        margin-bottom: 2rem;
    }

    .featured-product {
        padding: 2rem 1.5rem;
    }

    .products {
        padding: 3rem 1.5rem;
    }

    .featured-details {
        min-width: auto;
    }

    /* Product Showcase */
    .product-showcase {
        padding: 3rem 1.5rem;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-visual {
        max-width: 300px;
        margin: 0 auto;
    }

    .book-mockup {
        animation: none;
    }

    .book-cover-img {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

    .product-details h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .product-details h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .product-details > p {
        text-align: center;
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .features-list {
        margin: 1.5rem 0;
    }

    .features-list li {
        padding: 0.8rem 0;
        padding-left: 35px;
        font-size: 0.95rem;
    }

    .features-list li::before {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }

    .features-list li:hover {
        padding-left: 40px;
        margin: 0 -0.5rem;
        padding-right: 0.5rem;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 3rem 1rem;
    }

    .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-header p {
        font-size: 1.1rem;
    }

    .pricing-tiers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tier-card {
        padding: 1.5rem;
    }

    .tier-quantity {
        font-size: 1.1rem;
    }

    .tier-price {
        font-size: 2rem;
    }

    /* Purchase Section */
    .purchase-section {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
        border-radius: 15px;
    }

    .purchase-title {
        font-size: 1.8rem;
    }

    .purchase-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .purchase-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .purchase-buttons form {
        width: 100%;
        max-width: 280px;
    }

    .buy-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .tax-note {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

    /* Maps */
    .map-pricing {
        grid-template-columns: 1fr;
    }

    .map-showcase {
        grid-template-columns: 1fr;
    }

    .map-card .product-buttons {
        grid-template-columns: 1fr;
    }

    /* Research */
    .research-features {
        grid-template-columns: 1fr;
    }

    /* Art */
    .art-grid {
        grid-template-columns: 1fr;
    }

    /* Info Section */
    .info-section {
        padding: 3rem 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    .info-card h3 {
        font-size: 1.3rem;
    }

    .info-card p {
        font-size: 0.95rem;
    }

    /* Maps Page Specific */
    .hero-maps {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .maps-showcase-section {
        padding: 3rem 1.5rem;
    }

    .map-product-card {
        margin-bottom: 3rem;
    }

    .map-product-grid {
        grid-template-columns: 1fr;
    }

    .map-product-image {
        padding: 2rem 1rem;
    }

    .map-showcase-img {
        max-width: 300px;
    }

    .map-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .map-product-details {
        padding: 2rem 1.5rem;
    }

    .map-product-details h2 {
        font-size: 2rem;
    }

    .map-description {
        font-size: 1.1rem;
    }

    .map-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .map-pricing-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .map-price {
        font-size: 2rem;
    }

    .bundle-offer {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .bundle-content h3 {
        font-size: 2rem;
    }

    .bundle-price {
        gap: 1rem;
    }

    .sale-price {
        font-size: 2rem;
    }

    .bundle-cta {
        font-size: 1.1rem;
    }

    .maps-benefits {
        padding: 3rem 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Art Prints Page Specific */
    .hero-art {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .art-about-section {
        padding: 3rem 1.5rem;
    }

    .art-about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .art-contact-info {
        padding: 1.5rem;
    }

    .art-phone {
        font-size: 1.5rem;
    }

    .artist-portrait {
        width: 200px;
        height: 200px;
        margin: 1.5rem auto;
    }

    .portrait-text {
        font-size: 1.2rem;
    }

    .art-collection-section {
        padding: 3rem 1.5rem;
    }

    .art-print-card {
        margin-bottom: 3rem;
    }

    .art-print-grid {
        grid-template-columns: 1fr;
    }

    .art-print-image-container {
        padding: 2rem 1rem;
    }

    .art-print-showcase {
        max-width: 280px;
    }

    .art-print-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .art-print-details {
        padding: 2rem 1.5rem;
    }

    .art-print-details h2 {
        font-size: 2rem;
    }

    .art-artist-name {
        font-size: 1.1rem;
    }

    .art-description p {
        font-size: 1rem;
    }

    .art-specs {
        padding: 1rem;
    }

    .spec-item {
        flex-direction: column;
        text-align: left;
        gap: 0.25rem;
    }

    .art-pricing {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .art-price-box {
        padding: 1.5rem;
    }

    .art-price-amount {
        font-size: 2rem;
    }

    .art-order-phone {
        font-size: 1.5rem;
    }

    .art-info-section {
        padding: 3rem 1.5rem;
    }

    .art-info-grid {
        grid-template-columns: 1fr;
    }

    .art-cta-section {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .art-cta-section h3 {
        font-size: 2rem;
    }

    .art-cta-phone {
        flex-direction: column;
        gap: 0.5rem;
    }

    .art-cta-phone a {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
    }

    .featured-details h3 {
        font-size: 1.8rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Hero */
    .hero {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 280px;
    }

    .hero-buttons .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    /* Maps Page */
    .hero-maps h1 {
        font-size: 1.5rem;
    }

    .maps-showcase-section {
        padding: 2.5rem 1rem;
    }

    .map-product-details {
        padding: 1.5rem 1rem;
    }

    .map-product-details h2 {
        font-size: 1.5rem;
    }

    .map-description {
        font-size: 1rem;
    }

    .map-showcase-img {
        max-width: 250px;
    }

    .feature-item h4 {
        font-size: 0.95rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    .pricing-card {
        padding: 1.25rem;
    }

    .pricing-card h3 {
        font-size: 1.1rem;
    }

    .map-price {
        font-size: 1.75rem;
    }

    .map-buttons .buy-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .bundle-offer {
        padding: 1.5rem 1rem;
    }

    .bundle-content h3 {
        font-size: 1.5rem;
    }

    .bundle-content p {
        font-size: 1rem;
    }

    .sale-price {
        font-size: 1.75rem;
    }

    .bundle-cta {
        font-size: 1rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
    }

    .benefit-card h3 {
        font-size: 1.3rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    /* Featured Product */
    .featured-image {
        margin: 0 auto 2rem;
        padding: 0.5rem;
        animation: none;
    }
    
    .featured-image img {
        max-width: 200px;
        max-height: 350px;
        margin: 0 auto;
    }
    
    .featured-product {
        padding: 1.5rem 1rem;
    }

    /* Product Showcase */
    .product-showcase {
        padding: 2.5rem 1rem;
    }

    .product-visual {
        max-width: 250px;
    }

    .book-cover-img {
        max-width: 230px;
    }

    .product-details h2 {
        font-size: 1.75rem;
    }

    .product-details > p {
        font-size: 1rem;
    }

    .features-list li {
        font-size: 0.9rem;
        padding-left: 32px;
    }

    /* Pricing */
    .pricing-section {
        padding: 2.5rem 0.75rem;
    }

    .pricing-header h2 {
        font-size: 1.75rem;
    }

    .tier-card {
        padding: 1.25rem;
    }

    .tier-quantity {
        font-size: 1rem;
    }

    .tier-price {
        font-size: 1.75rem;
    }

    .tier-unit {
        font-size: 0.9rem;
    }

    /* Purchase Section */
    .purchase-section {
        padding: 1.75rem 1.25rem;
        margin: 1.5rem 0.75rem;
    }

    .purchase-title {
        font-size: 1.5rem;
    }

    .purchase-subtitle {
        font-size: 1rem;
    }

    .buy-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Info Cards */
    .info-section {
        padding: 2.5rem 0.75rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .info-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .info-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .info-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Footer */
    footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.95rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    #books .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .product-details h2 {
        font-size: 1.5rem;
    }

    .features-list li {
        font-size: 0.85rem;
    }

    .pricing-header h2 {
        font-size: 1.5rem;
    }

    .purchase-title {
        font-size: 1.3rem;
    }

    .buy-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .product-showcase {
        padding: 2rem 1.5rem;
    }

    .book-cover-img {
        max-width: 200px;
    }
}