/* Responsive adjustments for overview section on mobile */
@media (max-width: 600px) {
  .overview {
    padding: 32px 0 24px 0 !important;
    text-align: center;
  }
  .overview-content {
    padding-left: 4vw !important;
    padding-right: 4vw !important;
  }
  .overview-grid {
    gap: 12px !important;
    flex-direction: column !important;
  }
  .overview-logo, .overview-text {
    max-width: 100% !important;
    min-width: 0 !important;
    height: 180px !important;
  }
}
/* Modal Form Spacing */
.modal .form-group {
    margin-bottom: 20px;
}
.modal input,
.modal textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    margin-top: 4px;
    margin-bottom: 0;
    box-sizing: border-box;
}
.modal textarea {
    min-height: 80px;
    resize: vertical;
}
.modal .submit-btn {
    width: 100%;
    padding: 14px 0;
    background: #66B450;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}
.modal .submit-btn:hover {
    background: #55923a;
}
/* Enquire Modal Overlay Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.modal-overlay.active {
    display: flex;
}
.modal {
    background: #fff;
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 2100;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
}
/* Modal Overlay Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.modal-overlay.active {
    display: flex;
}
.modal {
    background: #fff;
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 2100;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
}
/* Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 100px 5%;
}

h1, h2, h3 {
    font-family: 'Lato', 'Montserrat', 'Raleway', sans-serif;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.subtitle {
    text-align: center;
    color: #66B450;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(1.02);
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85em;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #c8a97e;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #66B450;
}

nav a:hover::after {
    width: 100%;
    background: #66B450;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.hamburger img {
    width: 32px;
    height: 32px;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #000;
    margin-top: 20px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.9;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    margin-top: -40px;
}

.hero-text h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: 'Montserrat', 'Raleway', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-family: 'Raleway', Arial, sans-serif;
    font-family: 'Lato', 'Montserrat', 'Raleway', sans-serif;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: #fff;
    border: 2px solid #66B450;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #c8a97e;
    margin-top: -80px;
    z-index: -1;
}

.cta-btn:hover {
    color: #fff;
}

.cta-btn:hover::before {
    width: 100%;
}

/* About Section */
.about {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(200,169,126,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.about-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.about-text {
    position: relative;
    z-index: 1;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.8);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2em;
    color: #66B450;
    margin-bottom: 15px;
}

.years-badge {
    width: 120px;
    margin-top: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Sitemap Section */
.sitemap {
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.sitemap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200,169,126,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.sitemap-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.sitemap-img:hover {
    transform: scale(1.02);
}

/* Amenities Section */
.amenities {
    background: #fff;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.amenity {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.amenity:hover {
    transform: translateY(-10px);
}

.amenity img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity:hover img {
    transform: scale(1.1);
}

.amenity span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    color: #1a1a1a;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(5px);
}

/* Gallery Section */
.gallery {
    background: #f8f8f8;
}

.gallery-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-list img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

.gallery-list img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}



/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px 10px;
    transition: all 0.3s;
}

.modal-close:hover {
    color: #66B450;
}

.modal h2 {
    margin-bottom: 30px;
    color: #333;
    text-align: left;
    font-size: 2rem;
}

.enquire-form .form-group {
    margin-top: 0px;
}

.enquire-form input,
.enquire-form textarea,
.enquire-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s;
    background: #f8f8f8;
    box-sizing: border-box;
}

.enquire-form textarea {
    height: 120px;
    resize: vertical;
}

.enquire-form input:focus,
.enquire-form textarea:focus,
.enquire-form select:focus {
    outline: none;
    border-color: #66B450;
    box-shadow: 0 0 0 2px rgba(102,180,80,0.2);
}
.enquire-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%2366B450" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
    cursor: pointer;
}

.enquire-form .submit-btn {
    width: 100%;
    padding: 15px;
    background: #66B450;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.enquire-form .submit-btn:hover {
    background: #52913F;
    transform: translateY(-2px);
}

/* Floating Action Bar */
.floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.65); /* increased transparency */
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 15px 5%;
}

.floating-actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 10px;
}

.floating-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    padding: 5px 15px;
    border-radius: 8px;
}

.floating-btn i {
    color: #593567;
    transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55), color 0.3s;
}

