/* ==========================================================================
   1. GOOGLE FONTS & VARIABLES
========================================================================== */
:root {
    /* Fonts */
    --font-primary: "Inter", sans-serif;
    --font-heading: "Boldonse", sans-serif;

    /* Colors */
    --color-accent: #3d61fb;
    --color-white: #ffffff;
    --color-background: #ffffff;
    --color-background-secondary: #f4f7fa;
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #555;
    --color-border: #e0e0e0;

    /* Spacing & Sizing */
    --navbar-height: 80px;
    --container-width: 1140px;
}

/* ==========================================================================
   2. GLOBAL RESET & BASE STYLES
========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-background);
    color: var(--color-text-primary);
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Global Button Style */
.btn {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.85rem 2rem;
    border-radius: 2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #2a4ec7;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 97, 251, 0.3);
    color: var(--color-white);
}

/* ==========================================================================
   PRELOADER (PAGE LOADING ANIMATION)
========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-icon {
    font-size: 5rem;
    color: var(--color-accent);
    animation: flyLoader 1.5s infinite ease-in-out;
}

@keyframes flyLoader {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-25px) scale(1.1); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 0.6; }
}

/* ==========================================================================
   3. HERO & NAVIGATION SECTION
========================================================================== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Navbar */
.navbar {
    height: var(--navbar-height);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.navbar-scrolled {
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.nav-container {
    width: 100%;
    max-width: var(--container-width);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-accent);
}

.navbar-scrolled .nav-link {
    color: var(--color-text-primary);
}

.cta-button {
    background-color: var(--color-white);
    color: var(--color-text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Mobile Nav Structure (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}
.navbar-scrolled .hamburger span {
    background-color: var(--color-text-primary);
}
.nav-menu-mobile {
    display: none;
}
.close-menu-icon {
    display: none;
}

/* Hero Content */
.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5rem;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-white);
}

/* Booking Form */
.booking-form-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.booking-form {
    display: flex;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 1rem;
    border-right: 1px solid var(--color-border);
}

.form-group:last-of-type {
    border-right: none;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-left: 0.5rem;
}

.form-group input {
    border: none;
    background-color: transparent;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-primary);
    padding: 0.5rem;
    width: 100%;
}

.form-group input:focus {
    outline: none;
}

/* Flatpickr Reset */
.form-group input[readonly] {
    background-color: transparent !important;
    cursor: pointer;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    display: none;
    -webkit-appearance: none;
}

.form-submit-btn {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.form-submit-btn:hover {
    background-color: #2a4ec7;
}
.form-submit-btn i {
    font-size: 1.5rem;
}
.submit-text {
    display: none;
}

/* Location Dropdown */
.location-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    min-width: 250px;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    flex-direction: column;
}

.location-dropdown::-webkit-scrollbar {
    width: 6px;
}
.location-dropdown::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}
.location-dropdown.active {
    display: flex;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
}
.dropdown-item:hover {
    background-color: var(--color-background-secondary);
}
.dropdown-item img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}
.dropdown-item-empty {
    padding: 1rem;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Hero Bottom Info */
.hero-bottom-info {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem 3rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    color: var(--color-white);
    margin-top: auto;
}

.bottom-info-left h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.bottom-info-left p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.scroll-down {
    display: flex;
    align-items: center;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}
.scroll-down i {
    font-size: 2rem;
    margin-right: 0.5rem;
    animation: bounce 1.5s infinite;
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   4. POPULAR SECTION
========================================================================== */
.popular-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--color-background-secondary);
}

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.popular-card {
    position: relative;
    min-height: 300px;
    border-radius: 1.25rem;
    overflow: hidden;
    display: block;
    background-size: cover;
    background-position: center;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    grid-column: span 3;
}

.popular-card:nth-child(3) {
    grid-column: span 2;
}
.popular-card:nth-child(4) {
    grid-column: span 4;
}
.popular-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.popular-grid.collapsed .popular-card:nth-child(n + 5) {
    display: none;
}
.popular-show-more {
    display: none;
    justify-content: center;
    margin-top: 2.5rem;
}
.popular-grid:has(.popular-card:nth-child(5)) ~ .popular-show-more {
    display: flex;
}

