/* Match contact section style with main site */
.contact-content {
    text-align: center;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}
.contact-info h3 {
    margin-bottom: 20px;
}
.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
/* ========================= */
/* GLOBAL RESET */
/* ========================= */

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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #ff6666;
    --bg-color: #f8f9fa;
    --text-color: #333;
    --white: #ffffff;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    --radius: 12px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* ========================= */
/* CONTAINER */
/* ========================= */

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

section {
    padding: 30px 0;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {
    background: var(--white);
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: 0.3s;
}

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

/* ========================= */
/* HEADINGS */
/* ========================= */

h1, h2, h3 {
    color: var(--primary-color);
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

#specifications h2{
    font-size: 1.8rem;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ========================= */
/* GALLERY */
/* ========================= */

.gallery {
    background: var(--bg-color);
}

.carousel {
    position: relative;
    max-width: 850px;
    margin: auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.carousel-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    display: block;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

/* PREV / NEXT BUTTONS */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 12px 16px;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.85);
    transform: translateY(-50%) scale(1.1);
}

.prev { left: 15px; }
.next { right: 15px; }

/* DOTS */
.carousel-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    display: inline-block;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active,
.dot:hover {
    background: var(--accent-color);
}

/* ========================= */
/* AMENITIES */
/* ========================= */

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.amenities-list li {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.amenities-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.amenities-list li::first-letter {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

/* ========================= */
/* SPECIFICATIONS */
/* ========================= */

.specifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.spec-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
    transition: 0.3s;
}

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

.spec-card h3 {
    margin-bottom: 15px;
}

/* ========================= */
/* CONTACT */
/* ========================= */

.contact-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: auto;
    text-align: center;
}

/* ========================= */
/* MAP */
/* ========================= */

.map-wrapper iframe {
    width: 90%;
    height: 450px;
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow);
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 25px 0;
}

/* ========================= */
/* WHATSAPP BUTTON */
/* ========================= */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

    .navbar .container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    h2 {
        font-size: 1.8rem;
    }

    .amenities-list,
    .specifications-grid {
        grid-template-columns: 1fr;
    }
}
.chatbot-float {
    position: fixed;
    bottom: 90px; /* Above WhatsApp */
    right: 20px;
    background-color: #2c3e50;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.chatbot-float:hover {
    background-color: #ff6666;
    transform: scale(1.1);
}