/* Atlanta Horseback Website - Complete CSS Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-secondary:hover {
    background: #8B4513;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #D2691E;
    border: 2px solid #D2691E;
}

.btn-outline:hover {
    background: #D2691E;
    color: white;
}

.btn-primary.large, .btn-secondary.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h2 {
    color: #8B4513;
    margin: 0;
    font-size: 1.8rem;
}

.logo a {
    text-decoration: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8B4513;
}

.cta-nav {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5dc, #f0e68c);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.stars {
    color: #ffd700;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.urgency-banner {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.section-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature ul {
    text-align: left;
    margin-top: 1rem;
}

.feature li {
    margin: 0.5rem 0;
    padding-left: 1rem;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5dc, #fff8dc);
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.service-card.featured {
    border: 3px solid #8B4513;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B4513;
    margin: 1rem 0;
}

.special-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-highlight {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial blockquote {
    font-style: italic;
    margin: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial cite {
    font-weight: 600;
    color: #8B4513;
}

/* CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.guarantee {
    margin: 2rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.live-booking-feed {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

.booking-item {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Booking Page Styles */
.booking-hero {
    background: linear-gradient(135deg, #f5f5dc, #f0e68c);
    padding: 120px 0 60px;
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    background: rgba(139, 69, 19, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-packages {
    padding: 60px 0;
    background: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package.featured {
    border-color: #8B4513;
    transform: scale(1.05);
}

.package.premium {
    border-color: #D2691E;
    background: linear-gradient(135deg, #fff, #f5f5dc);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-display {
    margin: 1.5rem 0;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B4513;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.savings {
    display: block;
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.duration {
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.book-btn {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.book-btn.primary {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
}

.book-btn.secondary {
    background: transparent;
    border: 2px solid #8B4513;
    color: #8B4513;
}

.book-btn.premium {
    background: linear-gradient(135deg, #D2691E, #ff8c42);
    color: white;
}

.urgency {
    background: #ff6b35;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Safety Assurance */
.safety-assurance {
    padding: 60px 0;
    background: #f9f9f9;
}

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

.safety-point {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Booking Form */
.booking-form-section {
    padding: 60px 0;
    background: white;
}

.booking-urgency {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
}

.live-booking-feed {
    margin-top: 1rem;
}

.booking-notification {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.booking-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-form {
    display: grid;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.add-ons {
    margin: 2rem 0;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.addon-item:hover {
    border-color: #8B4513;
}

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

.submit-btn {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.submit-btn small {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* FAQ Section */
.booking-faq {
    padding: 60px 0;
    background: #f9f9f9;
}

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

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #8B4513;
    margin-bottom: 1rem;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #f5f5dc, #f0e68c);
    padding: 120px 0 60px;
    text-align: center;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight {
    background: rgba(139, 69, 19, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: #8B4513;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail {
    background: white;
    margin: 3rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-detail.featured-service {
    border: 3px solid #8B4513;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.service-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-content.reverse .service-text {
    order: 2;
}

.service-content.reverse .service-image {
    order: 1;
}

.service-text {
    padding: 3rem;
}

.service-image {
    position: relative;
}

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

.price-tag {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin: 1rem 0;
    font-weight: 600;
}

.price-tag.popular {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.popular-label {
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.service-features,
.perfect-for,
.trail-routes,
.safety-note,
.group-options {
    margin: 2rem 0;
}

.service-features h4,
.perfect-for h4,
.trail-routes h4,
.safety-note h4,
.group-options h4 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.route {
    background: #f5f5dc;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    border-left: 4px solid #8B4513;
}

.addon-services {
    padding: 60px 0;
    background: #f9f9f9;
}

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

.addon-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.addon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.addon-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    margin: 1rem 0;
}

.what-to-expect {
    padding: 60px 0;
    background: white;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #8B4513;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    background: #8B4513;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item > div:not(.timeline-number) {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 3rem;
}

.services-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    text-align: center;
}

.services-cta h2 {
    color: white;
}

.service-guarantee {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Family Experiences Page Styles */
.family-hero {
    background: linear-gradient(135deg, #f5f5dc, #f0e68c);
    padding: 120px 0 60px;
    text-align: center;
}

.family-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B4513;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.age-appropriate-adventures {
    padding: 60px 0;
}

.age-program {
    margin: 4rem 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.age-program.featured {
    border: 3px solid #8B4513;
}

.program-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.program-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.program-content.reverse .program-text {
    order: 2;
}

.program-content.reverse .program-image {
    order: 1;
}

.program-text {
    padding: 3rem;
}

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

.program-price {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin: 1rem 0;
    font-weight: 600;
}

.program-price.popular {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.program-features,
.parent-benefits,
.learning-outcomes,
.family-benefits {
    margin: 2rem 0;
}

.program-features h4,
.parent-benefits h4,
.learning-outcomes h4,
.family-benefits h4 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.special-packages {
    padding: 60px 0;
    background: #f9f9f9;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card.premium {
    background: linear-gradient(135deg, #fff, #f5f5dc);
    border: 2px solid #D2691E;
}

.package-header {
    margin-bottom: 2rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B4513;
    margin: 1rem 0;
}

.package-duration {
    color: #666;
    font-weight: 500;
}

.package-features {
    flex: 1;
    margin: 2rem 0;
}

.package-features ul {
    text-align: left;
    list-style: none;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.family-testimonials {
    padding: 60px 0;
    background: white;
}

.testimonial-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
}

.family-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.family-safety {
    padding: 60px 0;
    background: #f9f9f9;
}

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

.safety-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.planning-visit {
    padding: 60px 0;
    background: white;
}

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

.planning-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.planning-item h4 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.planning-item ul {
    list-style: none;
}

.planning-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.family-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    text-align: center;
}

.family-cta h2 {
    color: white;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stat {
    text-align: center;
}

.stat-big {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.final-guarantee {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #D2691E;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #D2691E;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
}

.hours h5 {
    color: #D2691E;
    margin: 1rem 0 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .service-content,
    .program-content {
        grid-template-columns: 1fr;
    }
    
    .service-content.reverse,
    .program-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-content.reverse .service-text,
    .program-content.reverse .program-text {
        order: 1;
    }
    
    .service-content.reverse .service-image,
    .program-content.reverse .program-image {
        order: 2;
    }
    
    .family-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-number {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        flex-direction: row;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-item > div:not(.timeline-number) {
        margin: 0;
    }
    
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-badges,
    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .badge,
    .highlight {
        width: 100%;
        text-align: center;
    }
    
    .booking-form-container {
        padding: 2rem 1rem;
    }
    
    .family-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .planning-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-buttons,
    .social-links {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    .final-cta {
        background: none !important;
        color: black !important;
    }
}