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

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

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-logo a:hover {
    color: #38a169;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover .logo-img {
    opacity: 0.8;
}

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

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #38a169;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #38a169;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.booking-btn {
    background: linear-gradient(135deg, #38a169, #48bb78);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 161, 105, 0.4);
}

.booking-btn::after {
    display: none;
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/static/images/fotogalerie/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    text-align: center;
    color: white !important;
    z-index: 10;
    position: relative;
    animation: fadeInUp 1s ease-out;
    padding: 0 20px; /* Add padding for mobile */
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.6);
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #38a169, #48bb78);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(56, 161, 105, 0.4);
    color: white;
    text-decoration: none;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.4));
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    opacity: 0.7;
}

.scroll-indicator span {
    display: block;
    width: 4px;
    height: 10px;
    background: white;
    margin: 8px auto;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}

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

/* Section Styles */
.section {
    padding: 55px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #f7fafc;
}

/* Location map section should have white background to follow the pattern */
.location-map {
    background: #f7fafc  !important;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #2d5016;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #38a169, #48bb78);
    border-radius: 2px;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2d5016, #38a169);
    color: white;
    text-align: center;
    padding: 120px 0 60px;
    position: relative;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 1.5rem;
}

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

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

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

.text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.text-content p {
    margin-bottom: 1.2rem;
}

.image-content {
    position: relative;
}

.section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Mobile responsive improvements for content grid */
@media (max-width: 768px) {
    /* Reset container and section spacing for mobile */
    .accommodation-and-activities .container {
        padding: 0 1rem;
    }
    
    .accommodation-and-activities .content-block {
        margin-bottom: 3rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center;
        align-items: flex-start;
    }

    .content-grid.reverse {
        direction: ltr !important;
        grid-template-columns: 1fr !important;
    }

    .content-grid.reverse .image-content {
        order: -1 !important;
    }

    .content-grid.reverse .text-content {
        order: 1 !important;
    }

    .image-content {
        width: 100%;
        margin-bottom: 1rem;
    }

    .section-image {
        height: 220px !important;
        max-height: 220px !important;
        width: 100% !important;
        border-radius: 12px;
        object-fit: cover;
    }

    .text-content {
        font-size: 1rem !important;
        line-height: 1.7 !important;
        padding: 0 0.5rem !important;
        margin-top: 0;
    }
    
    .text-content p {
        margin-bottom: 1rem;
        text-align: left;
    }
}

