/* Chattanooga Lemur Rental - RYAN'S COMPLETE LEMUR MADNESS STYLES */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Neue', cursive;
    background: 
        radial-gradient(circle at 20% 80%, #FF6B9D 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #4ECDC4 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #45B7D1 0%, transparent 50%),
        linear-gradient(45deg, #FFE66D, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4, #FFE66D);
    background-size: 200% 200%, 200% 200%, 200% 200%, 400% 400%;
    animation: 
        gradientShift 8s ease infinite,
        rainbowPulse 3s ease-in-out infinite,
        lemurDance 6s ease-in-out infinite;
    min-height: 100vh;
    color: #2F2F2F;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes rainbowPulse {
    0%, 100% { filter: hue-rotate(0deg) saturate(1); }
    25% { filter: hue-rotate(90deg) saturate(1.5); }
    50% { filter: hue-rotate(180deg) saturate(2); }
    75% { filter: hue-rotate(270deg) saturate(1.5); }
}

@keyframes lemurDance {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(1deg) scale(1.02); }
    50% { transform: rotate(-1deg) scale(1.01); }
    75% { transform: rotate(0.5deg) scale(1.03); }
}

@keyframes crazySpin {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(0.9); }
    75% { transform: rotate(270deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(3deg); }
}

@keyframes bounceAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -10px) rotate(5deg); }
    50% { transform: translate(-5px, 5px) rotate(-3deg); }
    75% { transform: translate(5px, -5px) rotate(2deg); }
}

