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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

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

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a4480;
}

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

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h1 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 0;
}

.nav-logo span {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

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

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #2c5aa0;
    color: white;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.btn-primary:hover {
    background: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: white;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

/* Sections */
section {
    padding: 4rem 0;
}

.intro {
    background: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
}

/* Services Preview */
.services-preview {
    background: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

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

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

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

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

.service-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.service-link {
    color: #2c5aa0;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.service-link:hover {
    border-bottom-color: #2c5aa0;
}

/* Why Choose Us */
.why-choose-us {
    background: white;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.content-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

.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 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #2c5aa0;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Playfair Display', serif;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.testimonial cite {
    font-weight: 600;
    color: #2c5aa0;
    font-style: normal;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a4480 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta .btn-primary {
    background: white;
    color: #2c5aa0;
    border-color: white;
}

.cta .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

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

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

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

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

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

.season-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .service-card,
    .testimonial {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Favicon */
.favicon {
    width: 32px;
    height: 32px;
}

/* Page Hero */
.page-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1a4480 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Fleet Overview */
.fleet-overview {
    background: #f8f9fa;
}

.fleet-overview h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

.fleet-grid {
    display: grid;
    gap: 3rem;
}

.fleet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.fleet-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.fleet-info h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.fleet-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.fleet-features ul {
    list-style: none;
    margin: 1rem 0;
}

.fleet-features li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.fleet-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.fleet-pricing {
    margin-top: auto;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Routes Section */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.route-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.route-card h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.route-duration {
    background: #e3f2fd;
    color: #2c5aa0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.route-highlights {
    margin-top: 1rem;
}

.route-highlights ul {
    list-style: none;
    margin-top: 0.5rem;
}

.route-highlights li {
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.route-highlights li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

/* Services Included */
.services-included {
    background: white;
}

.services-included h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.included-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.service-category h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e3f2fd;
}

.service-category ul {
    list-style: none;
}

.service-category li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.service-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

/* Booking Info */
.booking-info {
    background: #f8f9fa;
}

.booking-info h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

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

.booking-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-card h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.booking-steps {
    margin-top: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-number {
    background: #2c5aa0;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.season-info {
    margin: 1rem 0;
}

.season {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.season strong {
    color: #2c5aa0;
    display: block;
    margin-bottom: 0.5rem;
}

.season-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.practical-info {
    margin-top: 1rem;
}

.info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: #2c5aa0;
    display: block;
    margin-bottom: 0.5rem;
}

/* Safety & Maintenance */
.safety-maintenance {
    background: white;
}

.safety-maintenance h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
}

.safety-maintenance h3 {
    color: #2c5aa0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* CTA Booking */
.cta-booking {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a4480 100%);
    color: white;
    text-align: center;
}

.cta-booking h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-booking p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.quick-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-contact p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Testimonials Skutsje */
.testimonials-skutsje {
    background: #f8f9fa;
}

.testimonials-skutsje h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

/* Responsive Design for Skutsje Page */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .fleet-card {
        grid-template-columns: 1fr;
    }
    
    .fleet-image img {
        min-height: 250px;
    }
    
    .included-services {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .content-split {
        grid-template-columns: 1fr;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .fleet-info {
        padding: 1.5rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Services Categories */
.services-categories {
    background: #f8f9fa;
}

.services-categories h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

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

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

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

.category-card.featured {
    border: 3px solid #2c5aa0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.category-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 1rem;
}

.category-services ul {
    list-style: none;
    margin: 1.5rem 0;
}

.category-services li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.category-services li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.featured-partner {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #e3f2fd;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.partner-info h4 {
    color: #2c5aa0;
    margin: 1rem 0 0.5rem 0;
}

.partner-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.partner-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.specialty {
    background: #2c5aa0;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.partner-highlight {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #2c5aa0;
}

/* Specialized Services */
.specialized-services {
    background: white;
}

.specialized-services h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

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

.specialized-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}

.specialized-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.specialized-features ul {
    list-style: none;
    margin: 1.5rem 0;
}

.specialized-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.specialized-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Process Steps */
.how-it-works {
    background: #f8f9fa;
}

.how-it-works h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

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

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    background: #2c5aa0;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
}

.step-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Partner Spotlight */
.partner-spotlight {
    background: white;
}

.partner-spotlight h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.spotlight-text h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.spotlight-specialties {
    margin: 2rem 0;
}

.spotlight-specialties h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.specialties-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.specialty-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #2c5aa0;
}

.specialty-item strong {
    color: #2c5aa0;
    display: block;
    margin-bottom: 0.5rem;
}

.spotlight-contact {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #e3f2fd;
    border-radius: 10px;
}

.spotlight-contact h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.spotlight-testimonial {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.spotlight-testimonial blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.spotlight-testimonial cite {
    color: #2c5aa0;
    font-weight: 600;
}

.spotlight-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Service Areas */
.service-areas {
    background: #f8f9fa;
}

.service-areas h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.area-group h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    text-align: center;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.area-group li::before {
    content: "📍";
    position: absolute;
    left: 0;
}

/* Emergency Services */
.emergency-services {
    background: white;
}

.emergency-services h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

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

.emergency-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.emergency-card.urgent {
    border-color: #ff4444;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
}

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

.emergency-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.emergency-contact {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 2px solid #2c5aa0;
}

.emergency-contact strong {
    display: block;
    color: #2c5aa0;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.emergency-contact span {
    color: #666;
    font-size: 0.9rem;
}

.emergency-services-list ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.emergency-services-list li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.emergency-services-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
}

/* CTA Services */
.cta-services {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a4480 100%);
    color: white;
    text-align: center;
}

.cta-services h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-emergency {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-emergency a {
    color: #ffeb3b;
    font-weight: bold;
    text-decoration: underline;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .specialized-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-areas {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-partner {
        padding: 1rem;
    }
    
    .partner-specialties {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .category-card {
        padding: 1.5rem;
    }
    
    .specialized-card {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .emergency-card {
        padding: 1.5rem;
    }
    
    .spotlight-contact {
        padding: 1rem;
    }
    
    .specialty {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .emergency-icon {
        font-size: 2.5rem;
    }
}

/* Accommodation Types */
.accommodation-types {
    background: #f8f9fa;
}

.accommodation-types h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

.types-grid {
    display: grid;
    gap: 3rem;
}

.type-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.type-card.featured {
    border: 3px solid #2c5aa0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.type-image {
    position: relative;
    overflow: hidden;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.3s ease;
}

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

.type-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.type-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.type-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature {
    background: #e3f2fd;
    color: #2c5aa0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.type-highlights {
    margin: 1.5rem 0;
}

.type-highlights h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.type-highlights ul {
    list-style: none;
}

.type-highlights li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.type-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.maintenance-note {
    background: #f0f8ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #2c5aa0;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.type-pricing {
    margin-top: auto;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.price-range {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.8rem;
    color: #666;
}

/* Featured Accommodations */
.featured-accommodations {
    background: white;
}

.featured-accommodations h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

.featured-grid {
    display: grid;
    gap: 3rem;
}

.featured-accommodation {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.featured-accommodation:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.accommodation-gallery {
    position: relative;
    overflow: hidden;
}

.accommodation-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(44, 90, 160, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.gallery-overlay:hover {
    background: rgba(44, 90, 160, 1);
}

.accommodation-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

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

.accommodation-header h3 {
    color: #2c5aa0;
    margin-bottom: 0;
}

.accommodation-rating {
    text-align: right;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    display: block;
}

.rating-text {
    font-size: 0.8rem;
    color: #666;
}

.accommodation-details {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.detail-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.detail-item strong {
    color: #2c5aa0;
}

.accommodation-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature-category h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-category ul {
    list-style: none;
}

.feature-category li {
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1rem;
    font-size: 0.9rem;
}

.feature-category li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.maintenance-info {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
    border-left: 3px solid #2c5aa0;
}

.accommodation-pricing {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
}

.price-details {
    font-size: 0.8rem;
    color: #666;
}

.booking-buttons {
    display: flex;
    gap: 0.5rem;
}

.booking-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* Accommodation Services */
.accommodation-services {
    background: #f8f9fa;
}

.accommodation-services h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

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

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

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

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

.service-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Booking Process */
.booking-process {
    background: white;
}

.booking-process h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

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

.timeline-step {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.timeline-step:hover {
    border-color: #2c5aa0;
}

.step-number {
    background: #2c5aa0;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
}

.step-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Package Deals */
.package-deals {
    background: #f8f9fa;
}

.package-deals h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

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

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.package-card.featured {
    border: 3px solid #2c5aa0;
}

.package-header {
    background: #2c5aa0;
    color: white;
    padding: 1.5rem;
    position: relative;
}

.package-header h3 {
    color: white;
    margin-bottom: 0;
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.package-content {
    padding: 2rem;
}

.package-includes {
    margin: 1.5rem 0;
}

.package-includes h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.package-includes ul {
    list-style: none;
}

.package-includes li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.package-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.package-pricing {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.package-price {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.package-savings {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
}

/* Guest Testimonials */
.guest-testimonials {
    background: white;
}

.guest-testimonials h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonials-grid .testimonial {
    position: relative;
    padding-top: 3rem;
}

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

.guest-info strong {
    display: block;
    color: #2c5aa0;
    font-size: 1.1rem;
}

.guest-info span {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.stay-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
    margin-top: 1rem;
    font-style: italic;
}

/* Practical Info */
.practical-info {
    background: #f8f9fa;
}

.practical-info h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.info-details {
    margin: 1rem 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: #2c5aa0;
}

/* Maintenance Quality */
.maintenance-quality {
    background: white;
}

.maintenance-quality h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.maintenance-quality h3 {
    color: #2c5aa0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* CTA Accommodations */
.cta-accommodations {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a4480 100%);
    color: white;
    text-align: center;
}

.cta-accommodations h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-accommodations p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-extras {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-extras p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design for Accommodations Page */
@media (max-width: 768px) {
    .type-card {
        grid-template-columns: 1fr;
    }
    
    .type-image img {
        min-height: 250px;
    }
    
    .featured-accommodation {
        grid-template-columns: 1fr;
    }
    
    .accommodation-gallery img {
        min-height: 300px;
    }
    
    .accommodation-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .accommodation-rating {
        text-align: left;
    }
    
    .accommodation-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .accommodation-pricing {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .booking-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .type-content {
        padding: 1.5rem;
    }
    
    .accommodation-info {
        padding: 1.5rem;
    }
    
    .package-content {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .timeline-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .type-features {
        justify-content: center;
    }
    
    .feature {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .booking-buttons .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Activity Categories */
.activity-categories {
    background: #f8f9fa;
}

.activity-categories h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

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

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

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-card.water {
    border-top: 4px solid #4fc3f7;
}

.category-card.culture {
    border-top: 4px solid #ab47bc;
}

.category-card.crafts {
    border-top: 4px solid #ff7043;
}

.category-card.culinary {
    border-top: 4px solid #66bb6a;
}

.category-card.active {
    border-top: 4px solid #ffa726;
}

.category-card.family {
    border-top: 4px solid #ef5350;
}

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

.category-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.category-activities {
    text-align: left;
    margin: 1.5rem 0;
}

.category-activities ul {
    list-style: none;
}

.category-activities li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.category-activities li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.category-highlight {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    border-left: 3px solid #2c5aa0;
}

/* Featured Activities */
.featured-activities {
    background: white;
}

.featured-activities h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

.featured-grid {
    display: grid;
    gap: 3rem;
}

.activity-card {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.activity-card.featured {
    border: 3px solid #2c5aa0;
}

.activity-image {
    position: relative;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.3s ease;
}

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

.activity-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.activity-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

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

.activity-header h3 {
    color: #2c5aa0;
    margin-bottom: 0;
    flex: 1;
}

.activity-rating {
    text-align: right;
    margin-left: 1rem;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
    display: block;
}

.rating-text {
    font-size: 0.8rem;
    color: #666;
}

.activity-details {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.detail-item {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.detail-item strong {
    color: #2c5aa0;
}

.activity-program {
    margin: 1.5rem 0;
}

.activity-program h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.program-timeline {
    background: white;
    padding: 1rem;
    border-radius: 8px;
}

.timeline-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.time {
    background: #2c5aa0;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 1rem;
    min-width: 60px;
    text-align: center;
}

.activity-includes,
.activity-highlights {
    margin: 1.5rem 0;
}

.activity-includes h4,
.activity-highlights h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.activity-includes ul,
.activity-highlights ul {
    list-style: none;
}

.activity-includes li,
.activity-highlights li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.activity-includes li::before,
.activity-highlights li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.activity-pricing {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c5aa0;
}

.price-details {
    font-size: 0.8rem;
    color: #666;
}

.activity-buttons {
    display: flex;
    gap: 0.5rem;
}

.activity-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

/* Seasonal Activities */
.seasonal-activities {
    background: #f8f9fa;
}

.seasonal-activities h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

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

.season-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.season-card:hover {
    transform: scale(1.02);
}

.season-card.spring {
    border-top: 5px solid #4caf50;
}

.season-card.summer {
    border-top: 5px solid #ff9800;
}

.season-card.autumn {
    border-top: 5px solid #795548;
}

.season-card.winter {
    border-top: 5px solid #2196f3;
}

.season-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a4480 100%);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.season-header h3 {
    color: white;
    margin-bottom: 0;
}

.season-icon {
    font-size: 2rem;
}

.season-content {
    padding: 2rem;
}

.season-activities {
    margin: 1.5rem 0;
}

.season-activities h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.season-activities ul {
    list-style: none;
}

.season-activities li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.season-activities li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.season-highlight {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 3px solid #2c5aa0;
}

/* Group Activities */
.group-activities {
    background: white;
}

.group-activities h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

.group-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.group-types {
    display: grid;
    gap: 3rem;
}

.group-type {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2c5aa0;
}

.group-type h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.group-activities-list {
    margin: 1.5rem 0;
}

.group-activities-list h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.group-activities-list ul {
    list-style: none;
}

.group-activities-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.group-activities-list li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-size: 0.8rem;
}

.group-activities-list strong {
    color: #2c5aa0;
}

.group-services {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.group-services h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Activity Packages */
.activity-packages {
    background: #f8f9fa;
}

.activity-packages h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

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

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.package-card.complete {
    border: 3px solid #2c5aa0;
}

.package-header {
    background: #2c5aa0;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.package-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.package-duration {
    font-size: 0.9rem;
    opacity: 0.9;
}

.package-content {
    padding: 2rem;
}

.package-itinerary {
    margin: 1.5rem 0;
}

.package-itinerary h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.day-item {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #2c5aa0;
}

.day-item strong {
    color: #2c5aa0;
    display: block;
    margin-bottom: 0.3rem;
}

.package-includes {
    margin: 1.5rem 0;
}

.package-includes h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.package-includes ul {
    list-style: none;
}

.package-includes li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.package-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.package-pricing {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.package-price {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.package-note {
    font-size: 0.9rem;
    color: #666;
}

/* Booking Info Activities */
.booking-info-activities {
    background: white;
}

.booking-info-activities h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

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

.booking-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-card h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.booking-details {
    margin: 1rem 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row strong {
    color: #2c5aa0;
}

.preparation-list h4 {
    color: #2c5aa0;
    margin: 1.5rem 0 0.5rem 0;
}

.preparation-list ul {
    list-style: none;
    margin-bottom: 1rem;
}

.preparation-list li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.preparation-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.group-benefits {
    margin-top: 1rem;
}

.group-benefits h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.group-benefits ul {
    list-style: none;
}

.group-benefits li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.group-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.safety-measures {
    margin-top: 1rem;
}

.safety-measures h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.safety-measures ul {
    list-style: none;
}

.safety-measures li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
}

.safety-measures li::before {
    content: "🛡️";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Local Guides */
.local-guides {
    background: #f8f9fa;
}

.local-guides h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

.guides-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.guide-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.guide-info h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.guide-specialty {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.guide-expertise {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 3px solid #2c5aa0;
}

.guide-expertise strong {
    color: #2c5aa0;
    display: block;
    margin-bottom: 0.5rem;
}

.guides-note {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-style: italic;
    color: #666;
}

/* Activity Testimonials */
.activity-testimonials {
    background: white;
}

.activity-testimonials h2 {
    color: #2c5aa0;
    margin-bottom: 3rem;
    text-align: center;
}

.activity-testimonial {
    position: relative;
    padding-top: 2rem;
}

.activity-testimonial .testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.participant-info strong {
    display: block;
    color: #2c5aa0;
    font-size: 1.1rem;
}

.participant-info span {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.activity-rating {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #999;
    text-align: right;
    margin-top: 1rem;
    font-style: italic;
}

/* Sustainability */
.sustainability {
    background: #f8f9fa;
}

.sustainability h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.sustainability h3 {
    color: #2c5aa0;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* CTA Activities */
.cta-activities {
    background: linear-gradient(135deg, #2c5aa0 0%, #1a4480 100%);
    color: white;
    text-align: center;
}

.cta-activities h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-activities p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-extras {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-extras p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive Design for Activities Page */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-card {
        grid-template-columns: 1fr;
    }
    
    .activity-image img {
        min-height: 250px;
    }
    
    .activity-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .activity-rating {
        text-align: left;
    }
    
    .activity-details {
        grid-template-columns: 1fr;
    }
    
    .activity-pricing {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .activity-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .group-types {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .category-card {
        padding: 1.5rem;
    }
    
    .activity-content {
        padding: 1.5rem;
    }
    
    .season-content {
        padding: 1.5rem;
    }
    
    .package-content {
        padding: 1.5rem;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
    
    .guide-card {
        padding: 1.5rem;
    }
    
    .group-type {
        padding: 1.5rem;
    }
    
    .activity-buttons .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .time {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 0.3rem;
    }
}