/* --- VARIABLES & THEME --- */
:root {
    --header-height: 3.5rem;

    /* Colors - Light Theme Default */
    --hue: 220;
    --first-color: hsl(var(--hue), 60%, 45%);
    --first-color-alt: hsl(var(--hue), 60%, 40%);
    --title-color: hsl(var(--hue), 24%, 15%);
    --text-color: hsl(var(--hue), 10%, 35%);
    --text-color-light: hsl(var(--hue), 8%, 60%);
    --body-color: hsl(var(--hue), 60%, 98%);
    --container-color: #ffffff;
    --border-color: rgba(0, 0, 0, 0.05);

    --bg-orb: radial-gradient(circle at 10% 20%, rgba(68, 126, 235, 0.1) 0%, rgba(0, 0, 0, 0) 50%);

    /* Premium Accents */
    --gradient-gold: linear-gradient(135deg, hsl(45, 80%, 60%), hsl(35, 80%, 50%));
    --gradient-x: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    --gradient-x-alt: linear-gradient(135deg, var(--first-color-alt), var(--first-color));

    /* Fonts */
    --body-font: 'Outfit', sans-serif;
    --title-font: 'Playfair Display', serif;

    /* Font Sizes */
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;

    /* Font Weights */
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;

    /* Shadows & Glass */
    --shadow-default: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --blur: 12px;
}

[data-theme="dark"] {
    --title-color: hsl(var(--hue), 15%, 95%);
    --text-color: hsl(var(--hue), 8%, 75%);
    --text-color-light: hsl(var(--hue), 8%, 55%);
    --body-color: hsl(var(--hue), 20%, 8%);
    --container-color: hsl(var(--hue), 20%, 12%);
    --border-color: rgba(255, 255, 255, 0.05);

    --bg-orb: radial-gradient(circle at 90% 80%, rgba(68, 126, 235, 0.08) 0%, rgba(0, 0, 0, 0) 50%);
    --glass-bg: rgba(20, 20, 24, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.05);
    --shadow-default: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* --- RESET --- */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    transition: background-color 0.4s, color 0.4s;
    position: relative;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: var(--font-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: currentColor;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--body-font);
}

/* --- REUSABLE CSS CLASSES --- */
.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

.section {
    padding-block: 5rem 2rem;
}

.section-title {
    font-size: var(--h2-font-size);
    margin-bottom: 2rem;
    text-align: center;
}

.button {
    display: inline-block;
    background-color: var(--first-color);
    color: #fff;
    padding: 1rem 2rem;
    font-weight: var(--font-semi-bold);
    transition: .3s;
    border-radius: 1rem;
    /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.button:hover {
    background-color: var(--first-color-alt);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.nav-button {
    /* Specific overrides if needed, but defaults are good */
    font-size: 1.1rem;
}

/* --- BACKGROUND ORB --- */
.background-orb {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-orb);
    z-index: -1;
    pointer-events: none;
}

/* --- HEADER --- */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border-bottom: var(--glass-border);
    transition: 0.4s;
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--title-color);
}

.logo-accent {
    color: var(--first-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--title-color);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--first-color);
    transform: rotate(15deg);
}

.auth-logo {
    font-family: var(--title-font);
    font-size: 2rem;
    font-weight: var(--font-bold);
    color: var(--title-color);
    margin-bottom: 1rem;
    display: inline-block;
}


/* --- AUTH VISIBILITY & DROPDOWN --- */
.nav-favorites-link {
    display: none !important;
    /* Force hide legacy link if present */
}

/* Dropdown Container */
.auth-dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.auth-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 200px;
    background: var(--container-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-default);
    border-radius: 1rem;
    padding: 0.5rem;
    z-index: var(--z-fixed);
    margin-top: 0.5rem;
    overflow: hidden;
    transform-origin: top right;
    animation: fadeIn 0.3s ease;
}

.auth-dropdown-menu.active {
    display: block;
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    font-weight: 500;
    border-radius: 0.5rem;
    transition: 0.3s;
}