.popular-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
}
.popular-card-content h3 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}
.popular-card-content p {
    color: var(--color-white);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.popular-card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background-color: var(--color-background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 5;
}
.popular-card:hover .popular-card-arrow {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   5. PLACES SECTION
========================================================================== */
.places-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.places-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}
.places-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.places-header p {
    color: var(--color-text-secondary);
}

.filter-buttons-wrapper {
    overflow-x: auto;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}
.filter-buttons-wrapper::-webkit-scrollbar {
    display: none;
}
.filter-buttons-wrapper.active-drag {
    cursor: grabbing;
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    width: max-content;
    margin: 0 auto;
    padding: 0 1rem;
}
.filter-btn {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    background-color: #f0f0f0;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}
.filter-btn:hover {
    background-color: #e0e0e0;
}
.filter-btn.active {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.search-bar-container {
    margin: 2.5rem 0;
}
.places-search {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.places-search input {
    width: 100%;
    padding: 1.1rem 1.5rem 1.1rem 3.5rem;
    border-radius: 2.5rem;
    border: 1px solid var(--color-border);
    font-size: 1rem;
}
.places-search input:focus {
    outline: none;
    border-color: var(--color-accent);
}
.places-search i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.place-card {
    position: relative;
    min-height: 350px;
    border-radius: 1.25rem;
    overflow: hidden;
    display: block;
    background-size: cover;
    background-position: center;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}
.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.place-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
}
.place-card-content span {
    font-size: 0.9rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
    display: block;
}
.place-card-content h3 {
    font-size: 1.75rem;
    color: var(--color-white);
}

.place-card-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background-color: var(--color-background-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 5;
}
.place-card:hover .place-card-arrow {
    opacity: 1;
    transform: scale(1);
}

/* View More & Hidden Logic */
.places-grid.collapsed .place-card:nth-child(n + 7) {
    display: none;
}
.places-view-more {
    display: none;
    justify-content: center;
    margin-top: 2.5rem;
}
.places-grid:has(.place-card:nth-child(7)) ~ .places-view-more {
    display: flex;
}
.places-view-more.hidden {
    display: none;
}
.place-card-hidden {
    display: none !important;
}

/* No Results Message */
.no-results-message {
    text-align: center;
    padding: 3rem 1.5rem;
    max-width: 500px;
    margin: 2rem auto 0 auto;
    background-color: var(--color-background-secondary);
    border-radius: 1.25rem;
    border: 1px dashed var(--color-border);
}
.no-results-message i {
    font-size: 3rem;
    color: var(--color-accent);
}
.no-results-message h3 {
    font-size: 1.75rem;
    margin-top: 1rem;
}

/* ==========================================================================
   6. ABOUT US SECTION
========================================================================== */
.about-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--color-background-secondary);
    overflow: hidden;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}
.about-header p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}
.feature-item:hover {
    background-color: var(--color-white);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(61, 97, 251, 0.1);
    color: var(--color-accent);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.feature-item:hover .feature-icon {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: rotate(10deg) scale(1.1);
}
.about-features-list span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Images */
.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
}
.about-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 85%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.about-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.about-image-wrapper:hover .about-img-1 img {
    transform: scale(1.05);
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 55%;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 8px solid var(--color-background-secondary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Badge */
.about-experience-badge {
    position: absolute;
    top: 10%;
    left: -20px;
    background-color: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: 1.25rem;
    border-left: 5px solid var(--color-accent);
    box-shadow: 0 15px 35px rgba(61, 97, 251, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}
.about-experience-badge h3 {
    font-size: 2.8rem;
    color: var(--color-accent);
}
.about-experience-badge span {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-secondary);
}
.animate-float {
    animation: floatUpDown 4s ease-in-out infinite;
}
@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ==========================================================================
   7. TESTIMONIAL SECTION & MODAL
========================================================================== */
.testimonial-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.testimonial-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}
.testimonial-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    transition:
        opacity 0.5s ease-in-out,
        transform 0.5s ease-in-out;
}
.testimonial-fade-out {
    opacity: 0;
    transform: translateY(10px);
}
.testimonial-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-image-container {
    position: relative;
    width: 100%;
    border-radius: 1.25rem;
}
.testimonial-place-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 1.25rem;
}
.testimonial-profile-img {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--color-background);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-review {
    padding-left: 1rem;
}
.review-text {
    font-family: "Georgia", serif;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.client-name {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}
.client-location {
    font-size: 1rem;
    color: var(--color-text-secondary);
}
.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #ffa500;
    font-size: 1.25rem;
    margin-top: 1.5rem;
}
.testimonial-button-container {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}
.modal-content {
    background-color: var(--color-background);
    width: 100%;
    max-width: 500px;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-content {
    transform: scale(1);
}
.close-modal-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    background: #f0f0f0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.close-modal-btn:hover {
    background: #e0e0e0;
    color: var(--color-text-primary);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.modal-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}
