:root {
    --primary-color: #2c3e50;
    --secondary-color: #8C6A2B;
    --accent-color: #F2E205;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #777;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --gold-color: #8C6A2B;
    --gold-hover: #6d5321;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(140, 106, 43, 0.2);
    border-radius: 50%;
    border-top-color: var(--gold-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold-color);
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease;
}

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

.btn:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gold-color);
    color: var(--gold-color);
}

.btn-outline:hover {
    background-color: var(--gold-color);
    color: white;
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 150px; /* Fixed width for the logo container */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Text Logo (Fallback) */
.text-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-color);
    line-height: 1.2;
}

.text-logo span {
    color: var(--gold-color);
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #333333;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-color);
}

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

/* Phone Button */
.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold-color);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.phone-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s ease;
}

.phone-button:hover:before {
    left: 100%;
}

.phone-button:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.phone-button i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333333;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--gold-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-container {
        justify-content: space-between;
    }
    
    /* Center the logo on mobile */
    .logo {
        margin: 0 auto;
        text-align: center;
    }
    
    /* Style the phone button for mobile */
    .phone-button {
        position: absolute;
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Mobile Menu (when active) */
.nav-menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
    animation: slideDown 0.3s ease forwards;
}

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

.nav-menu.active .nav-links {
    flex-direction: column;
    gap: 15px;
}

.nav-menu.active .nav-links a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-menu.active .nav-links a:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner-01.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold-color);
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(140, 106, 43, 0.05), rgba(140, 106, 43, 0.1));
    z-index: -1;
    transition: all 0.5s ease;
    opacity: 0;
}

.about-card:hover:before {
    opacity: 1;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-card i {
    font-size: 48px;
    color: var(--gold-color);
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.about-card:hover i {
    transform: scale(1.1);
}

.about-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    position: relative;
    padding-bottom: 15px;
}

.about-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--gold-color);
}

/* Floor Plans Section */
.floor-plans {
    background-color: #f9f9f9;
    position: relative;
}

.floor-plans:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.03;
    z-index: 0;
}

.floor-plan-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.floor-plan-tab {
    padding: 10px 20px;
    background-color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
}

.floor-plan-tab:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(140, 106, 43, 0.1), transparent);
    transition: all 0.6s ease;
}

.floor-plan-tab:hover:before {
    left: 100%;
}

.floor-plan-tab.active {
    background-color: var(--gold-color);
    color: white;
    border-color: var(--gold-color);
}

.floor-plan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.floor-plan-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
}

.floor-plan-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.floor-plan-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.floor-plan-image:hover img {
    transform: scale(1.03);
}

.floor-plan-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.floor-plan-details h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold-color);
}

.floor-plan-details ul {
    margin-bottom: 30px;
}

.floor-plan-details li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.floor-plan-details li:hover {
    transform: translateX(5px);
}

.floor-plan-details li i {
    color: var(--gold-color);
    margin-right: 10px;
}

.floor-plan-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.floor-plan-price span {
    color: var(--gold-color);
}

/* Amenities Section */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    background-color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.amenity-card:before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(140, 106, 43, 0.05), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.amenity-card:hover:before {
    top: 0;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.amenity-card i {
    font-size: 36px;
    color: var(--gold-color);
    margin-bottom: 15px;
    transition: all 0.5s ease;
}

.amenity-card:hover i {
    transform: scale(1.1);
}

.amenity-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.amenity-card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--gold-color);
    transition: all 0.3s ease;
}

.amenity-card:hover h3:after {
    width: 50px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 250px;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.gallery-item:hover:before {
    opacity: 1;
}

.gallery-item:after {
    content: '+';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--gold-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    z-index: 2;
}

.gallery-item:hover:after {
    opacity: 1;
    transform: translateY(0);
}

/* Videos Section */
.videos-container {
    padding: 20px 0;
}

.video-shorts-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-color) #f1f1f1;
}

.video-shorts-container::-webkit-scrollbar {
    height: 8px;
}

.video-shorts-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.video-shorts-container::-webkit-scrollbar-thumb {
    background-color: var(--gold-color);
    border-radius: 10px;
}

.video-short {
    flex: 0 0 300px;
    scroll-snap-align: start;
    transition: all 0.5s ease;
}

.video-short:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 16:9 Aspect Ratio for vertical videos */
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
}

.video-wrapper:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-short h3 {
    margin-top: 15px;
    text-align: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.video-short:hover h3 {
    color: var(--gold-color);
}

/* Location Section */
.location {
    background-color: #f9f9f9;
    position: relative;
}

.location:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.03;
    z-index: 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    transition: all 0.5s ease;
}

.location-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.location-details h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold-color);
}

.location-details ul {
    margin-bottom: 30px;
}

.location-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.location-details li:hover {
    transform: translateX(5px);
}