.dropdown-item:hover {
    background-color: var(--first-color-light);
    /* Needs definition or fallback */
    background-color: rgba(var(--hue), 60%, 45%, 0.1);
    /* Fallback using HSL var? No, raw rgba */
    color: var(--first-color);
}

.dropdown-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    font-size: 1.25rem;
    color: var(--title-color);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* Optional: circular touch target looks nice */
}

.theme-toggle:hover {
    color: var(--first-color);
    transform: rotate(15deg);
}

.nav-toggle {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10001;
    /* Above mobile menu */
    transition: 0.3s;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--title-color);
    transition: 0.4s;
    border-radius: 2px;
}

/* Animation to X */
.nav-toggle.show-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.show-icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.show-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-toggle:hover span {
    background: var(--first-color);
}

.nav-close {
    display: none;
}

/* --- HOME / HERO --- */
.home {
    padding-top: 6rem;
    /* Reduced from 9rem for mobile since search is now in flow */
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.home-container {
    display: grid;
    gap: 2rem;
    order: 1;
    /* Title First */
}

.home-title {
    font-size: var(--big-font-size);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.title-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.home-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 500px;
}

/* Search Box */
.search-box {
    order: 2;
    /* Search Second */
    background: var(--container-color);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-default);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    /* Full width of container */
    max-width: 450px;
    margin: 0 auto;
    /* Center it */
    border: var(--glass-border);
    position: relative;
    z-index: 5;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.search-item:last-of-type {
    border-bottom: none;
}

.search-item i {
    font-size: 1.25rem;
    color: var(--first-color);
}

.search-input-group label {
    display: block;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-bold);
    color: var(--title-color);
    margin-bottom: 0.25rem;
}

.search-input-group input {
    width: 100%;
    border: none;
    background: none;
    color: var(--text-color);
    font-size: var(--normal-font-size);
    outline: none;
}

.search-input-group input::placeholder {
    color: var(--text-color-light);
}

.btn-search {
    background: var(--first-color);
    color: #fff;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 1.25rem;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(68, 126, 235, 0.3);
}

.btn-search:hover {
    background: var(--first-color-alt);
    transform: translateY(-2px);
}

/* Home Images (Background Style for Mobile/Tablet) */
.home-images {
    display: block;
    /* Show on mobile now */
    position: absolute;
    top: 50%;
    /* Center vertically */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content */
    pointer-events: none;
    /* Let clicks pass through to text/buttons */
}

/* Individual Card Styling for Background */
.hero-card {
    position: absolute;
    width: 200px;
    /* Smaller for mobile */
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-default);
    opacity: 0.6;
    /* Semi-transparent */
    filter: blur(3px);
    /* Blur effect as requested */
}

.card-1 {
    top: 20%;
    right: 5%;
    transform: rotate(10deg);
}

.card-2 {
    bottom: 20%;
    left: 5%;
    transform: rotate(-10deg);
}

.hero-card img {
    height: 250px;
    object-fit: cover;
}

/* Hide card info on mobile background to reduce clutter */
.card-info {
    display: none;
}

/* Ensure Home Content sits on top */
.home-data {
    position: relative;
    z-index: 2;
    /* Above images */
}

/* --- DESTINATIONS --- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.view-all {
    font-size: var(--normal-font-size);
    color: var(--first-color);
    font-weight: var(--font-medium);
    transition: 0.3s;
}

.view-all:hover {
    padding-left: 5px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: var(--container-color);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-default);
    transition: 0.4s;
    border: 1px solid var(--border-color);
    position: relative;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.destination-card:hover .card-img {
    transform: scale(1.1);
}

.like-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0.5rem;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    transition: 0.3s;
}

.like-btn:hover {
    background: #fff;
    color: #ff4d4d;
}

/* --- DATE CONFIRMATION MODAL --- */
.date-modal {
    text-align: center;
    max-width: 450px;
    padding: 2rem;
    background: var(--container-color);
    border: 1px solid var(--border-color);
    /* Glassmorphism feel */
    backdrop-filter: blur(16px);
}

