/* JTverga SEA VIEW HOMES - Main Stylesheet */
/* Beach Theme: Sea Blue, White, Sand */

/* ============================================
   CSS Variables & Root Styles
   ============================================ */
:root {
    /* Primary Colors - Beach Theme */
    --sea-deep: #1a5f7a;
    --sea-medium: #2d8bba;
    --sea-light: #57c5b6;
    --sea-pale: #e8f4f8;

    /* Accent Colors */
    --sand: #f5e6d3;
    --sand-dark: #d4b896;
    --coral: #ff7f50;
    --coral-dark: #e56b3e;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #fafafa;
    --gray-light: #f0f0f0;
    --gray-medium: #888888;
    --gray-dark: #333333;
    --black: #1a1a1a;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--sea-deep);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   Layout Components
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--sea-light), var(--sea-medium));
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-left: -2.5cm;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sea-deep);
    white-space: nowrap;
}

.logo-text .logo-jt {
    font-size: 132%;
    color: var(--sea-deep);
}

.logo-text span {
    color: var(--sea-medium);
}

.logo-text .logo-homes {
    color: #27ae60;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-dark);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--sea-medium);
    background: var(--sea-pale);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    margin-left: var(--spacing-sm);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--sea-pale);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--sea-deep);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    background: var(--sea-light);
    color: var(--white);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    min-width: 120px;
}

.lang-switcher:hover .lang-dropdown,
.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    color: var(--gray-dark);
    transition: all var(--transition-fast);
}

.lang-option:hover {
    background: var(--sea-pale);
    color: var(--sea-medium);
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.lang-btn .flag-icon {
    width: 18px;
    height: 12px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gray-dark);
    transition: all var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sea-deep) 0%, var(--sea-medium) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7), 0 0 15px rgba(0,0,0,0.4);
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    opacity: 0.9;
}

.hero-location svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.4);
}

.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--sea-deep);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--sea-pale);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--sea-deep);
}

/* ============================================
   Cards
   ============================================ */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: var(--coral);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.card-content {
    padding: var(--spacing-md);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
}

.card-text {
    color: var(--gray-medium);
    margin-bottom: var(--spacing-sm);
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--sea-pale);
    color: var(--sea-deep);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

/* ============================================
   Accommodations Grid
   ============================================ */
.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.room-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--gray-light);
    margin-top: var(--spacing-sm);
}

.room-detail {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.room-detail svg {
    width: 18px;
    height: 18px;
    color: var(--sea-medium);
}

/* ============================================
   Services Section
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sea-light), var(--sea-medium));
    border-radius: 50%;
    color: var(--white);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-title {
    margin-bottom: var(--spacing-sm);
}

.service-text {
    color: var(--gray-medium);
}

/* ============================================
   Gallery
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gray-light);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--sea-medium);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-sm);
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 95, 122, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
    background: rgba(26, 95, 122, 0.5);
}

.gallery-item-overlay svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    opacity: 0;
    transform: scale(0.5);
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay svg {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--coral);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    padding: var(--spacing-md);
    transition: color var(--transition-fast);
}

.lightbox-nav:hover {
    color: var(--coral);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* ============================================
   Blog
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-meta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    color: var(--gray-medium);
    font-size: 0.85rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.blog-title a:hover {
    color: var(--sea-medium);
}

.blog-excerpt {
    color: var(--gray-medium);
    margin-bottom: var(--spacing-sm);
}

.blog-link {
    color: var(--sea-medium);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-link:hover {
    color: var(--coral);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sea-pale);
    border-radius: var(--radius-md);
    color: var(--sea-medium);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-details p,
.contact-details a {
    color: var(--gray-medium);
}

.contact-details a:hover {
    color: var(--sea-medium);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--gray-dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--sea-medium);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   Map Section
   ============================================ */
.map-container {
    margin-top: var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   Booking Widget
   ============================================ */
.booking-section {
    background: linear-gradient(135deg, var(--sea-pale), var(--sand));
    padding: var(--spacing-xl) 0;
}

.booking-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.booking-placeholder {
    padding: var(--spacing-lg);
    background: var(--gray-light);
    border-radius: var(--radius-md);
    color: var(--gray-medium);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--sea-deep);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

.footer-brand .logo-text .logo-jt {
    color: var(--white);
}

.footer-brand .logo-text span {
    color: var(--sea-light);
}

.footer-brand .logo-text .logo-homes {
    color: #2ecc71;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-primary);
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--sea-light);
    padding-left: 5px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--sea-light);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link.has-label {
    width: auto;
    padding: 8px 14px;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.social-link.has-label svg {
    width: 18px;
    height: 18px;
}

.social-link.facebook-link {
    background: #1877F2;
}

.social-link.facebook-link:hover {
    background: #1466d2;
}

.social-link.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram-link:hover {
    background: linear-gradient(45deg, #d98330 0%, #cc5c35 25%, #c4223c 50%, #b61f5b 75%, #a8157a 100%);
}

.social-link.airbnb-link {
    background: #FF5A5F;
}

.social-link.airbnb-link:hover {
    background: #e54950;
}

.social-link.booking-link {
    background: #003580;
}

.social-link.booking-link:hover {
    background: #002a66;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--sea-deep) 0%, var(--sea-medium) 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-title {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.page-subtitle {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* ============================================
   Features Section (Homepage)
   ============================================ */
.features {
    background: var(--sea-pale);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--sea-medium);
    box-shadow: var(--shadow-sm);
}

.feature-icon svg {
    width: 35px;
    height: 35px;
}

.feature-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.feature-text {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--white);
}

.cta-title {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

/* ============================================
   Utilities
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.hidden { display: none; }
.visible { display: block; }

/* Wave Decoration */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill {
    fill: var(--white);
}

/* Scroll to top button */
/* Airbnb Floating Button */
.airbnb-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #FF5A5F;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.4);
    transition: all var(--transition-normal);
    z-index: 999;
}

.airbnb-button:hover {
    background: #E04E52;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 90, 95, 0.5);
    color: white;
}

.airbnb-button svg {
    flex-shrink: 0;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--sea-medium);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--sea-deep);
    transform: translateY(-3px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Booking Modal
   ============================================ */
.booking-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.booking-modal-overlay.active {
    display: flex;
}

.booking-modal {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.booking-modal-title {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--sea-deep);
    margin-bottom: 1.5rem;
}

.booking-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-medium);
    line-height: 1;
    padding: 0.25rem;
}

.booking-modal-close:hover {
    color: var(--gray-dark);
}

.booking-modal-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.booking-modal-option {
    display: block;
    padding: 0.9rem 1.2rem;
    background: var(--sea-pale);
    color: var(--sea-deep);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.booking-modal-option:hover {
    background: var(--sea-medium);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.airbnb-option {
    background: #fff0f0;
    color: #FF5A5F;
}

.airbnb-option:hover {
    background: #FF5A5F;
    color: var(--white);
}