.location-details li i {
    color: var(--gold-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold-color);
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-details li:hover {
    transform: translateX(5px);
}

.contact-details li i {
    color: var(--gold-color);
    margin-right: 15px;
    font-size: 20px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-color);
    box-shadow: 0 0 0 2px rgba(140, 106, 43, 0.1);
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Form Loading Spinner */
.form-loading {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(140, 106, 43, 0.2);
    border-radius: 50%;
    border-top-color: var(--gold-color);
    animation: spin 1s linear infinite;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--gold-color);
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--gold-color);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-contact p:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-contact p i {
    margin-right: 15px;
    color: var(--gold-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gold-color);
    transform: scale(0);
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.footer-social a:hover:before {
    transform: scale(1);
}

.footer-social a:hover {
    transform: translateY(-5px);
}

.footer-social a i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Popup Form */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: translateY(-50px);
    transition: all 0.5s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.popup-overlay.active .popup-form {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.popup-close:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.05);
}

.popup-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

/* Popup Header with Logo Image */
.popup-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.popup-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.popup-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 10px;
    animation: fadeIn 0.8s ease;
}

.popup-header h3 {
    font-size: 16px;
    color: #555;
    font-weight: 500;
    margin: 5px 0 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Mobile Action Buttons */
.mobile-action-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: none;
    justify-content: center;
    gap: 15px;
    z-index: 999;
    padding: 0 20px;
}

.mobile-call-btn,
.mobile-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 48%;
    transition: all 0.3s ease;
}

.mobile-call-btn {
    background-color: var(--primary-color);
}

.mobile-whatsapp-btn {
    background-color: #25D366;
}

.mobile-call-btn:hover,
.mobile-whatsapp-btn:hover {
    transform: translateY(-5px);
}

.mobile-call-btn i,
.mobile-whatsapp-btn i {
    margin-right: 8px;
    font-size: 18px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--gold-hover);
    transform: translateY(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .floor-plan-content {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .popup-logo img {
        max-width: 150px;
    }
    
    .mobile-action-buttons {
        display: flex;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .popup-form {
        padding: 30px 20px;
    }
    
    .popup-logo img {
        max-width: 120px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: #333333;
        transition: all 0.3s ease;
        z-index: 1001; /* Ensure it's above other elements */
    }
    
    .mobile-menu-btn:hover {
        color: var(--gold-color);
    }
    
    /* Mobile Menu (when active) */
    .nav-menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 1000;
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .nav-menu.active .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu.active .nav-links a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu.active .nav-links a:last-child {
        border-bottom: none;
    }
    
    /* Adjust header container for mobile */
    .header-container {
        position: relative; /* Important for absolute positioning of the menu */
        padding: 15px 20px;
    }
}

/* Enquire Widget Styles */
.enquire-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.enquire-button {
    background-color: #8C6A2B;
    color: white;
    padding: 12px 20px;
    border-radius: 4px 0 0 4px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.enquire-button:hover {
    background-color: #6d5321;
    padding-right: 25px;
}

.enquire-button i {
    font-size: 18px;
}

/* Popup Styles */
#enquire-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#enquire-popup.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

#enquire-popup.active .popup-content {
    transform: translateY(0);
}

#close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}

#close-popup:hover {
    color: #8C6A2B;
}

.popup-content h3 {
    margin-bottom: 20px;
    color: #8C6A2B;
    font-size: 24px;
    text-align: center;
}

.popup-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.popup-form-group {
    flex: 1;
}

.popup-form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.popup-form-group input:focus {
    border-color: #8C6A2B;
    outline: none;
}

.btn-submit {
    width: 100%;
    background-color: #8C6A2B;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.btn-submit:hover {
    background-color: #6d5321;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-loading {
    display: none;
    text-align: center;
    margin-top: 15px;
}

/* Responsive styles */
@media (max-width: 576px) {
    .popup-form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .enquire-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .enquire-button i {
        font-size: 16px;
    }
}

/* Footer Legal Links */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #8C6A2B;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #8C6A2B;
}

.popup-header {
    text-align: center;
    margin-bottom: 20px;
}

.popup-logo {
    margin-bottom: 15px;
}

.popup-logo img {
    max-width: 150px;
    height: auto;
}

.popup-header h3 {
    color: #8C6A2B;
    font-size: 20px;
    margin: 0;
}

/* Form styles inside popup */
.popup-content .form-group {
    margin-bottom: 15px;
}

.popup-content label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.popup-content input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.popup-content .btn-submit {
    width: 100%;
    background-color: #8C6A2B;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.popup-content .form-loading {
    display: none;
    text-align: center;
    margin-top: 15px;
}

/** Additiona CSS **/
/* Basic Popup Styles */
#enquire-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

#close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}