.modal-title {
    font-size: var(--h2-font-size);
    font-family: var(--second-font);
    color: var(--title-color);
    margin-bottom: 1.5rem;
}

.date-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.date-box {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.date-box .label {
    font-size: var(--smaller-font-size);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color-light);
}

.date-box .value {
    font-size: 1.1rem;
    font-weight: var(--font-semi-bold);
    color: var(--first-color);
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px dashed transparent;
}

.date-box .value:hover {
    color: var(--first-color-alt);
    border-bottom-color: var(--first-color-alt);
}

.date-arrow {
    background: var(--first-color);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(var(--first-color-rgb), 0.3);
}

.stay-duration {
    font-size: var(--normal-font-size);
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: var(--font-medium);
}

.stay-duration span {
    color: var(--title-color);
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    font-family: var(--second-font);
    margin: 0 0.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-actions button {
    flex: 1;
    padding: 1rem;
    border-radius: 3rem;
    /* Pill shape matches theme buttons */
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: 0.3s;
}

.btn-cancel {
    background: transparent;
    border: 1px solid var(--text-color-light);
    color: var(--text-color);
}

.btn-cancel:hover {
    border-color: var(--title-color);
    color: var(--title-color);
}

.btn-confirm {
    background: var(--first-color);
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(var(--first-color-rgb), 0.25);
}

.btn-confirm:hover {
    background: var(--first-color-alt);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(var(--first-color-rgb), 0.35);
}

.card-data {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-price {
    display: block;
    font-size: var(--h3-font-size);
    font-weight: var(--font-bold);
    color: var(--first-color);
    margin-bottom: 1rem;
}

.card-price small {
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
    font-weight: normal;
}

.card-metas {
    display: flex;
    gap: 1rem;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
}

.card-metas i {
    margin-right: 0.25rem;
}

.card-inclusions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.inclusion-item {
    font-size: 0.8rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--container-color);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.inclusion-item i {
    color: var(--first-color);
    font-size: 0.9rem;
}

.btn-book {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid var(--first-color);
    color: var(--first-color);
    border-radius: 0.75rem;
    font-weight: var(--font-medium);
    transition: 0.3s;
}

.btn-book:hover {
    background: var(--first-color);
    color: #fff;
}

/* --- NEWSLETTER --- */
.newsletter {
    margin-top: 3rem;
}

.newsletter-content {
    background: var(--first-color);
    padding: 3rem 2rem;
    border-radius: 2rem;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-content h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem;
    border-radius: 1rem;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(4px);
}

.newsletter-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.5rem 1rem;
    color: #fff;
    font-family: var(--body-font);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-subscribe {
    background: #fff;
    color: var(--first-color);
    padding: 0.8rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: var(--font-bold);
    transition: 0.3s;
}

.btn-subscribe:hover {
    transform: scale(1.05);
}

/* --- PAGE HEADER (Inner Pages) --- */
.page-header {
    padding-top: 10rem;
    /* More space for fixed header */
    padding-bottom: 5rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    /* Fixed background attachment for parallax feel */
    background-attachment: fixed;
    color: #fff;
    margin-bottom: 3rem;
    position: relative;
}

/* Ensure consistent section spacing adjustments */
.page-header .section-title {
    color: #fff;
    margin-bottom: 1rem;
}

/* --- ACTIVE NAV LINK --- */
.nav-link {
    position: relative;
    font-weight: var(--font-medium);
    transition: .3s;
}

.nav-link:hover {
    color: var(--first-color);
}

.nav-active,
/* legacy support if used */
.nav-link.active {
    color: var(--first-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40%;
    /* Stylish Short Underline */
    height: 2px;
    background: var(--first-color);
    border-radius: 2px;
}

/* --- PACKAGE SEARCH BAR --- */
.package-search-container {
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-inline: auto;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-field {
    background: var(--container-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-default);
    transition: 0.3s;
    flex: 1;
    min-width: 280px;
}

.btn-custom-package {
    background: linear-gradient(135deg, var(--first-color), #2a8c82);
    /* using a darker shade or just first-color */
    background: var(--first-color);
    color: #fff;
    padding: 0.85rem 1.5rem;
    border-radius: 1rem;
    font-weight: var(--font-semi-bold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-custom-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: #fff;
    background: var(--first-color-alt);
}

.search-field:focus-within {
    box-shadow: var(--shadow-hover);
    border-color: var(--first-color);
}

.search-field i {
    color: var(--first-color);
    font-size: 1.25rem;
}

.search-field input {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: var(--normal-font-size);
    outline: none;
}

/* --- SEARCH FILTER STATES --- */
.destination-card {
    transition: all 0.4s ease;
}

.destination-card.inactive {
    opacity: 0.3;
    transform: scale(0.9);
    filter: grayscale(80%);
    pointer-events: none;
}

.destination-card.active-card {
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.25);
}

/* --- FOOTER --- */
.footer {
    padding-block: 4rem 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--text-color-light);
}

.footer-links h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-color);
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--first-color);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-links a {
    font-size: 1.25rem;
    color: var(--text-color);
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--first-color);
    transform: translateY(-2px);
}

/* --- RESPONSIVENESS AND MEDIA QUERIES --- */

/* Mobile Navigation */
@media screen and (max-width: 767px) {
    .nav-menu {
        position: fixed;
        background-color: var(--container-color);
        top: 0;
        right: -100%;
        width: 75%;
        /* Reduced width (Drawer style) */
        height: 100vh;
        /* Full viewport height */
        padding: 6rem 2rem;
        /* Spacious padding */
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        /* Shadow on left side */
        transition: 0.4s ease-in-out;
        z-index: 10000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center Content Vertically */
        align-items: center;
        /* Center Content Horizontally */
        gap: 4rem;
        /* Space between list and button */
    }

    .show-menu {
        right: 0;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-link {
        color: var(--title-color);
        font-weight: var(--font-medium);
        font-size: 1.5rem;
        /* Bigger Fonts */
        transition: 0.3s;
    }

    .nav-button {
        display: inline-block;
        padding: 1rem 2rem;
        /* Big button */
        font-size: 1.25rem;
    }

    .nav-link:hover {
        color: var(--first-color);
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--title-color);
    }
}

/* Tablet / Desktop */
@media screen and (min-width: 768px) {
    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-list {
        display: flex;
        gap: 3rem;
    }

    .nav-button {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 3rem;
        /* Using global button styles or inheriting */
    }

    .nav-link {
        color: var(--title-color);
        font-weight: var(--font-medium);
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--first-color);
        transition: 0.3s;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .home {
        display: block;
        /* Reset flex column */
        padding-top: 14rem;
        /* Clear space for search bar */
    }

    .home-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 3rem;
    }

    .home-images {
        display: block;
    }

    .home-title {
        font-size: 4.5rem;
    }

    .home-description {
        font-size: 1.1rem;
    }

    /* Hero Cards Positioning - Tablet Specific */
    .home-images {
        display: block;
        position: relative;
        inset: auto;
        transform: none;
        width: 100%;
        height: 400px;
        /* Space for cards */
        pointer-events: auto;
        /* Enable interaction */
        z-index: 1;
    }

    .hero-card {
        width: 200px;
        /* Smaller than desktop */
        position: absolute;
        opacity: 1;
        filter: none;
        border: 4px solid var(--container-color);
        box-shadow: var(--shadow-default);
        border-radius: 1.5rem;
    }

    .card-1 {
        top: 2rem;
        right: 0;
        /* Anchored Right */
        transform: rotate(10deg);
        z-index: 1;
    }

    .card-2 {
        bottom: 2rem;
        right: 8rem;
        /* Overlapping Card 1 significantly */
        transform: rotate(-5deg);
        left: auto;
        z-index: 2;
    }

    .hero-card img {
        height: 250px;
        object-fit: cover;
    }

    /* Restore Search Bar positioning logic if it was here, but ensuring this block is valid */
    .search-box {
        position: absolute;
        top: 6rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        /* Responsive width */
        max-width: 1000px;
        /* Cap width */
        z-index: 10;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);

        /* Flex row for horizontal layout */
        flex-direction: row;
        align-items: center;
        padding: 0.75rem 0.75rem 0.75rem 2rem;
    }

    [data-theme="dark"] .search-box {
        background: rgba(20, 20, 24, 0.9);
    }

    .search-item {
        border-bottom: none;
        padding-bottom: 0;
        border-right: 1px solid var(--border-color);
        padding-right: 1.5rem;
        width: 100%;
    }

    .search-item:last-of-type {
        border-right: none;
    }
}

