@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #1a49c6; /* Elegant BEYOND/Novita Blue */
    --primary-hover: #11369d;
    --primary-light: #eff3ff;
    --dark-blue: #0b1a30;
    --text-color: #2d3748;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --card-bg: #ffffff;
    --success-color: #10b981; /* Green for checked in */
    --warning-color: #f59e0b; /* Yellow for due in */
    --info-color: #3b82f6; /* Blue for confirmed */
    --danger-color: #ef4444;
    --border-color: #edf2f7;
    
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans);
}

body {
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   HOMEPAGE (BEYOND HOTEL STYLE)
   ========================================== */

.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    min-height: 90vh;
    color: #ffffff;
    position: relative;
    padding: 2rem 4rem 6rem 4rem;
    border-bottom-left-radius: 4rem;
    border-bottom-right-radius: 4rem;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: #f59e0b;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-login {
    color: #ffffff;
    font-weight: 500;
}

.btn-signup {
    background-color: #f97316;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-signup:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-sans);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 500px;
}

.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.stars {
    color: #10b981;
}

.hero-img-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-img-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 1.5rem;
    width: 85%;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.hero-img-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1.5rem;
}

/* Booking Search Panel */
.search-container {
    max-width: 1000px;
    margin: -3rem auto 0 auto;
    background: #ffffff;
    border-radius: 2rem;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 60px;
    gap: 1.5rem;
    align-items: center;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.search-field label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field input, .search-field select {
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-blue);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s;
}

.search-field input:focus, .search-field select:focus {
    border-bottom: 2px solid var(--primary-color);
}