@keyframes rainbowText {
    0% { color: #FF6B9D; }
    16% { color: #4ECDC4; }
    32% { color: #45B7D1; }
    48% { color: #96CEB4; }
    64% { color: #FFE66D; }
    80% { color: #FF6B9D; }
    100% { color: #4ECDC4; }
}

/* Header Styles - RYAN'S LEMUR OBSESSION HEADER */
header {
    background: 
        linear-gradient(45deg, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4, #FFE66D),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        0 0 50px rgba(255, 107, 157, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 5px solid;
    border-image: linear-gradient(45deg, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4) 1;
    animation: rainbowPulse 4s ease-in-out infinite;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid;
    border-image: linear-gradient(45deg, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4, #FFE66D) 1;
    animation: 
        crazySpin 4s linear infinite,
        rainbowPulse 2s ease-in-out infinite,
        bounceAround 3s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(255, 107, 157, 0.5),
        0 0 40px rgba(78, 205, 196, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.4));
}

@keyframes logoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-container h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    background: linear-gradient(45deg, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4, #FFE66D);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: 
        rainbowText 3s ease-in-out infinite,
        wiggle 2s ease-in-out infinite;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 157, 0.5);
    filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.4));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4, #FFE66D);
    background-size: 300% 300%;
    animation: 
        buttonGradient 3s ease infinite,
        rainbowPulse 2s ease-in-out infinite;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 107, 157, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    border-image: linear-gradient(45deg, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4) 1;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.nav-links a:hover::before {
    left: 100%;
}

@keyframes buttonGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section - RYAN'S LEMUR OBSESSION CENTER */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: 
        linear-gradient(135deg, rgba(255, 107, 157, 0.9), rgba(78, 205, 196, 0.9), rgba(69, 183, 209, 0.9), rgba(150, 206, 180, 0.9), rgba(255, 230, 109, 0.9)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: 30px;
    margin-bottom: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 100px rgba(255, 107, 157, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    border: 5px solid;
    border-image: linear-gradient(45deg, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4, #FFE66D) 1;
    animation: 
        rainbowPulse 5s ease-in-out infinite,
        lemurDance 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(69, 183, 209, 0.1) 0%, transparent 50%);
    animation: crazySpin 20s linear infinite;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-image {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid;
    border-image: linear-gradient(45deg, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4, #FFE66D) 1;
    animation: 
        crazySpin 6s linear infinite,
        rainbowPulse 3s ease-in-out infinite,
        bounceAround 4s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(255, 107, 157, 0.6),
        0 0 60px rgba(78, 205, 196, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.5));
}

.hero-lemur {
    width: 150px;
    height: 150px;
    border-radius: 25px;
    border: 6px solid;
    border-image: linear-gradient(45deg, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4, #FFE66D) 1;
    animation: 
        lemurBounce 3s ease-in-out infinite,
        rainbowPulse 2s ease-in-out infinite,
        wiggle 1.5s ease-in-out infinite;
    box-shadow: 
        0 0 25px rgba(78, 205, 196, 0.5),
        0 0 50px rgba(255, 107, 157, 0.3),
        inset 0 0 15px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.4));
}

@keyframes lemurBounce {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-15px) rotate(5deg) scale(1.1); }
    50% { transform: translateY(-20px) rotate(-3deg) scale(0.9); }
    75% { transform: translateY(-10px) rotate(2deg) scale(1.05); }
}

.hero-title {
    font-family: 'Creepster', cursive;
    font-size: 4rem;
    background: linear-gradient(45deg, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4, #FFE66D, #FF6B9D);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: 
        rainbowText 4s ease-in-out infinite,
        titlePulse 2s ease-in-out infinite,
        wiggle 3s ease-in-out infinite;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 107, 157, 0.6),
        0 0 60px rgba(78, 205, 196, 0.4);
    filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.5));
    position: relative;
    z-index: 10;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #2F2F2F;
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4, #FFE66D, #FF6B9D);
    background-size: 300% 300%;
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 107, 157, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: 
        buttonPulse 2s ease-in-out infinite,
        rainbowPulse 3s ease-in-out infinite,
        wiggle 2s ease-in-out infinite;
    border: 3px solid;
    border-image: linear-gradient(45deg, #FF6B9D, #4ECDC4, #45B7D1, #96CEB4, #FFE66D) 1;
    position: relative;
    overflow: hidden;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.lemur-counter {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.8), rgba(78, 205, 196, 0.8));
    padding: 1rem 2rem;
    border-radius: 20px;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: rainbowPulse 3s ease-in-out infinite;
}

.lemur-counter p {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#lemurCount {
    font-size: 1.5rem;
    animation: rainbowText 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.features h2 {
    text-align: center;
    font-family: 'Permanent Marker', cursive;
    font-size: 2.5rem;
    color: #8B7355;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #2F2F2F, #8B7355);
    border-radius: 15px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 3px solid white;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature h3 {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Testimonial Preview */
.testimonial-preview {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.testimonial-preview h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.5rem;
    color: #D2B48C;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    background: linear-gradient(135deg, #D2B48C, #8B7355);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-quote cite {
    font-weight: 700;
    font-size: 1.1rem;
}

.more-reviews {
    display: inline-block;
    background: linear-gradient(45deg, #8B7355, #D2B48C);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.more-reviews:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Page Headers */
.page-header {
    text-align: center;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-header h1 {
    font-family: 'Creepster', cursive;
    font-size: 3rem;
    color: #2F2F2F;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #2F2F2F;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page */
.services {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.secret-service {
    background: linear-gradient(135deg, #2F2F2F, #8B7355);
    color: white;
}

.service-image {
    flex-shrink: 0;
}

.service-lemur {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    border: 3px solid #2F2F2F;
    animation: lemurBounce 2s ease-in-out infinite;
}

.service-content h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    color: #2F2F2F;
    margin-bottom: 0.5rem;
}

.service-card.secret-service .service-content h2 {
    color: white;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #8B7355;
    margin-bottom: 1rem;
}

.service-card.secret-service .service-content h3 {
    color: #2F2F2F;
}

.service-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

.service-note {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-style: italic;
}

.secret-warning {
    background: #2F2F2F;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.secret-disclaimer {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Reviews Page */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-header h3 {
    font-family: 'Permanent Marker', cursive;
    color: #2F2F2F;
    font-size: 1.3rem;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Review Stats */
.review-stats {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.review-stats h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.5rem;
    color: #8B7355;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat {
    background: linear-gradient(135deg, #2F2F2F, #8B7355);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat h3 {
    font-family: 'Creepster', cursive;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    color: #2F2F2F;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #8B7355;
    border-radius: 10px;
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2F2F2F;
    box-shadow: 0 0 10px rgba(47, 47, 47, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    background: linear-gradient(45deg, #2F2F2F, #8B7355);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-family: 'Comic Neue', cursive;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    color: #8B7355;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-card h3 {
    font-family: 'Permanent Marker', cursive;
    color: #2F2F2F;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.5rem;
    color: #8B7355;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #D2B48C, #8B7355);
    border-radius: 15px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.faq-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Booking CTA */
.booking-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.booking-cta h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.5rem;
    color: #2F2F2F;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.booking-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #2F2F2F;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

footer p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #ccc;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .reviews {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    main {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