@media screen and (min-width: 1040px) {
    .container {
        max-width: 1400px;
        /* Wider container */
        margin-inline: auto;
        padding-inline: 3rem;
        /* Increased side padding */
    }

    .home-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 1rem;
        /* Much tighter gap */
    }


    /* Hero Cards Positioning - Desktop Restore */
    .home-images {
        position: relative;
        inset: auto;
        width: auto;
        height: 600px;
        transform: none;
        z-index: 1;
        pointer-events: auto;
    }

    .hero-card {
        position: absolute;
        width: 300px;
        /* Increased Size */
        opacity: 1;
        filter: none;
        border: 4px solid var(--container-color);
        box-shadow: var(--shadow-default);
        border-radius: 1.5rem;
    }

    .card-1 {
        top: -2rem;
        /* Slight overlap upward */
        right: 0;
        transform: rotate(6deg);
        z-index: 1;
    }

    .card-2 {
        bottom: -2rem;
        /* Slight overlap downward */
        right: 16rem;
        /* Pushed further left towards text */
        transform: rotate(-6deg);
        left: auto;
        z-index: 2;
    }

    .hero-card img {
        height: 400px;
        /* Taller images */
        object-fit: cover;
    }

    .card-info {
        display: flex;
        /* Show info again */
        position: absolute;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        background: var(--glass-bg);
        backdrop-filter: blur(8px);
        padding: 0.75rem;
        border-radius: 1rem;
        justify-content: space-between;
        align-items: center;
        font-weight: var(--font-medium);
    }

    .card-info span {
        color: var(--title-color);
    }

    .rating {
        display: flex;
        gap: 0.25rem;
        align-items: center;
        font-size: var(--small-font-size);
    }

    .rating i {
        color: rgb(255, 187, 0);
    }
}

