        @import url("./components/header.css");
        @import url("./components/footer.css");



        /* Main Content */
        .garden-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 1rem;
        }
    .garden-section
    {
    background: #efefef;
    margin-top: -170px;
    }
    .garden-container{
        padding-top: 3rem;
    padding-bottom: 3rem;
    }

    .garden-hero {
            color: white;
            padding: 15rem 0 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .garden-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .garden-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgb(2 2 2 / 95%) 0%, rgb(60 60 57 / 70%) 50%, transparent 100%);
            z-index: 1;
        }

        .garden-hero .container {
            position: relative;
            z-index: 2;
        }

        .garden-hero h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            position: relative;
        }

        .garden-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
        }


          /* Tab Navigation */
        .tab-navigation {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }



         .tab-btn {
    background-color: #fff;
    color: 000;
    border: none;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 0;
    text-wrap-mode: nowrap;
        }

        .tab-btn.active {
            background: var(--btn-color);
            color: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* Tab Content */
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
            aspect-ratio: 4/3;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .overlay i {
            font-size: 3rem;
            color: white;
        }

        /* Visit Garden Button */
        .visit-garden-btn {
            display: block;
            width: fit-content;
            margin: 0 auto;
            padding: 18px 50px;
            background: white;
            color: #000;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .visit-garden-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            background: #f0f0f0;
        }

        .visit-garden-btn i {
            margin-left: 10px;
        }
        .visit-map-btn {
            display: block;
            width: fit-content;
            margin: 0 auto;
            padding: 18px 50px;
            background: white;
            color: #000;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .visit-map-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            background: #f0f0f0;
        }

        .visit-map-btn i {
            margin-left: 10px;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-content img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 10px;
        }

        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: white;
            color: #333;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background: #f0f0f0;
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            color: #333;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .lightbox-nav:hover {
            background: #f0f0f0;
        }

        .lightbox-prev {
            left: 20px;
        }

        .lightbox-next {
            right: 20px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .tab-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 15px;
            }

            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
/* ===== Garden Enquiry Modal ===== */

.garden-modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
}

.garden-modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 480px;
    margin: auto;
    padding: 25px;
    border-radius: 14px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.garden-modal-close {
    position: absolute;
    right: 14px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

.garden-modal h3 {
    margin-bottom: 15px;
    text-align: center;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.btn-submit {
    width: 100%;
    background: #1f6d3a;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.btn-submit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
