/* Mediterranean Luxury Design System */
:root {
    /* Colors - HSL Values */
    --background: hsl(42, 100%, 98%);
    --foreground: hsl(25, 25%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(25, 25%, 15%);
    --primary: hsl(15, 75%, 55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(15, 85%, 65%);
    --secondary: hsl(95, 25%, 45%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --accent: hsl(42, 85%, 92%);
    --accent-foreground: hsl(25, 25%, 15%);
    --muted: hsl(42, 30%, 90%);
    --muted-foreground: hsl(25, 15%, 45%);
    --navy: hsl(215, 85%, 25%);
    --navy-foreground: hsl(0, 0%, 98%);
    --border: hsl(42, 20%, 85%);
    
    /* Design Tokens */
    --radius: 12px;
    --font-heading: 'Inter', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-luxury: 0 25px 50px -12px hsla(15, 75%, 55%, 0.15);
    --shadow-card: 0 4px 20px hsla(25, 25%, 15%, 0.08);
    --shadow-button: 0 8px 25px hsla(15, 75%, 55%, 0.3);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed header on desktop */
}

/* Override body padding on mobile */
@media (max-width: 768px) {
    body {
        padding-top: 0 !important; /* Override desktop padding */
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff; /* λευκό background */
    color: #E4663D;      /* χρώμα γραμμάτων */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsla(0, 0%, 98%, 0.15);
    transition: var(--transition-smooth);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition-smooth);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #E4663D;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #E4663D;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: #E4663D;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.lang-link {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.lang-link:hover {
    background: var(--primary-glow);
    color: var(--primary-foreground);
}

.lang-link::after {
    display: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.section-title-smaller {
    font-size: 2.25rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    min-width: 140px;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-button);
    font-size: 1.125rem;
    padding: 1rem 2rem;
    min-width: 200px;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px hsla(15, 75%, 55%, 0.4);
}

.btn-outline-light {
    background: hsla(0, 0%, 100%, 0.1);
    color: white;
    border: 2px solid hsla(0, 0%, 100%, 0.2);
    backdrop-filter: blur(10px);
    font-size: 1.125rem;
    padding: 1rem 2rem;
    min-width: 200px;
}

.btn-outline-light:hover {
    background: hsla(0, 0%, 100%, 0.2);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    background: var(--primary-glow);
    transform: translateY(-2px);
}

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

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

.btn-outline-small {
    background: transparent;
    color: var(--navy-foreground);
    border: 1px solid hsla(0, 0%, 98%, 0.3);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-width: auto;
}

.btn-outline-small:hover {
    background: hsla(0, 0%, 98%, 0.1);
}

.btn-full {
    width: 100%;
}

/* Badges */
.badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('./images/polixnitos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, hsla(25, 25%, 15%, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-glow);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid hsla(0, 0%, 100%, 0.5);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: hsla(0, 0%, 100%, 0.7);
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

/* Property Highlights */
.highlights-section {
    padding: 5rem 0;
    background: var(--background);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: var(--transition-smooth);
}

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

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.highlight-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: hsla(42, 85%, 92%, 0.3);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    background: var(--card);
    color: var(--muted-foreground);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-button);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

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

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-luxury);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, hsla(25, 25%, 15%, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-overlay h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Booking Section */
.booking-section {
    padding: 5rem 0;
    background: var(--background);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.booking-info {
    padding: 2rem 0;
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    box-shadow: var(--shadow-luxury);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.price-unit {
    font-size: 1.125rem;
    opacity: 0.8;
    font-weight: 500;
}

.pricing-note {
    opacity: 0.9;
    font-size: 0.875rem;
    margin: 0;
}

.booking-benefits {
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.benefit p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.booking-form-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-luxury);
    position: sticky;
    top: 2rem;
}

.booking-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--background);
    color: var(--foreground);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(15, 75%, 55%, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 1rem;
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: hsla(42, 85%, 92%, 0.3);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info {
    padding: 2rem 0;
}

.location-highlight {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.location-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.location-highlight p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.location-nearby {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.location-nearby h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.nearby-list {
    margin-bottom: 2rem;
}

.nearby-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.nearby-item:last-child {
    border-bottom: none;
}

.nearby-distance {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

.nearby-name {
    color: var(--foreground);
}

.location-map {
    position: sticky;
    top: 2rem;
}

.map-placeholder {
    background: var(--card);
    aspect-ratio: 1;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    color: var(--muted-foreground);
}

/* Host Section */
.host-section {
    padding: 5rem 0;
    background: var(--background);
}

.host-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.host-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.host-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.host-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.host-stat {
    text-align: center;
}

.host-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.host-stat .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.host-languages {
    margin-bottom: 2rem;
}

.host-languages h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.language-tag {
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--navy-foreground);
    padding: 4rem 0 2rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: hsla(0, 0%, 98%, 0.8);
    margin-bottom: 1.5rem;
    max-width: 24rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: hsla(0, 0%, 98%, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--navy-foreground);
}

.contact-info p {
    color: hsla(0, 0%, 98%, 0.8);
    margin-bottom: 0.75rem;
}

.response-time {
    font-size: 0.875rem;
    padding-top: 0.5rem;
    border-top: 1px solid hsla(0, 0%, 98%, 0.2);
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 98%, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: hsla(0, 0%, 98%, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: hsla(0, 0%, 98%, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--navy-foreground);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

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

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

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    background: var(--primary);
}

/* Fix for PC mode lightbox - ensure proper sizing and positioning */
@media (min-width: 769px) {
    .lightbox {
        padding: 2rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-content img {
        max-width: 100%;
        max-height: 90vh; /* Limit height to 90% of viewport height */
        width: auto;
        height: auto;
    }
}

/* Prevent scrolling when lightbox is open */
body.overflow-hidden {
    overflow: hidden;
}

/* Ensure lightbox close button is always visible */
.lightbox-close {
    position: fixed; /* Changed from absolute to fixed */
    top: 1rem;
    right: 1rem;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        /* Ensure header has proper background */
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.75rem 0; /* Reduce header padding */
    }

    .logo-text {
        display: none; /* Save space on small screens */
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding-top: 0.5rem; /* Add spacing when nav wraps */
    }

    .nav-link {
        padding: 0.375rem 0.75rem; /* Smaller padding */
        font-size: 0.875rem; /* Smaller font */
        border-radius: 9999px;
        background: rgba(228, 102, 61, 0.08);
        color: #E4663D;
        margin: 0.125rem;
    }

    body {
        padding-top: 0; /* Remove body padding completely */
    }

    .hero-section {
        min-height: 100vh;
        padding-top: 20vh; /* Use viewport height instead of fixed pixels */
        display: flex;
        align-items: flex-start; /* Align to top instead of center */
        justify-content: center;
    }

    .hero-content {
        padding-top: 2rem;
        margin-top: 0;
        position: relative;
        z-index: 5;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-top: 0;
        margin-bottom: 1rem;
        position: relative;
        z-index: 10;
        /* Debugging: Add visual indicators */
        padding-top: 2rem; /* Extra spacing from any overlapping elements */
        min-height: 3rem; /* Ensure minimum height */
    }
    
    /* Ensure proper spacing for sections after hero */
    .highlights-section {
        padding-top: 3rem; /* Reduce top padding on mobile */
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .host-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .host-image {
        margin: 0 auto;
    }
    
    .host-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    body {
        padding-top: 0; /* Remove body padding completely */
    }
    
    .hero-section {
        padding-top: 25vh; /* Even more viewport height for very small screens */
    }
    
    .hero-content {
        padding-top: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        position: relative;
        z-index: 10;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-form-card {
        padding: 1.5rem;
    }
    
    .location-highlight,
    .location-nearby {
        padding: 1.5rem;
    }
    
    .host-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Language Switcher */
.language-switcher {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-lang {
    background: hsla(0, 0%, 100%, 0.1);
    color: white;
    border: 2px solid hsla(0, 0%, 100%, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-width: auto;
    text-decoration: none;
    display: inline-block;
}

.btn-lang:hover {
    background: hsla(0, 0%, 100%, 0.2);
    border-color: hsla(0, 0%, 100%, 0.5);
    transform: translateY(-2px);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Mobile platform tweaks (iOS/Android) */
html {
    -webkit-text-size-adjust: 100%; /* Prevent iOS auto text zoom */
}

/* iOS safe area handling - only for bottom on mobile */
@media (max-width: 768px) {
    body {
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .header {
        padding-top: env(safe-area-inset-top); /* Only for notch area */
    }
}

/* Desktop safe area handling */
@media (min-width: 769px) {
    body {
        padding-top: calc(80px + env(safe-area-inset-top));
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Remove gray tap flash on iOS/Android */
a, button {
    -webkit-tap-highlight-color: transparent;
}

/* Ensure accessible touch targets */
.btn, .nav-link {
    min-height: 44px;
}

/* Prevent iOS zoom on form focus */
input, select, textarea {
    font-size: 16px;
}