/* --- MODAL --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.modal-content {
    background: var(--container-color);
    padding: 2.5rem;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 450px;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(20px);
    transition: 0.3s;
}

.modal.active-modal {
    opacity: 1;
    visibility: visible;
}

.modal.active-modal .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-color-light);
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--first-color);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.25rem;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-color-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.modal-subtitle span {
    color: var(--first-color);
    font-weight: var(--font-bold);
}

/* --- GUEST COUNTER --- */
.guest-counter {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Further increased spacing */
    padding: 0.25rem 0;
}

.guest-counter input {
    width: 90px;

    /* Increased to fit "Guests" text comfortably */
    padding: 0;
    font-family: var(--body-font);
}

/* --- GUEST DROPDOWN (Root Level) --- */
.guest-trigger {
    position: relative;
    width: 100%;
}

#guest-input {
    cursor: pointer;
}

.guest-dropdown {
    position: absolute;
    top: 130%;
    /* Below input */
    left: 0;
    width: 280px;
    background: rgba(255, 255, 255, 0.9);
    /* High opacity for legibility */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    border-radius: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.6);
    /* Subtle border */
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-theme="dark"] .guest-dropdown {
    background: rgba(30, 30, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.guest-dropdown.active {
    display: flex;
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guest-label {
    font-weight: var(--font-medium);
    color: var(--title-color);
    font-size: 1.05rem;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guest-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: var(--title-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.guest-btn:hover {
    background: var(--first-color);
    color: #fff;
    border-color: var(--first-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--first-color-rgb), 0.3);
}

#adult-count,
#kid-count {
    font-weight: var(--font-bold);
    width: 20px;
    text-align: center;
    color: var(--title-color);
}

[data-theme="dark"] .guest-btn {
    border-color: var(--text-color-light);
}

[data-theme="dark"] .guest-btn:hover {
    border-color: var(--first-color);
}


.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-group label {
    display: block;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    margin-bottom: 0.5rem;
    color: var(--title-color);
}

.input-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--body-color);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-color);
    outline: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--first-color);
}

