/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Responsive image utility */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive video utility */
video {
    max-width: 100%;
    height: auto;
}

/* Responsive table utility */
table {
    width: 100%;
    table-layout: fixed;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --accent-purple: #8b5cf6;
    --accent-yellow: #fbbf24;
    --text-light: #ffffff;
    --text-gray: #a1a1aa;
    --border-gray: #404040;
}


/* Navigation Bar */
.navbar {
    background-color: var(--primary-dark);
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-gray);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.navbar-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.navbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    gap: 10px;
}

.book-now-btn {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 25px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    white-space: nowrap;
    animation: bounce 2s infinite;
}

.book-now-btn:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);

}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--accent-yellow);
}

.login-link {
    background-color: transparent;
    border: 2px solid var(--accent-purple);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--accent-purple) !important;
    transition: all 0.3s ease;
    font-size: 14px;
}

.login-link:hover {
    background-color: var(--accent-purple);
    color: var(--text-light) !important;
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
    z-index: 1500;
}

.account-link {
    background-color: transparent;
    border: 2px solid var(--accent-purple);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--accent-purple) !important;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.account-link:hover {
    background-color: var(--accent-purple);
    color: var(--text-light) !important;
}

.account-link i.fas.fa-user-circle {
    font-size: 16px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.account-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--secondary-dark);
    border: 1px solid #3d3d3d;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    list-style: none;
    padding: 10px 0;
    white-space: nowrap;
}

.account-dropdown.active .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background-color: var(--accent-purple);
    color: var(--text-light) !important;
}

.dropdown-menu i {
    width: 16px;
    font-size: 14px;
    color: var(--accent-yellow);
}

.dropdown-divider {
    height: 1px;
    background-color: #3d3d3d;
    margin: 8px 0;
}

#logoutBtn:hover {
    background-color: #ef4444 !important;
}

#logoutBtn i {
    color: #ef4444 !important;
}

#logoutBtn:hover i {
    color: var(--text-light) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: 15px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    margin-top: 90px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--accent-yellow);
    transform: scale(1.2);
}

/* Hero Text Overlay */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 15;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-text-slide {
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.hero-text-slide.active {
    opacity: 1;
    visibility: visible;
    position: static;
    transform: none;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--accent-yellow);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    margin: 0;
}

/* Booking Form Overlay */
.booking-form-overlay {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    width: auto;
    height: auto;
}

.booking-form-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.booking-form {
    background-color: var(--accent-yellow);
    padding: 40px;
    border-radius: 20px;
    width: 560px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.booking-form h3 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.close-form {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.close-form:hover {
    background-color: #ef4444;
    transform: scale(1.1);
}

.booking-form .form-group {
    margin-bottom: 18px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    box-sizing: border-box;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    background-color: white;
    box-shadow: 0 0 0 3px var(--accent-purple);
}

.book-btn {
    width: 100%;
    background-color: var(--accent-purple);
    color: var(--text-light);
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.book-btn:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--secondary-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-gray);
    line-height: 1.8;
}

.features {
    display: flex;
    gap: 30px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.feature i {
    font-size: 24px;
    color: var(--accent-yellow);
}

.feature span {
    font-weight: 500;
}

.about-images img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-light);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--secondary-dark);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3d3d3d;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.service-icon {
    background-color: var(--accent-purple);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 30px;
    color: var(--text-light);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--secondary-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--primary-dark);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #3d3d3d;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.2);
}

.pricing-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.specs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.specs span {
    background-color: var(--secondary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.specs i {
    color: var(--accent-purple);
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-yellow);
}

/* Subscription Section */
.subscription-section {
    padding: 80px 0;
    background-color: var(--accent-purple);
    text-align: center;
}

.subscription-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.subscription-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.subscription-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.subscription-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.subscription-form button {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscription-form button:hover {
    background-color: #f59e0b;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background-color: var(--secondary-dark);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #3d3d3d;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #3d3d3d;
    border-radius: 8px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 20px;
    color: var(--accent-purple);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-light);
}

.info-item p {
    color: var(--text-gray);
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background-color: var(--secondary-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--primary-dark);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #3d3d3d;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.stars i {
    color: var(--accent-yellow);
    font-size: 18px;
}

.review-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-gray);
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer h4 {
    color: var(--text-light);
    margin-bottom: 2px;
}

