/* CSS Variables for Premium Theme */
:root {
    --primary-color: #c5a059;
    /* Gold/Bronze */
    --primary-dark: #a38240;
    --secondary-color: #0f172a;
    /* Dark Navy/Black */
    --secondary-light: #1e293b;
    --text-color: #334155;
    --text-light: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Smoother bezier */
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    /* Increased for better readability */
    background-color: var(--white);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    /* Larger touch target */
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle depth */
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
    /* Colored shadow */
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-dark {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-submit {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px;
    font-size: 1rem;
    border: none;
    border-radius: var(--border-radius);
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border: 1px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Header */
#header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    /* Glassmorphism */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    /* Slightly larger */
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

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

.nav-menu ul {
    display: flex;
    gap: 35px;
    /* More space between links */
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
    padding: 5px;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary-color);
    padding: 5px;
    transition: transform 0.3s;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.mobile-nav li {
    margin-bottom: 25px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 100px;
    /* Space for fixed header */
    padding-bottom: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.badge {
    background-color: rgba(197, 160, 89, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 18px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 25px;
    display: inline-block;
    backdrop-filter: blur(5px);
    font-weight: 600;
}

.hero-text h1 {
    font-size: 3.8rem;
    /* Larger and impactful */
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 90%;
    font-weight: 300;
}

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

/* Lead Form */
.hero-form-wrapper {
    display: flex;
    justify-content: flex-end;
}

.hero-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 420px;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
}

.hero-form h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 700;
}

.hero-form p {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.form-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    /* Softer icon color */
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-group input:focus~i,
.form-group select:focus~i {
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 15px 14px 50px;
    /* More padding */
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background: #f8fafc;
    color: var(--secondary-color);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
    /* Focus ring */
}

/* Highlights */
.highlights {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    /* Rich gradient */
    padding: 60px 0;
    color: var(--white);
    position: relative;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.highlight-item {
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.highlight-item h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.highlight-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Section Common */
.section {
    padding: 90px 0;
    /* More breathing room */
}

.sub-heading {
    color: var(--primary-color);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.exp-box {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.check-list {
    margin: 30px 0 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    /* Bolder text */
    font-size: 1.05rem;
}

.check-list i {
    color: var(--primary-color);
    background: rgba(197, 160, 89, 0.15);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Amenities */
.amenities {
    background-color: var(--light-bg);
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(197, 160, 89, 0.2);
}

.amenity-card .icon-box {
    width: 80px;
    height: 80px;
    background-color: #fdf8eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.amenity-card:hover .icon-box {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Location Advantage */
.location-advantage {
    background-color: var(--white);
    padding-bottom: 40px;
}

.location-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.loc-card {
    background: var(--light-bg);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
}

.loc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(197, 160, 89, 0.3);
    background: var(--white);
}

.loc-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.loc-card:hover .loc-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.loc-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.loc-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.loc-list {
    text-align: left;
    margin-top: 15px;
}

.loc-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.loc-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1;
}

/* Map Section */
.map-section {
    padding-top: 0;
    padding-bottom: 70px;
}

.map-frame-wrapper {
    background: var(--white);
    padding: 10px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-frame-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-frame-wrapper h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.map-frame-full {
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
}

.map-frame-full iframe {
    transition: var(--transition);
    filter: grayscale(20%);
}

.map-frame-full:hover iframe {
    filter: grayscale(0%);
}

/* Footer */
/* Footer */
.footer {
    background-color: #0b1120;
    /* Very dark navy */
    color: var(--white);
    padding: 160px 0 40px;
    /* Increased top padding */
    position: relative;
    margin-top: 140px;
    /* Space for the floating CTA */
}

/* Floating CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 40px 50px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Perfect center overlap */
    width: 90%;
    max-width: 1160px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
    margin: 0;
    /* Remove auto margin */
}

.cta-text h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 8px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-action .btn {
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 15px 35px;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-action .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #fff;
    color: var(--secondary-color);
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    padding-top: 40px;
    /* Space after CTA box */
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.footer-brand p {
    color: var(--text-light);
    /* Lighter text on dark bg */
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 350px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links ul li a {
    color: #94a3b8;
    /* Slate 400 */
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a i {
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links ul li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.contact-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-list li a {
    color: #94a3b8;
}

.contact-list li a:hover {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.copyright p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.disclaimer p {
    color: #64748b;
    /* Darker slate for less emphasis */
    font-size: 0.8rem;
    max-width: 800px;
    line-height: 1.5;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    backdrop-filter: blur(5px);
}

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

.modal-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    max-width: 450px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color);
    line-height: 1;
}

/* Fixed Bottom Bar */
.fixed-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2900;
    /* High z-index but below modal */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    height: 60px;
}

.fixed-bottom-bar a,
.fixed-bottom-bar button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-bottom-bar a:last-child,
.fixed-bottom-bar button:last-child {
    border-right: none;
}

/* Colorful Bottom Bar Buttons */
.call-btn {
    background: #0ea5e9;
    /* Bright Blue */
    color: #ffffff;
}

.call-btn:hover {
    background: #0284c7;
}

.whatsapp-btn {
    background: #25D366;
    /* WhatsApp Green */
    color: #ffffff;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.enquire-btn {
    background: var(--secondary-color);
    /* Navy Blue */
    color: #ffffff;
}

.enquire-btn:hover {
    background: var(--primary-color);
}

/* Mobile Menu Buttons Area */
.mobile-menu-btns {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1;
}

/* --- MOBILE RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (min-width: 769px) {
    .fixed-bottom-bar {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 50px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-bg .overlay {
        background: rgba(15, 23, 42, 0.7);
        /* Darker overlay for readability */
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-form-wrapper {
        justify-content: center;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .exp-box {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
        width: max-content;
    }

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

@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
        /* Space for bottom bar */
    }

    /* Header adjustments */
    .nav-menu {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .logo a {
        font-size: 1.4rem;
    }

    /* Hero adjustments */
    .hero {
        padding-top: 100px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    /* Global Section Padding */
    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .location-grid-full {
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-cta h2 {
        font-size: 1.8rem;
    }

    .fixed-bottom-bar {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        /* 1 column for highlights */
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        /* 1 column for amenities */
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        /* 1 column for gallery */
    }

    .location-grid-full {
        grid-template-columns: 1fr;
    }

    .location-info {
        padding: 30px 20px;
    }

    .hero-form {
        padding: 20px;
    }

    .modal-content {
        padding: 20px;
    }

    .btn {
        width: 100%;
        /* Full width buttons on mobile */
    }

    .hero-btns {
        width: 100%;
        flex-direction: column;
    }

    /* Footer Responsive */
    .footer {
        padding-top: 180px;
        /* More space for stacked CTA */
        padding-bottom: 80px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 0;
    }

    .footer-brand p {
        margin: 0 auto 25px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul li a {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
        text-align: center;
    }
}