/* Phone Wrapper Styling */
.phone-wrapper {
    display: flex;
    gap: 0.75rem;
}

.country-search-wrapper {
    position: relative;
    width: 120px;
    flex-shrink: 0;
}

#country-search {
    width: 100%;
    /* Replicates select style */
    padding: 0.75rem 0.5rem;
    background: var(--body-color);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-color);
    outline: none;
    transition: 0.3s;
    cursor: text;
    font-size: 0.95rem;
}

#country-list {
    width: 260px;
    /* Wider to accommodate names */
    max-height: 220px;
    /* Scrollable */
}

.phone-input {
    flex-grow: 1;
}

.row {
    display: flex;
    gap: 1rem;
}

.btn-book-confirm {
    background: var(--first-color);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: var(--font-semi-bold);
    margin-top: 1rem;
    transition: 0.3s;
}

.btn-book-confirm:hover {
    background: var(--first-color-alt);
    box-shadow: 0 4px 12px rgba(var(--first-color), 0.3);
}

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: var(--container-color);
    color: var(--title-color);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-hover);
    border-left: 4px solid var(--first-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
    min-width: 250px;
}

.toast i {
    font-size: 1.25rem;
    color: var(--first-color);
}

.toast.success {
    border-left-color: #00b894;
}

.toast.success i {
    color: #00b894;
}

.toast.error {
    border-left-color: #d63031;
}

.toast.error i {
    color: #d63031;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        pointer-events: none;
    }
}

/* --- AUTOCOMPLETE SUGGESTIONS --- */
.search-input-group {
    position: relative;
    /* width: 100%; - This is likely already handled by flex/grid parents, but relative is key */
}

.suggestions-list {
    position: absolute;
    /* This pulls it out of the document flow */
    top: 100%;
    /* Positions it directly below the input */
    left: 0;
    width: 250px;
    background: var(--container-color);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-hover);
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 2000;
    /* High Z-Index to sit on top of everything */
    display: none;
}

.suggestions-list.active {
    display: block;
}

.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: 0.2s;
    border-bottom: 1px solid var(--border-color);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--body-color);
    color: var(--first-color);
}

.suggestion-item i {
    color: var(--text-color-light);
    font-size: 0.9rem;
}

.suggestion-item:hover i {
    color: var(--first-color);
}

.suggestion-text {
    display: flex;
    flex-direction: column;
}

.suggestion-main {
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
}

.suggestion-sub {
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
}

/* Scrollbar for suggestions */
.suggestions-list::-webkit-scrollbar {
    width: 6px;
}

.suggestions-list::-webkit-scrollbar-thumb {
    background: var(--text-color-light);
    border-radius: 3rem;
}

.suggestions-list::-webkit-scrollbar-track {
    background: transparent;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
    color: #fff;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: #fff;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* --- HERO CARD HOVER EFFECTS (Desktop) --- */
@media screen and (min-width: 768px) {
    .hero-card {
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    /* Card 1: Rotated 10deg. Hover moves up and scales. */
    .card-1:hover {
        transform: rotate(10deg) translateY(-10px) scale(1.02);
        z-index: 10;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    }

    /* Card 2: Rotated -5deg or -10deg (check original, usually -5deg in desktop). Hover moves up and scales. */
    .card-2:hover {
        transform: rotate(-5deg) translateY(-10px) scale(1.02);
        z-index: 10;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    }
}

/* --- VIEW ALL PACKAGES BUTTON --- */
.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-bottom: 2rem;
    width: 100%;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--first-color);
    border: 2px solid var(--first-color);
    border-radius: 3rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-semi-bold);
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--first-color);
    z-index: -1;
    transition: 0.3s;
}