.search-btn {
    background-color: #f97316;
    color: white;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.search-btn:hover {
    background-color: #ea580c;
    transform: scale(1.05);
}

/* Why Choose Section */
.features-section {
    padding: 6rem 4rem;
    text-align: center;
}

.section-tag {
    color: #f97316;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 3rem;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.icon-blue { background-color: #eff3ff; color: #1a49c6; }
.icon-orange { background-color: #fffaf0; color: #f97316; }
.icon-green { background-color: #e6fffa; color: #319795; }

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Nearby Attractions Section */
.attractions-section {
    padding: 6rem 4rem;
    background-color: #f0f4f8;
}

.attractions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.slider-controls {
    display: flex;
    gap: 1rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #cbd5e0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

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

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.attraction-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.attraction-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.attraction-card:hover .attraction-img img {
    transform: scale(1.1);
}

.attraction-info {
    padding: 1.25rem;
}

.attraction-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.attraction-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Guest Testimonials */
.testimonials-section {
    padding: 6rem 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h5 {
    font-weight: 700;
    color: var(--dark-blue);
}

.testimonial-user span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Clicks around Hotels */
.clicks-section {
    padding: 6rem 4rem;
    background-color: #f7fafc;
}

.clicks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}

.click-item {
    height: 200px;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.click-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.click-item:hover img {
    transform: scale(1.08);
}

.click-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.click-item:hover .click-overlay {
    opacity: 1;
}

/* FAQ & Custom Form */
.faq-section {
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.contact-form-container {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    border: 1px solid #cbd5e0;
    border-radius: 0.5rem;
    padding: 0.75rem;
    outline: none;
    font-family: var(--font-sans);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

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

/* Brands row */
.brands-row {
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-top: 1px solid var(--border-color);
}

.brand-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: #a0aec0;
}

/* Footer styling */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 4rem 2rem 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h5 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-subscribe h5 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.subscribe-group {
    display: flex;
    border: 1px solid #334155;
    border-radius: 9999px;
    overflow: hidden;
    background: #1e293b;
    padding: 0.25rem;
}

.subscribe-group input {
    background: transparent;
    border: none;
    outline: none;
    padding: 0.5rem 1rem;
    color: white;
    flex: 1;
    font-size: 0.85rem;
}

.subscribe-group button {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 0.85rem;
}


/* ==========================================
   DASHBOARD VIEW (FILLLO STYLE)
   ========================================== */

.dashboard-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

/* Sidebar Dashboard */
.sidebar {
    background-color: #ffffff;
    border-right: 1px solid var(--border-color);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    position: sticky;
    top: 0;
}

.sidebar-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.admin-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: 0.75rem;
}

.admin-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.admin-info h5 {
    font-size: 0.9rem;
    font-weight: 700;
}

.admin-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.menu-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-group-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a5568;
    transition: background 0.2s, color 0.2s;
}

.menu-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
}

.menu-item.active {
    background: var(--primary-light);
    color: var(--primary-color);
    font-weight: 600;
}

.menu-item i {
    font-size: 1rem;
    width: 20px;
}

.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Dashboard Main Content */
.dashboard-main {
    display: flex;
    flex-direction: column;
    background: #fcfdfe;
}

/* Dashboard Header */
.dashboard-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-bar-container {
    position: relative;
    width: 300px;
}

.search-bar-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-bar-input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    outline: none;
    font-size: 0.9rem;
}

.search-bar-input:focus {
    border-color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.icon-btn .badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--danger-color);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.user-nav-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.user-nav-profile img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.user-nav-profile span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Dashboard Body Content */
.dashboard-content {
    padding: 2rem;
}

.content-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.content-title-row h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.btn-add-booking {
    background: var(--success-color);
    color: white;
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s;
}

.btn-add-booking:hover {
    opacity: 0.9;
}

/* Dashboard Filter Bar */
.filter-bar {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filter-input-group {
    position: relative;
    flex: 1;
}

.filter-input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.filter-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.25rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    outline: none;
}

.filter-select {
    padding: 0.5rem 1.5rem 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    min-width: 130px;
    background-color: white;
}

.filter-select:focus, .filter-input:focus {
    border-color: var(--primary-color);
}

/* Table Card Container */
.table-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.data-table th {
    background: #fafbfe;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
}

.data-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: #4a5568;
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: #fafbfe;
}

/* Status Badges */
.badge-status {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.badge-confirmed {
    background-color: #ebf8ff;
    color: #2b6cb0;
}

.badge-checkedin {
    background-color: #e6fffa;
    color: #234e52;
}

.badge-duein {
    background-color: #fffaf0;
    color: #dd6b20;
}

.badge-checkedout {
    background-color: #f7fafc;
    color: #4a5568;
}

/* Booking sources styling */
.source-icon {
    font-weight: 700;
}
.source-booking { color: #003580; font-family: 'Outfit', sans-serif; font-weight: 800; }
.source-expedia { color: #002244; font-weight: 700; }
.source-airbnb { color: #ff5a5f; font-weight: 700; }

/* Table Icons */
.icon-success-circle {
    color: var(--success-color);
    font-size: 1.1rem;
}

.icon-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.icon-action-btn:hover {
    color: var(--text-color);
}

/* Pagination Row */
.table-footer {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    background: white;
}

.pagination-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pagination-buttons {
    display: flex;
    gap: 0.5rem;
}

.pag-btn {
    width: 32px;
    height: 32px;
    border-radius: 0.375rem;
    border: 1px solid var(--border-color);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
}

.pag-btn:hover {
    background: var(--bg-light);
}

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

/* Modal styling */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: white;
    border-radius: 1.5rem;
    width: 500px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-backdrop.active .modal-card {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.65rem 0.75rem;
    outline: none;
    font-size: 0.9rem;
    font-family: var(--font-sans);
}

.form-control:focus {
    border-color: var(--primary-color);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    transition: opacity 0.2s;
}

.btn-submit:hover { opacity: 0.9; }

/* Modal display flex override (used by walk-in modal via inline style) */
.modal-backdrop[style*="display: flex"],
.modal-backdrop[style*="display:flex"] {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop[style*="display: flex"] .modal-card,
.modal-backdrop[style*="display:flex"] .modal-card {
    transform: scale(1);
}

/* Section header in property & dashboard */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.section-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
}

/* Sidebar group title */
.menu-group-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    padding: 0.75rem 1rem 0.25rem;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Mobile hamburger menu button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    border-radius: 0.5rem;
    transition: background 0.3s;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 992px) {
    .hero-section {
        padding: 1.5rem 2rem 5rem 2rem;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2rem;
        text-align: center;
    }

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

    .hero-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .trustpilot-badge {
        justify-content: center;
    }

    .hero-img-container {
        justify-content: center;
    }

    .hero-img-card {
        width: 100% !important;
    }

    .search-container {
        margin: -2.5rem 1.5rem 0 1.5rem;
        padding: 1.5rem;
    }

    .search-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .search-btn {
        grid-column: span 2;
        width: 100%;
        height: 48px;
    }

    .features-section, .attractions-section, .explore-section, .testimonials-section, .clicks-section, .faq-section {
        padding: 4rem 2rem;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .faq-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .navbar {
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 26, 48, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
        gap: 1.25rem;
        border-radius: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        display: none;
        z-index: 50;
        margin-top: 0.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-section {
        padding: 1rem 1.25rem 4rem 1.25rem;
        border-bottom-left-radius: 2.5rem;
        border-bottom-right-radius: 2.5rem;
    }

    .hero-text h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

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

    .search-container {
        margin: -2rem 1rem 0 1rem;
        padding: 1.25rem;
        border-radius: 1.5rem;
    }

    .search-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .search-btn {
        grid-column: 1;
        width: 100%;
        height: 50px;
        border-radius: 0.75rem;
    }

    .explore-section {
        padding: 3rem 1rem;
    }

    .explore-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .explore-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        margin-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
    }

    .explore-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-section {
        padding: 3.5rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .attractions-section {
        padding: 3.5rem 1rem;
    }

    .attractions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .clicks-section {
        padding: 3.5rem 1rem;
    }

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

    .faq-section {
        padding: 3.5rem 1rem;
    }

    .brands-row {
        padding: 2rem 1rem;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .footer {
        padding: 3rem 1.25rem 1.5rem 1.25rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

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

    .logo {
        font-size: 1.5rem;
    }

    .btn-signup {
        padding: 0.55rem 1.15rem;
        font-size: 0.85rem;
    }
}