.floating-btn:hover i {
    transform: scale(1.25) rotate(-10deg);
    color: #c8a97e;
}

.floating-btn:active i {
    transform: scale(0.95) rotate(0deg);
    color: #66B450;
}

.floating-btn span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #000;
}

.floating-btn.virtual-tour {
    color: #66B450;
}

.floating-btn.live-chat {
    color: #66B450;
}

.floating-btn.call {
    color: #66B450;
}

.floating-btn.enquire {
    color: #66B450;
}

.floating-btn:hover {
    transform: translateY(-3px);
    color: #52913F;
}

.floating-icon {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: cover;
    margin-bottom: 5px;
    transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(89,53,103,0.08);
    border-radius: 8px;
}

.floating-btn:hover .floating-icon {
    transform: scale(1.25) rotate(-10deg);
    box-shadow: 0 4px 16px rgba(200,169,126,0.18);
}

.floating-btn:active .floating-icon {
    transform: scale(0.95) rotate(0deg);
    box-shadow: 0 2px 8px rgba(102,180,80,0.18);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #1a1a1a;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

#hamburgerBtn {
    transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55);
}
#hamburgerBtn:active {
    transform: scale(0.95) rotate(-10deg);
}
#hamburgerBtn:hover {
    transform: scale(1.15) rotate(10deg);
}
#hamburgerIcon {
    transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55);
}
#hamburgerBtn.open #hamburgerIcon {
    transform: rotate(90deg) scale(1.2);
}

@media (max-width: 768px) {
    header {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    .header-left {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }
    .hamburger {
        flex: 0 0 auto;
        margin-left: 0;
        display: block !important;
    }
    nav#mainNav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: transform 0.3s;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        padding-bottom: 120px;
        box-sizing: border-box;
    }
    nav#mainNav.open {
        transform: translateY(0);
    }
    nav#mainNav:not(.open) {
        display: none;
    }
    nav#mainNav ul {
        flex-direction: column;
        gap: 0;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0;
    }
    nav#mainNav li {
        margin: 0;
        padding: 30px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    nav#mainNav li:last-child {
        border-bottom: none;
    }
    .menu-close {
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        font-size: 2.5rem;
        color: #333;
        cursor: pointer;
        z-index: 1101;
        display: block;
    }
    nav#mainNav:not(.open) .menu-close {
        display: none;
    }
    nav#mainNav.open .menu-close {
        display: block;
    }
    .floating-btn.virtual-tour {
        display: none !important;
    }
    .mobile-menu-logo {
        display: none;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 32px;
        margin-bottom: 16px;
    }
    nav#mainNav.open .mobile-menu-logo {
        display: flex !important;
    }
    nav#mainNav .mobile-menu-logo img {
        display: block !important;
    }
}

/* Footer */
footer {
    background: #fff;
    color: #333;
    padding: 40px 5%;
    margin-bottom: 80px; /* Add space for floating bar */
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.footer-logo-section {
    flex: 0 0 200px;
}

.footer-logo {
    height: 100px; /* Increased from 80px */
    width: auto;
    object-fit: contain;
}

.footer-disclaimer {
    flex: 1;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.copyright {
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .footer-logo-section {
        flex: none;
    }

    .footer-logo {
        margin: 0 auto;
    }
}

/* Terms & Conditions Modal */
.terms-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.terms-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.terms-modal {
    background: #fff;
    padding: 40px 32px;
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    margin: 32px;
    box-sizing: border-box;
    overflow-y: auto;
    position: relative;
}

.terms-modal h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #333;
}

.terms-modal p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.terms-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: all 0.3s;
}

.terms-modal-close:hover {
    color: #66B450;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about {
        grid-template-columns: 1fr;
    }

    .about-img {
        max-width: 600px;
        margin: 0 auto;
    }

    .features {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 5%;
    }

    header {
        padding: 10px 5%;
    }

    nav ul {
        gap: 20px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .gallery-list {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .contact form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .floating-actions {
        gap: 5px;
    }

    .floating-btn {
        padding: 5px 10px;
    }

    .floating-btn i {
        font-size: 1.2rem;
    }

    .floating-btn span {
        font-size: 0.75rem;
    }

    header {
        flex-direction: column;
        padding: 10px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    h2 {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

  .hero-text h1 {
    font-size: 1.5rem;
  }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}
