* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: #60625c;
            line-height: 1.6;
            background: #f8f4ea;
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #babd8f;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 4px 0;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 10px;
        }

        /* Header-specific container that doesn't center */
        .header-container {
            width: 100%;
            max-width: 1400px;
            margin: 0;
            padding: 0 10px;
        }

        .navbar {
            display: flex;
            align-items: center;
            position: relative;
            width: 100%;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 0px;
            font-weight: 700;
            color: #60625c;
            text-decoration: none;
            z-index: 1001;
            padding-left: 40px;
            flex-shrink: 0;
        }

        .logo img {
            height: 112px;
            max-height: 8vw;
            width: auto;
            transition: height 0.3s, max-height 0.3s;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            flex-wrap: nowrap;
            margin: 0 auto;
            margin-left: 100px;
            padding: 0;
            position: static;
        }

        .nav-menu li {
            margin-left: 10px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #555;
            font-size: 16px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
            position: relative;
            white-space: nowrap;
        }

        .nav-menu a:hover {
            color: #8a6d3b;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #8a6d3b;
            transition: width 0.3s;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* Mobile Navigation */
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            transition: all 0.3s ease;
            background-color: #60625c;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 420px;
            height: auto;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('images/hero_bg.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: row;
            align-items: stretch;
            justify-content: center;
            text-align: left;
            margin-top: 120px;
            padding: 40px 0 40px 0;
            box-sizing: border-box;
            gap: 40px;
        }

        .hero-content,
        .hero-news {
            flex: 1 1 0;
            max-width: 500px;
        }

        .hero-content {
            padding: 30px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            display: block;
            flex-direction: column;
        }

        .hero-news {
            padding: 30px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .hero-news-image {
            width: 100%;
            max-width: 320px;
            height: auto;
            object-fit: contain;
            border-radius: 12px;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .hero-content-image {
            width: 100%;
            max-width: 320px;
            height: auto;
            object-fit: contain;
            border-radius: 12px;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .hero-content-image:hover {
            transform: scale(1.02);
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: #333;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .address {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #8a6d3b;
            margin-top: 0px;
            border-top: 1px solid #ddd;
            padding-top: 20px;
        }

        .btn {
            display: inline-block;
            background: #8a6d3b;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: 2px solid #8a6d3b;
        }

        .btn:hover {
            background: transparent;
            color: #8a6d3b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            text-align: center;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: #60625c; /* <-- This will now apply */
            font-weight: 700;
            position: relative;
        }
        
        .section-testimonial-title {
            text-align: center;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: white !important;
            font-weight: 700;
            position: relative;
        }
        
        .section-title-underline {
            display: block;
            margin: 12px auto 32px auto;
            width: 180px;
            height: 4px;
            border-radius: 2px;
            background: linear-gradient(90deg, #e0c38a 0%, rgba(138, 109, 59, 0) 100%);
            border: none;
        }

        /* Rooms Section */
        .rooms {
            padding: 80px 0;
            background: #faf7f2;
        }

        .room-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(250px, 1fr));
            /* More compact columns */
            gap: 20px;
            /* Reduced from 30px */
            padding: 0 10px;
            /* Added to prevent edge crowding */
        }

        .room-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .room-card:hover {
            transform: translateY(-10px);
        }

        .room-img {
            height: 250px;
            background-size: cover;
            background-position: center;
        }

        .room-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .room-content p:first-of-type {
            flex-grow: 1;
            margin-bottom: 15px;
        }

        .price {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            flex-shrink: 0;
        }

        .room-content .btn {
            margin-top: auto;
            align-self: flex-start;
            flex-shrink: 0;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: linear-gradient(rgba(138, 109, 59, 0.9), rgba(138, 109, 59, 0.9)),
                url('https://images.unsplash.com/photo-1513694203232-719a280e022f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1740&q=80');
            background-size: cover;
            background-attachment: fixed;
            color: white;
            text-align: center;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 30px;
            text-align: left;
        }

        .testimonial-card p {
            font-style: italic;
            margin-bottom: 20px;
        }

        .guest {
            display: flex;
            align-items: center;
        }

        .guest img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .guest-info h4 {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .guest-info p {
            font-style: normal;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Footer */
        footer {
            background: #333;
            color: #fff;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #e0c38a;
        }

        .footer-column p,
        .footer-column li {
            margin-bottom: 10px;
            color: #ccc;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: #e0c38a;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #444;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: #8a6d3b;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }

        /* About Section */
        .about-hero {
            background-size: cover;
            background-position: center;
            min-height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 0 40px 0;
            text-align: center;
            margin-top: 100px; /* Add space for the fixed navbar */
        }

        .about-hero-content {
            background: rgba(255, 255, 255, 0.85);
            padding: 36px 32px 28px 32px;
            border-radius: 14px;
            box-shadow: 0 8px 32px rgba(138, 109, 59, 0.10);
            display: inline-block;
            max-width: 600px;
        }

        .about-hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            color: #8a6d3b;
            margin-bottom: 10px;
        }

        .about-hero-lead {
            font-size: 1.3rem;
            color: #444;
            margin-bottom: 18px;
        }

        .about-hero-highlight {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 1.1rem;
            color: #fff;
            background: #8a6d3b;
            padding: 8px 18px;
            border-radius: 20px;
            width: fit-content;
            margin: 0 auto;
        }

        .about-main {
            background: #f9f6f1;
            padding: 60px 0;
        }

        .about-main-flex {
            display: flex;
            align-items: flex-start; /* Align image and text to the top */
            gap: 48px;
            flex-wrap: wrap;
        }

        .about-main-img img {
            width: 340px;
            max-width: 100%;
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(138, 109, 59, 0.10);
        }

        .about-main-text {
            flex: 1 1 320px;
            min-width: 280px;
        }

        .about-main-text h2 {
            font-family: 'Playfair Display', serif;
            color: #8a6d3b;
            font-size: 2rem;
            margin-bottom: 0;
        }

        .section-title-underline {
            display: block;
            margin: 12px 0 24px 0;
            width: 80px;
            height: 4px;
            border-radius: 2px;
            background: linear-gradient(90deg, #e0c38a 0%, #8a6d3b 100%);
            border: none;
        }

        .about-main-text p {
            font-size: 1.1rem;
            color: #444;
            margin-bottom: 18px;
        }
        /* Tabbed Room Interface Styles */
.room-tabs-wrapper {
    margin-bottom: 30px;
}

.room-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.room-tab {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.room-tab:hover {
    border-color: #8a6d3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 109, 59, 0.3);
}

.room-tab.active {
    background: linear-gradient(135deg, #8a6d3b, #b8860b);
    color: white;
    border-color: #8a6d3b;
    box-shadow: 0 4px 15px rgba(138, 109, 59, 0.4);
}

.room-tab i {
    font-size: 1.5em;
    margin-bottom: 8px;
}

.room-tab span {
    font-weight: 600;
    font-size: 0.95em;
    margin-bottom: 4px;
}

.room-tab small {
    font-size: 0.8em;
    opacity: 0.8;
}

.room-tab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Room Display Area */
.room-display-area {
    position: relative;
    min-height: 600px;
}

.room-content-panel {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.room-content-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.room-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.room-images {
    position: relative;
}

.room-img-slideshow {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    aspect-ratio: 4/3;
}

.room-img-slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.room-img-slideshow img.hidden {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slide-btn:hover {
    background: #8a6d3b;
    transform: translateY(-50%) scale(1.1);
}

.slide-btn.prev:hover::before {
    border-color: transparent white transparent transparent;
}

.slide-btn.next:hover::before {
    border-color: transparent transparent transparent white;
}

.slide-btn.prev {
    left: 15px;
}

.slide-btn.next {
    right: 15px;
}

.slide-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
}

.slide-btn.prev::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent #333 transparent transparent;
    margin-left: -2px;
}

.slide-btn.next::before {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #333;
    margin-right: -2px;
}

.image-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
}

.room-info {
    padding: 20px 0;
}

.room-info h2 {
    color: #8a6d3b;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
}

.room-specs {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 500;
}

.spec-item i {
    color: #8a6d3b;
    font-size: 1.1em;
}

.room-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.room-description p {
    margin-bottom: 15px;
    color: #555;
}

.room-actions {
    display: flex;
    gap: 15px;
}

.room-actions .btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.room-actions .btn-primary {
    background: linear-gradient(135deg, #8a6d3b, #b8860b);
    color: white;
}

.room-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 109, 59, 0.4);
}

.room-actions .btn-secondary {
    background: transparent;
    color: #8a6d3b;
    border-color: #8a6d3b;
}

.room-actions .btn-secondary:hover {
    background: #8a6d3b;
    color: white;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .room-tabs {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding: 0 10px 10px 10px;
        margin-bottom: 20px;
        justify-content: flex-start;
        scrollbar-width: thin;
        scrollbar-color: #8a6d3b #f0f0f0;
    }
    
    .room-tabs::-webkit-scrollbar {
        height: 4px;
    }
    
    .room-tabs::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 2px;
    }
    
    .room-tabs::-webkit-scrollbar-thumb {
        background: #8a6d3b;
        border-radius: 2px;
    }
    
    .room-tab {
        min-width: 120px;
        flex-shrink: 0;
        padding: 15px 12px;
        font-size: 0.85em;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .room-tab i {
        font-size: 1.3em;
        margin-bottom: 8px;
    }
    
    .room-tab span {
        font-size: 0.9em;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .room-tab small {
        font-size: 0.75em;
        opacity: 0.85;
        margin-top: 2px;
    }
    
    .room-tab-content {
        align-items: center;
        text-align: center;
    }
    
    .room-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .room-info h2 {
        font-size: 1.8em;
        text-align: center;
    }
    
    .room-specs {
        justify-content: center;
        gap: 20px;
    }
    
    .room-actions {
        flex-direction: column;
    }
    
    .room-actions .btn {
        text-align: center;
    }
    
    .slide-btn {
        width: 40px;
        height: 40px;
    }
    
    .slide-btn.prev {
        left: 10px;
    }
    
    .slide-btn.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .room-tabs {
        flex-direction: column;
        overflow-x: visible;
        gap: 8px;
        padding: 0;
    }
    
    .room-tab {
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 15px 20px;
        align-items: center;
    }
    
    .room-tab i {
        margin-bottom: 0;
        margin-right: 15px;
        font-size: 1.4em;
        flex-shrink: 0;
    }
    
    .room-tab-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 2px;
    }
    
    .room-tab span {
        font-size: 1em;
        font-weight: 600;
        margin-bottom: 0;
        line-height: 1.2;
    }
    
    .room-tab small {
        font-size: 0.85em;
        opacity: 0.8;
        margin-top: 0;
    }
    
    .room-display-area {
        min-height: auto;
    }
    
    .room-img-slideshow {
        margin-bottom: 20px;
    }
}        @media (max-width: 1200px) {
            .room-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .nav-menu li {
                margin-left: 15px;
            }
        }

        @media (max-width: 768px) {
            .room-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
        }
        @media (max-width: 1350px) {
            .nav-menu {
                margin-left: 0;
            }
        }

        @media (max-width: 1300px) {
            .hamburger {
                display: block;
                margin-left: auto;
                margin-right: 40px;
            }
            .nav-menu {
                margin-left: 0;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                gap: 0;
                flex-direction: column;
                background: #babd8f;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-content-image {
                max-width: 300px;
                height: auto;
            }

            .address {
                font-size: 1.4rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .logo {
                padding-left: 30px;
            }
            .logo img {
                height: 100px;
                max-height: 12vw;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .address {
                font-size: 1.2rem;
            }

            .hero-content {
                padding: 20px;
            }

            .hero-content-image {
                max-width: 280px;
                height: auto;
                margin-top: 15px;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .logo {
                padding-left: 15px;
            }
            .logo img {
                height: 100px;
                max-height: 20vw;
            }
        }

        @media (max-width: 900px) {
            .hero {
                flex-direction: column;
                height: auto;
                min-height: unset;
                padding: 40px 16px 40px 16px;
                /* Add horizontal padding */
                text-align: center;
                gap: 20px;
            }

            .hero-content,
            .hero-news {
                max-width: 100%;
                width: 100%;
                box-sizing: border-box;
            }

            .about-main-flex {
                flex-direction: column;
                gap: 32px;
                align-items: flex-start;
            }

            .about-main-img img {
                width: 100%;
                max-width: 420px;
                margin: 0 auto;
                display: block;
            }

            .about-main-text {
                width: 100%;
            }

            .about-philosophy-grid {
                flex-direction: column;
                gap: 24px;
                align-items: center;
            }

            .about-hero-content {
                padding: 24px 10px 18px 10px;
            }
        }

        @media (max-width: 700px) {
    .about-hero {
        min-height: 180px;
        padding: 30px 0 20px 0;
    }
    .about-hero-content {
        padding: 18px 6px 12px 6px;
        max-width: 98vw;
    }
    .about-hero-content h1 {
        font-size: 1.3rem;
    }
}

a {
    color: #8a6d3b;
    text-decoration: underline;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: #e0c38a;
}
        .moordweekend-hero-slideshow {
            width: 100vw;
            max-width: 100%;
            overflow: hidden;
            margin-top: 100px;
            margin-bottom: 0;
            position: relative;
        }
        .moordweekend-hero-slideshow-inner {
            position: relative;
            width: 100%;
            height: 420px;
            min-height: 220px;
        }
        .hero-slide-img {
            position: absolute;
            left: 0; top: 0; width: 100%; height: 100%; object-fit: cover;
            opacity: 0; transition: opacity 1s;
        }
        .hero-slide-img.active { opacity: 1; z-index: 1; }
        .moordweekend-hero-slideshow .slide-arrow {
            position: absolute; top: 50%; transform: translateY(-50%);
            background: rgba(255,255,255,0.7); border: none; font-size: 2rem; color: #8a6d3b;
            cursor: pointer; z-index: 2; padding: 6px 14px; border-radius: 50%;
        }
        .moordweekend-hero-slideshow .slide-arrow.prev { left: 24px; }
        .moordweekend-hero-slideshow .slide-arrow.next { right: 24px; }
        .moordweekend-hero-title {
            position: absolute;
            left: 0; right: 0; bottom: 32px;
            text-align: center;
            background: rgba(255,255,255,0.82);
            margin: 0 auto;
            padding: 22px 18px 16px 18px;
            border-radius: 14px;
            max-width: 480px;
            box-shadow: 0 8px 32px rgba(138, 109, 59, 0.10);
            z-index: 3;
        }
        .moordweekend-hero-title h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.3rem;
            color: #8a6d3b;
            margin-bottom: 8px;
        }
        .moordweekend-hero-sub {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 1.1rem;
            color: #fff;
            background: #8a6d3b;
            padding: 8px 18px;
            border-radius: 20px;
            width: fit-content;
            margin: 0 auto;
        }
        @media (max-width: 900px) {
            .moordweekend-hero-slideshow-inner { height: 220px; }
            .moordweekend-hero-title { padding: 12px 6px 10px 6px; max-width: 98vw; }
            .moordweekend-hero-title h1 { font-size: 1.3rem; }
        }

        .moordweekend-content {
            background: #faf7f2;
            padding: 48px 0 32px 0;
        }
        .moordweekend-content h1 {
            text-align: center;
            font-size: 2.2rem;
            font-family: 'Montserrat', serif;
            margin-bottom: 18px;
        }
        .moordweekend-content .mw-highlight {
            text-align: center;
            font-size: 1.15rem;
            margin-bottom: 18px;
        }
        .moordweekend-content .mw-section {
            max-width: 700px;
            margin: 0 auto 24px auto;
            font-size: 1.1rem;
            line-height: 1.6;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(138,109,59,0.07);
            padding: 28px 22px;
        }
        .moordweekend-content .mw-section strong {
            color: #8a6d3b;
        }
        .moordweekend-content .mw-price {
            text-align: center;
            font-size: 1.3rem;
            margin: 18px 0 0 0;
        }
        .moordweekend-content .mw-cta {
            text-align: center;
            margin: 32px 0 0 0;
        }
        .moordweekend-content .mw-cta a {
            display: inline-block;
            background: #8a6d3b;
            color: #fff;
            padding: 12px 32px;
            border-radius: 8px;
            font-size: 1.1rem;
            text-decoration: none;
            transition: background 0.2s;
        }
        .moordweekend-content .mw-cta a:hover {
            background: #a88d5c;
        }

        /* Nieuwe stijlen voor de uitgebreide beschrijving sectie */
        .mw-mainblock {
            max-width: 700px;
            margin: 40px auto 32px auto;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 2px 18px rgba(138,109,59,0.09);
            padding: 38px 28px;
        }
        .mw-mainblock h1 {
            text-align: center;
            font-size: 2.2rem;
            font-family: 'Playfair Display', serif;
            color: #8a6d3b;
            margin-bottom: 16px;
        }
        .mw-mainblock .mw-highlight,
        .mw-mainblock .mw-price,
        .mw-mainblock .mw-center {
            text-align: center;
        }

        .mw-mainblock .mw-highlight {
            font-size: 1.13rem;
            color: #a88d5c;
            margin-bottom: 22px;
        }

        .mw-mainblock .mw-price {
            font-size: 1.25rem;
            margin: 30px 0 18px 0;
        }

        .mw-mainblock .mw-price span {
            display: inline-block;
            background: #f8f4ea;
            border-radius: 12px;
            padding: 16px 28px;
        }

        .mw-mainblock .mw-text {
            font-size: 1.13rem;
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .mw-mainblock .mw-center {
            margin-top: 32px;
        }

        .mw-mainblock .btn {
            font-size: 1.13rem;
            padding: 13px 38px;
        }

        @media (max-width: 800px) {
            .mw-mainblock {
                max-width: 98vw;
                padding: 18px 8px;
            }
            .mw-mainblock h1 {
                font-size: 1.3rem;
            }
        }

        .omgeving-section {
    background: #faf7f2;
    padding: 60px 0;
}

/* Activity Cards Section */
.omgeving-activities {
    background: #fff;
    padding: 80px 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.activity-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(138, 109, 59, 0.1);
    border: 1px solid rgba(138, 109, 59, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(138, 109, 59, 0.15);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8a6d3b, #a88d5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: #fff;
    font-size: 2rem;
}

.activity-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8a6d3b;
    margin-bottom: 16px;
    font-weight: 600;
}

.activity-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.activity-highlights {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.activity-highlights li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.activity-highlights li:last-child {
    border-bottom: none;
}

.activity-highlights li strong {
    color: #8a6d3b;
}

.activity-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8a6d3b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 16px;
    transition: color 0.3s ease;
}

.activity-link:hover {
    color: #a88d5c;
}

.activity-link i {
    font-size: 0.85rem;
}

/* Personal Service Section */
.omgeving-service {
    background: #faf7f2;
    padding: 60px 0;
}

.omgeving-service h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8a6d3b;
    text-align: center;
    margin-bottom: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .omgeving-activities {
        padding: 60px 0;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .activity-card {
        padding: 30px 20px;
    }
    
    .activity-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .activity-card h3 {
        font-size: 1.3rem;
    }
    
    .omgeving-service {
        padding: 40px 0;
    }
    
    .omgeving-service h2 {
        font-size: 1.6rem;
    }
}

/* --- Prijzen enzo pagina verbeterde layout --- */
.prices-section {
    background: #faf7f2;
    padding: 60px 0 40px 0;
}

.prijzen-tabel-wrapper {
    overflow-x: auto;
    margin-bottom: 40px;
}

.prijzen-tabel {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(138,109,59,0.07);
    overflow: hidden;
}

.prijzen-tabel td {
    padding: 18px 16px;
    border-bottom: 1px solid #f2e7d3;
    font-size: 1.12rem;
    color: #60625c;
    vertical-align: middle;
}

.prijzen-tabel tr:last-child td {
    border-bottom: none;
}

.prijzen-tabel td:first-child {
    font-weight: 600;
    color: #8a6d3b;
    width: 220px;
    min-width: 160px;
}

.prijzen-tabel td:last-child {
    text-align: right;
    font-weight: 600;
    color: #8a6d3b;
    width: 140px;
    min-width: 100px;
}

.prijzen-info {
    max-width: 900px;
    margin: 48px auto 0 auto;
    font-size: 1.12rem;
    color: #60625c;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(138,109,59,0.07);
    padding: 36px 28px 28px 28px;
}

.prijzen-info table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px auto;
    border-collapse: collapse;
    background: transparent;
}

.prijzen-info td {
    vertical-align: top;
    padding: 10px 14px;
}

.prijzen-info h3 {
    text-align: center;
    margin-top: 44px;
    margin-bottom: 10px;
    color: #8a6d3b;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    letter-spacing: 0.5px;
}

.prijzen-info ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-bottom: 30px;
}

.prijzen-info ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.prijzen-tussenstop {
    text-align: center;
    font-size: 1.18rem;
    margin-top: 36px;
    color: #8a6d3b;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title-underline {
    display: block;
    margin: 18px auto 32px auto;
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #e0c38a 0%, #8a6d3b 100%);
    border: none;
}

@media (max-width: 900px) {
    .prijzen-tabel, .prijzen-info, .prijzen-info table {
        font-size: 1rem;
        max-width: 98vw;
    }
    .prijzen-info {
        padding: 18px 8px 18px 8px;
    }
    .prijzen-info h3 {
        font-size: 1.1rem;
    }
}

/* Map section styling */
.map-section {
    background: #fff;
    padding: 60px 0;
}

.map-container {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(138,109,59,0.1);
    margin-bottom: 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.contact-info-item h3 {
    color: #8a6d3b;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info-item p {
    color: #60625c;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Contact & Map Section */
.contact-map-section {
    background: #faf7f2;
    padding: 60px 0;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-column,
.map-column {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(138,109,59,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form-column:hover,
.map-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(138,109,59,0.15);
}

.contact-form-column h3,
.map-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #8a6d3b;
    font-family: 'Playfair Display', serif;
}

/* Form Styling */
.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #8a6d3b;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8a6d3b !important;
    box-shadow: 0 0 0 3px rgba(138,109,59,0.1);
}

.contact-form button:hover {
    background: #704d2a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(138,109,59,0.15);
}
/* Lock textarea to horizontal resize only */
.contact-form textarea {
    resize: vertical !important;
    min-height: 120px;
    overflow-y: auto;
}

/* Enhanced Pricing Page Styling */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(138,109,59,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(138,109,59,0.15);
}

.pricing-card-header {
    background: linear-gradient(135deg, #8a6d3b 0%, #a88d5c 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.pricing-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.room-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.pricing-card-content {
    padding: 24px 20px;
    text-align: center;
}

.pricing-card-content p {
    color: #60625c;
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: #8a6d3b;
    font-family: 'Playfair Display', serif;
}

.price-highlight span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #60625c;
    font-family: 'Montserrat', sans-serif;
}

/* Pricing Tabs */
.pricing-tabs-container {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(138,109,59,0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

.pricing-tabs {
    display: flex;
    background: #f8f4ea;
    border-bottom: 1px solid #e0c38a;
}

.tab-button {
    flex: 1;
    background: none;
    border: none;
    padding: 16px 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    color: #60625c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.tab-button:hover,
.tab-button.active {
    background: #8a6d3b;
    color: white;
}

.tab-content {
    padding: 32px 28px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f4ea;
    border-radius: 12px;
    border-left: 4px solid #e0c38a;
}

.info-icon {
    background: #8a6d3b;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: #8a6d3b;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

.info-text p {
    color: #60625c;
    line-height: 1.5;
    margin: 0;
}

/* Pricing Table */
.pricing-table {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.pricing-row:hover {
    background: #f8f4ea;
}

.pricing-row.highlight {
    background: #fff8e6;
    border-left: 4px solid #e0c38a;
}

.pricing-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #60625c;
    font-weight: 500;
}

.pricing-label i {
    color: #8a6d3b;
    width: 20px;
}

.pricing-value {
    font-weight: 600;
    color: #8a6d3b;
    text-align: right;
}

.pricing-note {
    margin-top: 20px;
    padding: 16px;
    background: #f0f8ff;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.pricing-note p {
    margin: 4px 0;
    font-size: 0.9rem;
    color: #4a90e2;
}

/* Conditions Grid */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.condition-card {
    background: #f8f4ea;
    border-radius: 12px;
    padding: 24px;
    border-top: 4px solid #e0c38a;
}

.condition-card h4 {
    color: #8a6d3b;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.condition-card ul {
    list-style: none;
    padding: 0;
}

.condition-card li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #60625c;
    line-height: 1.5;
}

.condition-card li::before {
    content: "•";
    color: #e0c38a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Payment Steps */
.payment-steps {
    max-width: 500px;
    margin: 0 auto;
}

.payment-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f4ea;
    border-radius: 12px;
}

.step-number {
    background: #8a6d3b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #8a6d3b;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.step-content p {
    color: #60625c;
    line-height: 1.5;
    margin: 0;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
    margin-top: 40px;
}

.pricing-highlight {
    font-size: 1.2rem;
    color: #8a6d3b;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Single Payment Card */
/* Payment Grid - Improved Design */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.payment-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #f8f4ea;
    border-radius: 12px;
    border-left: 4px solid #e0c38a;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138,109,59,0.15);
}

.payment-icon {
    background: #8a6d3b;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.payment-text {
    flex: 1;
}

.payment-text h4 {
    color: #8a6d3b;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.payment-text p {
    color: #60625c;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.payment-amount {
    background: #8a6d3b;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 8px;
}

.bank-details {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e0c38a;
    margin: 8px 0 !important;
    font-family: 'Courier New', monospace;
}

.bank-note {
    font-style: italic;
    color: #8a6d3b !important;
    font-size: 0.9rem !important;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.payment-method {
    background: #fff;
    color: #8a6d3b;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    border: 1px solid #e0c38a;
    display: flex;
    align-items: center;
    gap: 4px;
}

.payment-method i {
    font-size: 0.8rem;
}

.payment-info-note {
    background: #e6f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0066cc;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

.payment-info-note i {
    color: #0066cc;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .payment-card {
        padding: 20px;
    }
    
    .payment-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .payment-options {
        justify-content: flex-start;
    }
    
    .payment-method {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .payment-info-note {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 16px;
    }
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-map-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        /* Map appears first on mobile too */
    }
    
    .contact-form-column,
    .map-column {
        padding: 25px !important;
        margin: 0 !important;
    }
    
    .form-row {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    .form-group {
        flex: none !important;
    }
    
    .contact-info-cards {
        margin-top: 20px !important;
    }
    
    .contact-info-card {
        padding: 12px !important;
        font-size: 0.9rem !important;
    }
    
    .contact-info-icon {
        width: 40px !important;
        height: 40px !important;
        margin-right: 12px !important;
        font-size: 1rem !important;
    }
    
    .contact-info-text {
        font-size: 0.9rem !important;
    }
    
    .map-container iframe {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .contact-map-section {
        padding: 40px 0 !important;
    }
    
    .container {
        width: 95% !important;
        padding: 0 10px !important;
    }
    
    .contact-form-column,
    .map-column {
        padding: 20px !important;
        border-radius: 12px !important;
    }
    
    .contact-form {
        gap: 15px !important;
    }
    
    .form-submit-btn {
        width: 100% !important;
        padding: 12px !important;
        font-size: 15px !important;
    }
    
    .contact-info-card {
        padding: 10px !important;
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .contact-info-icon {
        margin-right: 0 !important;
        margin-bottom: 8px !important;
    }
    
    .map-container iframe {
        height: 250px !important;
    }
    
    h2 {
        font-size: 1.4rem !important;
        margin-bottom: 15px !important;
    }
}

/* Floating Map Button */
.floating-map-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8a6d3b 0%, #a88d5c 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 20px 100px;
    font-size: 1.1rem;
    cursor: grab;
    box-shadow: 0 6px 24px rgba(138,109,59,0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    white-space: nowrap;
    user-select: none;
    touch-action: none;
    min-width: 220px;
    max-width: 220px; /* Prevent stretching */
    width: 220px; /* Fixed width to prevent layout shifts */
    box-sizing: border-box; /* Include padding in width calculation */
}

.floating-map-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(138,109,59,0.5);
}

.floating-map-btn:active,
.floating-map-btn.dragging {
    transform: scale(1.02);
    cursor: grabbing;
    box-shadow: 0 12px 40px rgba(138,109,59,0.6);
    transition: none; /* Disable transitions during drag for better performance */
    will-change: transform; /* Optimize for animations */
    -webkit-transform: translateZ(0); /* Force hardware acceleration */
}

.floating-map-btn i {
    font-size: 1.3rem;
}

.floating-map-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

/* Map Modal */
.map-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.map-modal.active {
    display: flex;
}

.map-modal-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.map-modal-header {
    background: linear-gradient(135deg, #8a6d3b 0%, #a88d5c 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.map-modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.map-modal-body {
    padding: 0;
}

.map-modal-iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-modal-info {
    padding: 25px;
    background: #f8f4ea;
}

.map-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid #8a6d3b;
    box-shadow: 0 2px 8px rgba(138,109,59,0.1);
}

.map-info-icon {
    background: #8a6d3b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.map-info-text {
    color: #60625c;
    line-height: 1.4;
    font-size: 0.9rem;
}

.map-info-text strong {
    color: #8a6d3b;
    display: block;
    margin-bottom: 3px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-map-btn {
        padding: 15px 22px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
        border-radius: 25px;
        min-width: 160px;
    }
    
    .floating-map-btn i {
        font-size: 1.2rem;
    }
    
    .floating-map-text {
        font-size: 0.9rem;
    }
    
    .map-modal-content {
        margin: 0;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .map-modal-header {
        padding: 15px 20px;
    }
    
    .map-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .map-modal-iframe {
        height: 50vh;
    }
    
    .map-modal-info {
        padding: 20px;
        height: calc(50vh - 80px);
        overflow-y: auto;
    }
    
    .map-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .map-info-item {
        padding: 12px;
    }
    
    .map-info-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .floating-map-btn {
        padding: 14px 22px;
        font-size: 0.95rem;
        min-width: 170px;
        max-width: 170px;
        width: 170px; /* Fixed width on mobile */
        bottom: 10px;
        right: 10px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .floating-map-btn.dragging {
        transform: none !important; /* Completely disable transform scaling on mobile */
    }
    
    .floating-map-btn i {
        font-size: 1.1rem;
    }
    
    .floating-map-text {
        font-size: 0.85rem;
    }
    
    /* Mobile modal improvements */
    .map-modal-content {
        margin: 10px;
        max-height: calc(100vh - 20px);
        height: auto;
        border-radius: 12px;
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    
    .map-modal-header {
        padding: 12px 15px;
    }
    
    .map-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .map-modal-iframe {
        height: 45vh;
        min-height: 250px;
    }
    
    .map-modal-info {
        padding: 15px;
        height: auto;
        max-height: calc(40vh - 60px);
        overflow-y: auto;
    }
    
    .map-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .map-info-item {
        padding: 10px 12px;
    }
    
    .map-info-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .map-info-text strong {
        font-size: 0.95rem;
    }
}

/* About Story Cards Section */
.about-story-section {
    background: #fff;
    padding: 80px 0;
}

.story-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(138, 109, 59, 0.1);
    border: 1px solid rgba(138, 109, 59, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(138, 109, 59, 0.15);
}

.story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8a6d3b, #a88d5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: #fff;
    font-size: 2rem;
}

.story-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8a6d3b;
    margin-bottom:  16px;
    font-weight: 600;
}

.story-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.story-highlights {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.story-highlights li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-highlights li:last-child {
    border-bottom: none;
}

.story-highlights li i {
    color: #8a6d3b;
    font-size: 0.9rem;
}

.story-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.story-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #8a6d3b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 16px;
    border: 2px solid #8a6d3b;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.story-link:hover {
    background: #8a6d3b;
    color: white;
    transform: translateY(-2px);
}

.story-link i {
    font-size: 0.85rem;
}

/* About Quote Section */
.about-quote-section {
    background: #faf7f2;
    padding: 60px 0;
}

.quote-content {
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #e0c38a;
    margin-bottom: 20px;
    opacity: 0.8;
}

.quote-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #8a6d3b;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 20px 0;
    position: relative;
}

.quote-authors {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.quote-authors strong {
    color: #8a6d3b;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.quote-authors span {
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Responsive Design for Story Cards */
@media (max-width: 768px) {
    .about-story-section {
        padding: 60px 0;
    }
    
    .story-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .story-card {
        padding: 30px 20px;
    }
    
    .story-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .story-card h3 {
        font-size: 1.3rem;
    }
    
    .about-quote-section {
        padding: 40px 0;
    }
    
    .quote-content blockquote {
        font-size: 1.2rem;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
    
    .story-links {
        flex-direction: column;
    }
    
    .story-link {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
}

/* Mobile Responsive for Pricing Tabs */
@media (max-width: 768px) {
    .pricing-tabs {
        flex-wrap: wrap;
        background: #f8f4ea;
    }
    
    .tab-button {
        flex: 1 1 calc(50% - 4px);
        min-width: calc(50% - 4px);
        padding: 12px 8px;
        font-size: 0.85rem;
        text-align: center;
        margin: 2px;
        border-radius: 8px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .tab-button i {
        font-size: 0.9rem;
    }
    
    .tab-content {
        padding: 20px 16px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .info-card {
        padding: 16px;
        gap: 12px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .info-text h4 {
        font-size: 1rem;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .condition-card {
        padding: 16px;
    }
    
    .condition-card h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tab-button {
        flex: 1 1 100%;
        min-width: 100%;
        margin: 1px 0;
        padding: 14px 12px;
        font-size: 0.9rem;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* === BOT PROTECTION === */
/* Bot trap styling - multiple methods to hide from bots */
.bot-trap, 
.website-field,
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -1 !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}