.modal-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}
.modal-form-group input,
.modal-form-group textarea {
    font-family: var(--font-primary);
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    font-size: 1rem;
    background-color: var(--color-background-secondary);
}
.modal-form-group input:focus,
.modal-form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.star-rating-input {
    display: flex;
    gap: 0.5rem;
    font-size: 1.8rem;
    color: #ffa500;
    cursor: pointer;
}
.star-rating-input i {
    transition: transform 0.2s ease;
}
.star-rating-input i:hover {
    transform: scale(1.2);
}
.full-width-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ==========================================================================
   8. FAQ SECTION
========================================================================== */
.faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--color-background-secondary);
}
.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}
.faq-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
}
.faq-question span {
    flex: 1;
}
.faq-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faq-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}
.faq-item.active .faq-icon-wrapper {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}
.faq-item.active .faq-icon-wrapper i {
    color: var(--color-white);
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}
.faq-answer-content {
    overflow: hidden;
}
.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--color-text-secondary);
    margin: 0;
}
.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

/* ==========================================================================
   9. LOCATION MAP SECTION
========================================================================== */
.location-map-section {
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0;
    line-height: 0;
    background-color: var(--color-background);
}
.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
}
.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

.map-overlay-btn-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.map-overlay-btn-container .btn {
    padding: 1.1rem 3.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

/* ==========================================================================
   10. FOOTER SECTION
========================================================================== */
.footer-section {
    padding-top: 5rem;
    background-color: var(--color-background-secondary);
    color: var(--color-text-secondary);
    border-top: 1px solid var(--color-border);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}
.footer-col {
    font-size: 0.9rem;
}
.footer-col-logo {
    grid-column: span 3;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}
.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}
.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-col:not(.footer-col-logo) {
    grid-column: span 3;
} /* Adjusted to fit the 3 remaining columns perfectly */
.footer-col h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 1.25rem;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-col ul a {
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}
.footer-col ul a:hover {
    color: var(--color-accent);
}

/* Dynamic Reach & Socials */
.footer-social-dynamic li {
    margin-bottom: 10px;
}
.social-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}
.social-link-item i {
    font-size: 1.2rem;
    color: var(--color-accent);
}
.social-link-item:hover {
    color: var(--color-accent);
}

