:root {
    --dark-bg: #0c1c12;
    --dark-card: #121818;
    --gold: #D4AF37;
    --gold-light: #e6c158;
    --gold-dark: #b8941f;
    --text-light: #f5f5f5;
    --text-gray: #aaaaaa;
    --charcoal: #1a1a1a;
    --slate: #2d3748;
    --midnight-blue: #1e2a3a;
    --gold: #d4af37;
    --brass: #b08d57;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-overlay: rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: popupIn 0.5s ease;
}

.popup-modal .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-card);
    font-weight: 500;
}

.popup-header {
    padding: 20px;
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
}

.popup-body {
    padding: 30px;
}

.popup-image {
    height: 150px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    position: relative;
}

.popup-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(212, 175, 55, 0.2) 100%);
    z-index: 1;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    margin-top: 5px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:hover:before {
    left: 100%;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--charcoal);
}

/* Header Styles */
header {
    background-color: rgba(10, 15, 15, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--gold), #f7e98d, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.logo h1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.logo span {
    color: var(--text-light);
    font-weight: 300;
    font-size: 0.9rem;
    margin-left: 10px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--gold);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slideshow {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/penta-banner.jpeg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/banner1.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/banner2.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 900px;
    z-index: 10;
}

.hero-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--gold), #f7e98d, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    position: relative;
    display: inline-block;
}

.hero-content h2::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -10px;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Section Styles */
section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--gold);
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Highlights Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background-color: var(--dark-card);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.highlight-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.highlight-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}


/* Configurations Section */
.config-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 5px;
    margin: 0 10px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active {
    background-color: var(--gold);
    color: var(--dark-bg);
}

.tab-btn:hover:not(.active) {
    background-color: rgba(212, 175, 55, 0.1);
}

.config-content {
    display: none;
}

.config-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.config-card {
    background-color: var(--dark-card);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.config-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.config-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.config-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.config-details {
    padding: 25px;
}

.config-details h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.config-details p {
    color: var(--text-gray);
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.config-details p span {
    color: var(--text-light);
    font-weight: 500;
}




/* Enhanced Amenities Section */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.amenity-card {
    background-color: var(--dark-card);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transform: translateY(30px) rotateY(10deg);
    position: relative;
    height: 300px;
    perspective: 1000px;
}

.amenity-card.animate {
    opacity: 1;
    transform: translateY(0) rotateY(0);
}

.amenity-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.amenity-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    position: relative;
}

.amenity-card:hover .amenity-img {
    transform: scale(1.1);
}

.amenity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.amenity-icon {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--dark-bg);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.amenity-content {
    padding: 20px;
}

.amenity-content h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.amenity-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Enhanced Location Section */
.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.location-info {
    opacity: 0;
    transform: translateX(-30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.location-intro {
    margin-bottom: 30px;
}

.location-intro h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.location-intro p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.location-highlights {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.location-list {
    list-style: none;
    margin-top: 20px;
}

.location-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.location-list li:hover {
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
    border-radius: 5px;
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list span {
    color: var(--gold);
    font-weight: 500;
    background-color: rgba(212, 175, 55, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.location-map-container {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(30px);
    position: relative;
}

.location-map-container.animate {
    opacity: 1;
    transform: translateX(0);
}

#location-map {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    z-index: 1;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 15, 0.7) 0%, rgba(10, 15, 15, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
    pointer-events: none;
}

.map-overlay h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.map-overlay p {
    color: var(--text-light);
    margin-bottom: 15px;
    max-width: 80%;
}

.map-cta {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.map-cta:hover {
    background-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Gallery Section */
/* bxSlider Gallery */
.gallery-slider img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

/* Overlay (optional) */
.gallery-slider li {
    position: relative;
}

.gallery-slider .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    color: #fff;
    font-size: 30px;
    border-radius: 10px;
}

.gallery-slider li:hover .overlay {
    opacity: 1;
}

/* bxSlider reset */
.bx-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
}
#gallery {
    padding: 80px 0;
}

.bx-wrapper {
    margin: 0 auto;
}

.bx-viewport {
    min-height: 280px;
}
.bx-wrapper {
    -moz-box-shadow: 0 0 5px #ccc;
    -webkit-box-shadow: none !important;
    box-shadow:none !important;
    border: none !important;
    background: none !important;
    padding: 10px !important;
}
.bx-controls-direction{
    display: none;
}
.bx-pager{
    display: none;
}
/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    opacity: 0;
    transform: translateX(-30px);
}

.contact-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item div h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.contact-item div p {
    color: var(--text-gray);
}

.contact-form {
    background-color: var(--dark-card);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transform: translateX(30px);
}

.contact-form.animate {
    opacity: 1;
    transform: translateX(0);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--gold);
    color: var(--dark-bg);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    background-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer */
footer {
    background-color: var(--dark-card);
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    bottom: -8px;
    left: 0;
}

.footer-col p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--text-gray);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.creator-credit {
    text-align: center;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.agency-name {
    color: var(--gold);
    font-weight: 500;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-buttons a {
    text-decoration: none;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--gold);
    }

    50% {
        box-shadow: 0 0 20px var(--gold);
    }

    100% {
        box-shadow: 0 0 5px var(--gold);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {

    .location-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .location-map-container,
    .contact-form {
        order: -1;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

    .location-highlights {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
        text-align: center;
        padding: 15px 0;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    section {
        padding: 80px 5%;
    }

    .amenity-card {
        height: auto;
    }

    .map-overlay {
        padding: 20px;
    }

    .map-overlay p {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .config-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 80%;
        margin-bottom: 10px;
    }

    .contact-form {
        padding: 25px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}