/* Additional mobile fixes for very small screens */
@media (max-width: 480px) {
    .accommodation-and-activities {
        padding: 2rem 0;
    }
    
    .content-grid {
        gap: 1rem !important;
    }
    
    .section-image {
        height: 200px !important;
        max-height: 200px !important;
    }
    
    .text-content {
        font-size: 0.95rem !important;
        padding: 0 !important;
    }
    
    .text-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Content Blocks for merged sections */
.content-block {
    margin-bottom: 2rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.subsection-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #38a169, #48bb78);
    border-radius: 2px;
}

/* Cottage Showcase */
.cottage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

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

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

.cottage-image {
    width: 100%;
    height: 100%;       /* fill the container */
    object-fit: cover;  /* crop images nicely */
    display: block;     /* remove inline spacing */
}

.cottage-image-container {
    position: relative;
    width: 100%;
    height: 250px;  
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(56, 161, 105, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cottage-image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.overlay-link:hover {
    transform: scale(1.05);
    color: white;
}

.overlay-text {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.2s ease;
}

.overlay-link:hover .overlay-text {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.cottage-content {
    padding: 1.5rem;
}

.cottage-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2d5016;
}

.cottage-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Amenities */
.amenities-section {
    margin-top: 2.5rem;
    border-top: 1px solid #e2e8f0;
}

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

.amenity-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.amenity-icon svg {
    width: 3rem;
    height: 3rem;
    color: #38a169;
    transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon svg {
    color: #2d5016;
    transform: scale(1.1);
}

.amenity-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2d5016;
}

.amenity-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Booking Form */
.booking {
    background: #f8f9fa;
    color: #2d3748;
    position: relative;
    padding: 80px 0;
}

.booking::before {
    display: none;
}

.booking .container {
    position: relative;
    z-index: 2;
}

.booking .section-title {
    color: white;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.booking .section-title {
    color: #2d5016;
}

.booking .section-title::after {
    background: #38a169;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #38a169, #48bb78);
    border-radius: 15px 15px 0 0;
}



.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2d5016;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    color: #2d3748;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
    font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #38a169;
    background: #f7fafc;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1), 
                0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.form-group select option {
    color: #2d3748;
    background: white;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #38a169, #48bb78);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 16px rgba(56, 161, 105, 0.3), 
                0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2f855a, #38a169);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(56, 161, 105, 0.4), 
                0 6px 12px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(56, 161, 105, 0.3), 
                0 3px 6px rgba(0, 0, 0, 0.1);
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #4a5568;
}

.author {
    font-weight: 600;
    color: #2d5016;
}

/* Footer */
.footer {
    background: #2d3748;
    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 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #68d391;
}

.footer-section p,
.footer-section ul {
    line-height: 1.6;
    color: #cbd5e0;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* 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;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .cottage-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .booking-form-container {
        padding: 2rem 1.5rem;
        margin: 0 20px;
        border-radius: 20px;
    }

    .booking .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .booking {
        padding: 60px 0;
    }

    .booking-form-container {
        padding: 1.5rem 1rem;
        margin: 0 10px;
        border-radius: 15px;
    }

    .booking .section-title {
        font-size: 1.8rem;
    }

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

    .submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loading-shimmer {
    position: relative;
    overflow: hidden;
    background: #f6f7f8;
}

.loading-shimmer::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shimmer 1.5s infinite;
    content: '';
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Improve image loading performance */
img {
    transition: opacity 0.3s ease;
}

img[loading="eager"] {
    opacity: 1 !important;
}

/* Ensure images maintain aspect ratio during loading */
.cottage-image,
.section-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Placeholder images */
.cottage-image,
.section-image {
    background: linear-gradient(135deg, #68d391, #48bb78);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.cottage-image::before,
.section-image::before {
    content: '🏡 Foto chaty';
}

/* Location Map Section */
.location-map {
    background: #f7fafc;
    border-top: 1px solid #e2e8f0;
}

.map-container {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
    position: relative;
}

.location-iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.location-info {
    text-align: center;
    max-width: 600px;
    margin: 2rem auto 0;
}

.location-info p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Enhanced Booking Form Styles */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-top: 0.69rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section-title {
    color: #2d5016;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-icon {
    font-size: 1.5rem;
    display: inline-block;
}

.field-icon {
    font-size: 1rem;
    margin-right: 0.5rem;
    opacity: 0.7;
}

.booking-form-container .form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #2d5016;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.booking-form-container .form-group input,
.booking-form-container .form-group select,
.booking-form-container .form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: 'Inter', sans-serif;
}

.booking-form-container .form-group input:focus,
.booking-form-container .form-group select:focus,
.booking-form-container .form-group textarea:focus {
    outline: none;
    border-color: #38a169;
    background: white;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
    transform: translateY(-1px);
}

.booking-form-container .form-group input::placeholder,
.booking-form-container .form-group textarea::placeholder {
    color: #a0aec0;
    font-style: italic;
}

.form-submit-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(56, 161, 105, 0.1);
}

.booking-form-container .submit-btn {
    background: #38a169;
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.2);
}

.booking-form-container .submit-btn:hover {
    background: #2f855a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.3);
}

.booking-form-container .submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.2rem;
}



.submit-note {
    margin-top: 1rem;
    color: #4a5568;
    font-size: 0.9rem;
    font-style: italic;
}

/* Enhanced Info Section */
.reservation-info {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.reservation-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #38a169, #48bb78, #68d391);
}

.reservation-info .section-subtitle {
    color: #4a5568;
    margin-bottom: 3rem;
}

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

.info-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #e2e8f0;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.info-item-primary {
    border-top-color: #3182ce;
}

.info-item-success {
    border-top-color: #38a169;
}

.info-item-info {
    border-top-color: #0bc5ea;
}

.info-item-warning {
    border-top-color: #ed8936;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.info-item h3 {
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-item strong {
    color: #2d3748;
    font-weight: 600;
}

.info-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #3182ce;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-badge-success {
    background: #38a169;
}

.info-badge-info {
    background: #0bc5ea;
}

.info-badge-warning {
    background: #ed8936;
}

/* Additional Info Cards */
.additional-info {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.additional-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #38a169;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.additional-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #2d5016;
}

.additional-info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.additional-info-card h4 {
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.additional-info-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Map and Reservations */
@media (max-width: 768px) {
    .location-iframe {
        height: 300px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2.5rem;
    }
    
    .additional-info-card {
        padding: 1.5rem;
    }
    
    .form-section-title {
        font-size: 1.2rem;
    }
    
    .booking-form-container .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .location-info p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .location-iframe {
        height: 250px;
    }
    
    .map-container {
        margin: 1.5rem 0;
        border-radius: 8px;
    }
    
    .booking-form-container {
        padding: 1.5rem 1rem;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .form-section {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        padding: 1.2rem;
    }
    
    .info-badge {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }
    
    .additional-info-card {
        padding: 1.2rem;
    }
}

/* Message Alerts */
.messages {
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
    border: 1px solid;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.alert-success {
    background-color: #f0fff4;
    border-color: #38a169;
    color: #22543d;
}

.alert-error {
    background-color: #fed7d7;
    border-color: #e53e3e;
    color: #742a2a;
}

.alert-info {
    background-color: #ebf8ff;
    border-color: #3182ce;
    color: #2a4365;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: #d69e2e;
    color: #744210;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}