.reach-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}
.reach-us-list i {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.footer-divider {
    border: none;
    height: 1px;
    background-color: var(--color-border);
    width: 100%;
    margin: 0 auto;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1.5rem;
}
.copyright-text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.developer-credit {
    display: flex;
    align-items: center;
}
.credit-pill {
    background-color: rgba(61, 97, 251, 0.08);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(61, 97, 251, 0.1);
    transition: all 0.3s ease;
}
.credit-pill strong {
    color: var(--color-text-primary);
    font-weight: 700;
    margin-left: 2px;
}
.credit-pill .heart-icon {
    color: #ff4d4d;
    font-size: 1rem;
}
.credit-pill:hover {
    background-color: rgba(61, 97, 251, 0.15);
    transform: translateY(-2px);
}
.credit-pill:hover strong {
    text-decoration: underline;
}

/* ==========================================================================
   11. GLOBAL ANIMATIONS (USED BY JS)
========================================================================== */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.place-card.animate-in {
    animation: fadeInSlideUp 0.4s ease-out forwards;
}

/* ==========================================================================
   12. RESPONSIVE DESIGN
========================================================================== */

/* Tablet (992px) */
@media (max-width: 992px) {
    :root {
        --container-width: 920px;
    }

    /* Nav */
    .nav-menu-desktop {
        display: none;
    }
    .hamburger {
        display: block;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 4rem;
    }
    .booking-form {
        flex-wrap: wrap;
        padding: 1rem;
    }
    .form-group {
        flex-basis: 48%;
    }
    .form-group:nth-child(2) {
        border-right: none;
    }

    /* Places */
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About Us */
    .about-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem;
    }
    .about-text-box {
        width: 100%;
        text-align: left;
    }
    .about-image-wrapper {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
        height: 450px;
    }

    /* Testimonial */
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        max-width: 600px;
    }
    .testimonial-profile-img {
        right: 50%;
        bottom: -40px;
        transform: translateX(50%);
    }
    .testimonial-review {
        padding-left: 0;
        text-align: center;
    }
    .testimonial-stars {
        justify-content: center;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: repeat(6, 1fr);
    }
    .footer-col-logo {
        grid-column: span 6;
        text-align: center;
    }
    .footer-col-logo p {
        margin: 0 auto;
    }
    .footer-col:not(.footer-col-logo) {
        grid-column: span 2;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    :root {
        --navbar-height: 60px;
    }

    /* Nav Mobile Menu */
    .logo-img {
        height: 45px;
    }
    .hero-section {
        height: auto;
        padding-top: calc(var(--navbar-height) + 3rem);
        padding-bottom: 3rem;
    }
    .navbar {
        padding: 0 1rem;
    }
    .nav-menu-mobile {
        display: none;
        position: fixed;
        bottom: -100%;
        left: 1rem;
        right: 1rem;
        width: auto;
        background-color: var(--color-background);
        border-radius: 1.5rem;
        padding: 3rem 1.5rem 2rem 1.5rem;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        z-index: 9999;
        transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }
    .nav-menu-mobile.active {
        display: flex;
        bottom: 1rem;
    }
    .nav-item {
        width: 100%;
        text-align: center;
    }
    .nav-menu-mobile .nav-link {
        font-size: 1.2rem;
        color: var(--color-text-primary);
    }
    .close-menu-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        background-color: #f0f0f0;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10000;
    }
    .navbar .cta-button {
        display: none;
    }
    .nav-menu-mobile .cta-button {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    /* Hero */
    .hero-content {
        margin-bottom: 2rem;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .booking-form {
        flex-direction: column;
        gap: 0.5rem;
    }
    .form-group {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 0.5rem;
    }
    .form-submit-btn {
        width: 100%;
        border-radius: 1rem;
        height: 50px;
        margin-top: 0.5rem;
        gap: 0.5rem;
    }
    .submit-text {
        display: block;
        font-weight: 600;
    }
    .hero-bottom-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }
    .bottom-info-left h2 {
        font-size: 1.75rem;
    }

    /* Popular */
    .popular-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .popular-grid {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
        scroll-snap-type: x mandatory;
    }
    .popular-card {
        width: 80vw;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    .popular-card:nth-child(n + 5) {
        display: block;
    }
    .popular-show-more {
        display: none;
    }

    /* Places */
    .places-grid {
        grid-template-columns: 1fr;
    }
    .places-header h2 {
        font-size: 2rem;
    }
    .places-search input {
        padding: 0.9rem 1.2rem 0.9rem 3rem;
    }

    /* About Us */
    .about-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .about-header h2 {
        font-size: 2rem !important;
    }
    .about-features-list {
        gap: 1rem;
    }
    .feature-item {
        padding: 0;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .about-text-box .btn {
        display: block;
        width: 100%;
        text-align: center;
    }
    .about-image-wrapper {
        height: 380px;
        margin-top: 1rem;
    }
    .about-img-1 {
        width: 85%;
        height: 85%;
    }
    .about-img-2 {
        width: 60%;
        height: 55%;
        border-width: 5px;
    }
    .about-experience-badge {
        top: -15px;
        left: 5px;
        padding: 1rem 1.25rem;
    }
    .about-experience-badge h3 {
        font-size: 1.8rem;
    }

    /* Testimonial */
    .testimonial-header h2 {
        font-size: 2rem;
    }
    .testimonial-place-img {
        height: 400px;
    }
    .review-text {
        font-size: 1.25rem;
    }

    /* FAQ */
    .faq-header h2 {
        font-size: 2rem;
    }
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    /* Map */
    .map-wrapper {
        height: 350px;
    }
    .map-overlay-btn-container {
        bottom: 25px;
        width: 80%;
    }
    .map-overlay-btn-container .btn {
        display: block;
        width: 100%;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr !important;
        text-align: left;
        gap: 2.5rem;
    }
    .footer-col-logo,
    .footer-col:not(.footer-col-logo) {
        grid-column: span 1 !important;
    }
    .footer-col-logo {
        text-align: left;
        margin-bottom: 1rem;
    }
    .footer-logo-img {
        margin: 0;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .copyright-text {
        order: 2;
    }
    .developer-credit {
        order: 1;
        justify-content: center;
    }
}