.btn-secondary:hover {
    color: #fff;
    /* White text on hover */
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover::after {
    width: 100%;
}

/* --- SWEETALERT2 CUSTOMIZATION (Glassmorphism Match) --- */
div:where(.swal2-container) div:where(.swal2-popup) {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    font-family: var(--body-font);
}

[data-theme="dark"] div:where(.swal2-container) div:where(.swal2-popup) {
    background: rgba(30, 30, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

div:where(.swal2-container) h2:where(.swal2-title) {
    font-family: var(--title-font);
    color: var(--title-color);
    font-size: var(--h2-font-size);
}

div:where(.swal2-container) div:where(.swal2-html-container) {
    color: var(--text-color);
    font-size: var(--normal-font-size);
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    background-color: var(--first-color) !important;
    border-radius: 3rem;
    padding: 1rem 2rem;
    font-weight: var(--font-semi-bold);
    box-shadow: 0 4px 12px rgba(68, 126, 235, 0.3);
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
    background-color: transparent !important;
    color: var(--text-color) !important;
    border: 1px solid var(--border-color);
    border-radius: 3rem;
    padding: 1rem 2rem;
    font-weight: var(--font-medium);
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel:hover {
    background-color: var(--border-color) !important;
}

/* --- SEARCH SUGGESTION ICONS --- */
.suggestion-item i {
    margin-right: 10px;
    color: var(--first-color);
    width: 20px;
    text-align: center;
}

/* --- FORCE FONT INHERITANCE --- */
input,
button,
textarea,
select {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

/* --- NO SCROLLBAR (Requested) --- */
::-webkit-scrollbar {
    display: none;
    width: 0;
}

/* --- AUTH DROPDOWN (Static Structure) --- */
.auth-dropdown {
    position: relative;
    display: inline-block;
}

.auth-btn-static {
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 0.5rem 0.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: var(--font-medium);
    width: 180px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auth-btn-static:hover {
    background: var(--text-color);
    color: var(--body-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.auth-dropdown-menu {
    position: absolute;
    top: 120%;
    /* Slight offset from button */
    right: 0;
    background: var(--container-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    padding: 0.75rem 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

/* Glassmorphism check for dark mode */
[data-theme="dark"] .auth-dropdown-menu {
    background: rgba(30, 30, 35, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.auth-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    top: 110%;
}

.auth-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--title-color);
    font-size: 0.95rem;
    transition: 0.2s;
    text-decoration: none;
    position: relative;
}

.auth-dropdown-item:hover {
    background: var(--body-color);
    color: var(--first-color);
    padding-left: 1.75rem;
}

.auth-dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--first-color);
    font-size: 1rem;
}


/* Auth Toggle Logic */
.auth-text-account {
    display: none;
}

body.logged-in .auth-text-login {
    display: none;
}

body.logged-in .auth-text-account {
    display: inline;
}

/* SweetAlert Customization */
div:where(.swal2-container) input:where(.swal2-input) {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--title-color) !important;
    border: 1px solid var(--border-color) !important;
}

/* --- FLOATING WHATSAPP ICON --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    /* Initial State for Drift */
    transform: translateY(100px);
    opacity: 0;
}

.whatsapp-float.float-visible {
    transform: translateY(0);
    opacity: 1;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Mobile Adjustment */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 20px;
        font-size: 28px;
    }
}

/* --- GALLERY NAVIGATION --- */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    /* Hidden by default if single image */
    visibility: hidden;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.visible {
    opacity: 1;
    visibility: visible;
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

/* Touch feedback for buttons */
.gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
    background: rgba(255, 255, 255, 0.5);
}