.reviewer span {
    color: var(--text-gray);
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    padding: 60px 0 20px;
    border-top: 1px solid #3d3d3d;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-yellow);
}

.contact-details p {
    color: var(--text-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: var(--accent-purple);
    width: 20px;
}

.footer-map {
    border-radius: 10px;
    overflow: hidden;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3d3d3d;
    color: var(--text-gray);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: var(--secondary-dark);
    margin: 10% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    border: 1px solid #3d3d3d;
}

.close {
    color: var(--text-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover {
    color: var(--text-light);
}

.modal h2 {
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

.modal .form-group {
    margin-bottom: 20px;
}

.modal input,
.modal textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #3d3d3d;
    border-radius: 8px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 16px;
}

.modal input:focus,
.modal textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.auth-btn {
    width: 100%;
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-btn:hover {
    background-color: #f59e0b;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--text-gray);
}

.auth-switch a {
    color: var(--accent-purple);
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Responsive Design */

/* Extra Large screens - Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0 30px;
    }

    .section-title {
        font-size: 48px;
    }

    .about-text h2 {
        font-size: 48px;
    }
}

/* Large screens - Laptop */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .booking-form-overlay {
        transform: translate(-50%, -50%);
    }

    .booking-form {
        width: 420px;
        padding: 35px;
    }

    .booking-form h3 {
        font-size: 22px;
    }

    .booking-form input,
    .booking-form select {
        padding: 14px;
        font-size: 15px;
    }

    .book-btn {
        padding: 16px;
        font-size: 17px;
    }

    .about-content {
        gap: 50px;
    }

    .contact-content {
        gap: 50px;
    }
}

/* Medium screens - Tablet landscape */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .book-now-btn {
        padding: 20px 16px;
        font-size: 16px;
        animation: bounce 2s infinite;
    }

    .booking-form-overlay {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 450px;
        height: auto;
        max-height: 85vh;
    }

    .booking-form {
        width: 380px;
        padding: 30px;
    }

    .booking-form h3 {
        font-size: 20px;
    }

    .booking-form input,
    .booking-form select {
        padding: 12px;
        font-size: 14px;
    }

    .book-btn {
        padding: 14px;
        font-size: 15px;
    }

    .section-title {
        font-size: 38px;
    }

    .about-text h2 {
        font-size: 38px;
    }

    .about-text p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Small screens - Tablet portrait */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        top: 0;
        padding: 10px 0;
        z-index: 1000;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .navbar-left {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
    }

    .navbar-center {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
        justify-content: center;
    }

    .navbar-right {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--secondary-dark);
        padding: 20px 0;
        margin: 0;
        gap: 20px;
        border-top: 1px solid #3d3d3d;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        z-index: 1500;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        text-align: center;
        padding: 0 20px;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background-color: var(--accent-purple);
        color: var(--text-light) !important;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        display: block;
        transition: all 0.3s ease;
    }

    /* Animated hamburger menu */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    

    .book-now-btn {
        padding: 8px 15px;
        font-size: 12px;
        border-radius: 20px;
        white-space: nowrap;
        animation: bounce 2s infinite;
    }

    /* Adjust hero section */
    .hero-section {
        margin-top: 80px;
        height: 100vh;
    }

    .slider-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .booking-form-overlay {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 400px;
        height: auto;
        max-height: 85vh;
        padding: 0;
    }

    .booking-form {
        width: 100%;
        max-width: none;
        padding: 25px 20px;
        border-radius: 15px;
        margin: 0;
    }

    .booking-form h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .booking-form input,
    .booking-form select {
        padding: 14px;
        font-size: 16px;
        border-radius: 10px;
    }

    .book-btn {
        padding: 16px;
        font-size: 16px;
        border-radius: 10px;
    }

    /* Section adjustments */
    .about-section,
    .services-section,
    .pricing-section,
    .contact-section,
    .reviews-section {
        padding: 60px 0;
    }

    .subscription-section {
        padding: 50px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        text-align: center;
        order: 2;
    }

    .about-images {
        order: 1;
    }

    .features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .feature {
        min-width: 120px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        order: 1;
    }

    .contact-info {
        order: 2;
    }

    .subscription-form {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }

    .subscription-form input {
        padding: 18px;
    }

    .subscription-form button {
        padding: 18px 25px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .pricing-grid,
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card,
    .review-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .pricing-card {
        margin: 0 auto;
        max-width: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .modal-content {
        margin: 15% auto;
        padding: 25px;
        width: 90%;
        max-width: 350px;
    }

    /* Hero text responsive adjustments */
    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-text-overlay {
        padding: 0 15px;
        max-width: 90%;
    }
}

/* Extra Small screens - Mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    /* Further optimize navigation for small screens */
    

    .book-now-btn {
        padding: 25px 35px;
        font-size: 11px;
        animation: bounce 2s infinite;
    }

    /* Hero section optimizations */
    .hero-section {
        margin-top: 70px;
    }

    .booking-form-overlay {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 350px;
        height: auto;
        max-height: 80vh;
        padding: 0;
    }

    .booking-form {
        padding: 20px 15px;
        width: 100%;
        max-width: none;
        border-radius: 15px;
    }

    .booking-form h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .booking-form input,
    .booking-form select {
        padding: 12px;
        font-size: 14px;
    }

    .book-btn {
        padding: 14px;
        font-size: 14px;
    }

    /* Typography adjustments */
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .about-text h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .subscription-content h2 {
        font-size: 28px;
    }

    .subscription-content p {
        font-size: 14px;
    }

    /* Card adjustments */
    .service-card {
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .pricing-card {
        max-width: 300px;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 20px;
    }

    .price {
        font-size: 24px;
    }

    .review-card {
        padding: 20px;
        max-width: 350px;
    }

    .review-card p {
        font-size: 14px;
    }

    .reviewer h4 {
        font-size: 16px;
    }

    .reviewer img {
        width: 40px;
        height: 40px;
    }

    /* Contact form adjustments */
    .contact-form {
        padding: 25px 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Modal adjustments */
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
        max-width: 300px;
    }

    .modal h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .modal input,
    .modal textarea {
        padding: 12px;
        font-size: 14px;
    }

    .auth-btn {
        padding: 12px;
        font-size: 14px;
    }

    /* Features section */
    .features {
        gap: 15px;
    }

    .feature {
        min-width: 100px;
    }

    .feature i {
        font-size: 20px;
    }

    .feature span {
        font-size: 12px;
    }

    /* Footer adjustments */
    .footer {
        padding: 40px 0 15px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-section ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 15px;
    }

    /* Subscription form */
    .subscription-form input {
        padding: 14px;
        font-size: 14px;
    }

    .subscription-form button {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Ultra Small screens - Very small mobile phones */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    .book-now-btn {
        padding: 5px 10px;
        font-size: 15px;
    }

    .hamburger span {
        width: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .booking-form {
        padding: 15px;
    }

    .booking-form h3 {
        font-size: 15px;
    }

    .service-card,
    .review-card {
        padding: 15px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .modal-content {
        padding: 15px;
        max-width: 280px;
    }

    /* Hero text adjustments for ultra small screens */
    .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-text-overlay {
        padding: 0 10px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.2s ease;
}

/* Hide scrollbar on mobile devices */
@media (max-width: 768px) {

    /* Webkit browsers (Chrome, Safari, Edge) */
    ::-webkit-scrollbar {
        width: 0px;
        height: 0px;
        display: none;
    }

    /* Firefox */
    html {
        scrollbar-width: none;
    }

    /* All browsers - fallback */
    body {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    body::-webkit-scrollbar {
        display: none;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {

    .book-now-btn,
    .book-btn,
    .submit-btn,
    .auth-btn {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hamburger {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Call Now Button */
.call-now-btn {
    background-color: var(--accent-purple);
    color: var(--text-light);
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    animation: ringing 2s infinite;
}

.call-now-btn:hover {
    background-color: #7c3aed;
    transform: translateY(-2px);
    animation: none;
}

.call-now-btn i {
    font-size: 16px;
    animation: shake 2s infinite;
}

.call-now-btn:hover i {
    animation: none;
}

/* Ringing animation for call button */
@keyframes ringing {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
    }
}

/* Shake animation for phone icon */
@keyframes shake {

    0%,
    90%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    animation: pulse 3s infinite;
}

.whatsapp-widget a:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-widget i {
    font-size: 24px;
    animation: bounce 2s infinite;
}

.whatsapp-widget:hover i {
    animation: none;
}

.whatsapp-text {
    font-weight: 600;
}

/* WhatsApp pulse animation */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* WhatsApp icon bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive design for widgets */
@media (max-width: 768px) {
    .call-now-btn {
        padding: 10px 16px;
        font-size: 12px;
        gap: 6px;
    }

    .call-now-btn i {
        font-size: 14px;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-widget a {
        padding: 12px 16px;
        font-size: 14px;
        gap: 8px;
    }

    .whatsapp-widget i {
        font-size: 20px;
    }

    .whatsapp-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .call-now-btn span {
        display: none;
    }

    .call-now-btn {
        padding: 10px;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        justify-content: center;
    }

    .whatsapp-widget a {
        padding: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
}

/* Print styles */
@media print {

    .navbar,
    .info-bar,
    .hamburger,
    .booking-form-overlay,
    .modal,
    .whatsapp-widget,
    .call-now-btn {
        display: none !important;
    }

    .hero-section {
        margin-top: 0;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

.wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button {
    min-width: 30px;
    min-height: 60px;
    display: inline-flex;
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #313133;
    background: #4FD1C5;
    background: linear-gradient(90deg, rgba(129, 230, 217, 1) 0%, rgba(79, 209, 197, 1) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px rgba(79, 209, 197, .64);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
}

.button::before {
    content: '';
    border-radius: 10px;
    min-width: calc(30px + 12px);
    min-height: calc(60px + 12px);
    border: 6px solid #00FFCB;
    box-shadow: 0 0 60px rgba(0, 255, 203, .64);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
}

.button:hover,
.button:focus {
    color: #313133;
    transform: translateY(-6px);
}

.button:hover::before,
.button:focus::before {
    opacity: 1;
}

.button::after {
    content: '';
    width: 20px;
    height: 12px;
    border-radius: 100%;
    border: 6px solid #00FFCB;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

.button:hover::after,
.button:focus::after {
    animation: none;
    display: none;
}

@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.pulse-button {
    /* Basic button styling */
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;

    /* Pulse animation */
    animation: pulse 2s infinite;
    /* Apply the 'pulse' animation, 2s duration, infinite loop */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        /* Start at original size */
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
        /* Initial shadow, fading out */
    }

    50% {
        transform: scale(1.05);
        /* Slightly enlarge the button */
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
        /* Expand and fade out the shadow */
    }

    100% {
        transform: scale(1);
        /* Return to original size */
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
        /* Shadow fully faded */
    }
}


/* Accordion Menu CSS */

/* Legend Styles */
    .legend {
      max-width: 950px;
      margin: 0 auto 20px;
      background: #fff;
      padding: 12px 18px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
      display: flex;
      gap: 18px;
      align-items: center;
      font-size: 14px;
    }
    .legend span {
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .legend .dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      display: inline-block;
    }
    .dot.low { background: #1b8a3b; }
    .dot.mid { background: #e65100; }
    .dot.high { background: #c62828; }

    /* Accordion Styles */
    .city-section {
      max-width: 950px;
      margin: 15px auto;
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      transition: box-shadow 0.3s ease;
    }
    .city-section.active {
      box-shadow: 0 4px 14px rgba(128, 0, 128, 0.3); /* Light purple shadow */
    }

    .city-title {
      background: #d4a017; /* Dark Yellow */
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      padding: 14px 18px;
      cursor: pointer;
      position: sticky;
      top: 0;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .accordion-content-inner { }

    .price-header, .price-row {
      display: grid;
      grid-template-columns: 1fr 40px 1fr auto; /* arrow column always visible */
      padding: 14px 18px;
      border-bottom: 1px solid #eee;
      align-items: center;
    }

    .price-header {
      background: #f4f4f8;
      font-weight: bold;
      position: sticky;
      top: 44px; /* below city header */
      z-index: 1;
    }

    .price-row:hover {
      background: #fafafa;
    }

    /* Arrow column */
    .arrow {
      text-align: center;
      font-size: 18px;
      font-weight: bold;
      color: #444;
    }

    /* Price Badges */
    .price {
      font-weight: bold;
      padding: 8px 16px;
      border-radius: 20px;
      text-align: center;
      display: inline-block;
      font-size: 15px;
      float: right;
    }
    .low { background: #e6f7e6; color: #1b8a3b; }
    .mid { background: #fff3e0; color: #e65100; }
    .high { background: #fdecea; color: #c62828; }

    @media(max-width: 700px) {
      .price-header, .price-row {
        grid-template-columns: 1fr 30px 1fr auto; /* keep arrow column */
        grid-row-gap: 6px;
      }
      .price { grid-column: 4; text-align: right; float: none; }
    }


