/* ============================================
   CASA CAPIBAREI - PROFESSIONAL REDESIGN
   Luxury accommodation website styling
   ============================================ */

/* Import premium typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* === DESIGN TOKENS === */
:root {
    /* Color Palette - Warm Luxury */
    --primary: #1a365d;           /* Deep navy */
    --primary-light: #2c5282;     /* Lighter navy */
    --accent: #d4a853;            /* Gold accent */
    --accent-hover: #b8923f;      /* Darker gold */
    --bg-cream: #faf8f5;          /* Warm cream background */
    --bg-white: #ffffff;
    --text-dark: #2d2d2d;         /* Soft black */
    --text-muted: #6b7280;        /* Muted gray */
    --text-light: #9ca3af;
    --border-light: #e8e4de;      /* Warm border */
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.08);
    --shadow-md: 0 8px 24px rgba(26, 54, 93, 0.12);
    --shadow-lg: 0 16px 48px rgba(26, 54, 93, 0.16);
    --shadow-gold: 0 4px 20px rgba(212, 168, 83, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* === NAVIGATION === */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.8rem 5%;
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

/* Animated underline */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: width var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--primary);
}

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

/* === HERO SECTION === */
.hero {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12rem 5% 8rem;
    background: linear-gradient(
        135deg,
        rgba(26, 54, 93, 0.04) 0%,
        rgba(212, 168, 83, 0.06) 40%,
        rgba(250, 248, 245, 1) 100%
    );
    position: relative;
    overflow: hidden;
}

/* Hero decoration removed for cleaner look */

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Gold accent line */
.hero h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Hero CTA Button */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--bg-white);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Trust badges in hero */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hero-badge svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.hero-badge strong {
    color: var(--primary);
    font-weight: 600;
}

/* === MAIN CONTAINER === */
.container, .content-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
}

/* === APARTMENT SECTIONS === */
.apartment {
    padding: 3rem 0;
}

.info {
    margin-bottom: 2.5rem;
}

.info h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.info p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.info .location-tag {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}

/* === BOOKING BUTTON === */
.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left var(--transition-slow);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.4);
}

.book-btn:hover::before {
    left: 100%;
}

/* === PHOTO GRID === */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    aspect-ratio: 4 / 3;
}

.grid-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.grid-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform var(--transition-slow);
}

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

/* Image hover overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(26, 54, 93, 0.95) 0%,
        rgba(26, 54, 93, 0.7) 60%,
        transparent 100%
    );
    padding: 3rem 1.25rem 1.25rem;
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.grid-item:hover .image-overlay {
    transform: translateY(0);
}

.overlay-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.overlay-link {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.overlay-link:hover {
    color: #f0c674;
}

/* === DIVIDER === */
.divider {
    border: none;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-light) 20%,
        var(--accent) 50%,
        var(--border-light) 80%,
        transparent
    );
    margin: 5rem 0;
}

/* === TOURIST SECTION === */
.tourist-section {
    padding: 3rem 0;
}

.tourist-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.tourist-section h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.tourist-section > p {
    font-size: 1.15rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* === ATTRACTION CARDS === */
.attraction {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-smooth);
    position: relative;
}

.attraction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

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

.attraction:hover::before {
    transform: scaleX(1);
}

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

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

.attraction h3 {
    font-family: var(--font-heading);
    padding: 2rem 2rem 0.75rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
}

.attraction p {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* === FOOTER === */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 1);
    padding: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5% 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 280px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 5%;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* === REVIEWS WIDGET (Booking-style) === */
.reviews-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviews-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviews-title h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
}

.booking-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #003580;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.booking-badge svg {
    width: 18px;
    height: 18px;
}

.reviews-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-badge {
    background: #003580;
    color: white;
    padding: 0.6rem 0.9rem;
    border-radius: 8px 8px 8px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.score-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

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

.review-card {
    background: var(--bg-cream);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.review-score {
    margin-left: auto;
    background: #003580;
    color: white;
    padding: 0.4rem 0.6rem;
    border-radius: 6px 6px 6px 0;
    font-weight: 700;
    font-size: 0.95rem;
}

.review-text {
    display: inline;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
}


/* === MAP SECTION === */
.map-section {
    padding: 3rem 5% 5rem;
    background: linear-gradient(
        to bottom,
        var(--bg-white) 0%,
        var(--bg-cream) 100%
    );
}

.map-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.map-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.map-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 1; /* Ensure it stays below navbar */
}

.leaflet-control-attribution.leaflet-control {
    display: none;
}

/* Custom Popup Styles - Redesigned */
.leaflet-popup-content-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.2);
    padding: 0;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 0 !important;
    width: 260px !important;
}

.leaflet-popup-tip {
    background: var(--bg-white);
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.2);
}

.custom-popup {
    text-align: center;
    padding: 1.5rem;
}

.popup-header {
    margin-bottom: 1.2rem;
}

.custom-popup h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.2rem;
    margin: 0 0 0.3rem;
    line-height: 1.2;
    font-weight: 600;
}

.custom-popup p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 500;
}

.popup-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding-top: 0;
    border-top: none;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.action-btn img {
    transform: scale(2);
}



/* Icon Sizes adjustment */
/* Icon Sizes adjustment */
.action-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.action-btn:hover img {
    transform: scale(2.2);
}

.custom-map-icon {
    filter: drop-shadow(0 4px 8px rgba(26, 54, 93, 0.3));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-map-icon:hover {
    transform: scale(1.15) translateY(-8px);
    z-index: 1000 !important;
}

/* Responsive Map */
@media (max-width: 768px) {
    #map {
        height: 400px;
    }
    
    .map-header h2 {
        font-size: 1.8rem;
    }
}

.review-quote {
    display: block;
    font-size: 3rem;
    line-height: 0.3;
    color: var(--accent);
    font-family: Georgia, serif;
    opacity: 0.3;
    padding-top: 1rem;
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #003580;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap var(--transition-fast);
}

.reviews-link:hover {
    gap: 0.75rem;
    text-decoration: underline;
}

/* === AMENITIES GRID === */
.amenities-section {
    padding: 5rem 5%;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
}

.amenities-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.amenities-container h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.amenities-container > p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

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

.amenity-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    border: 1px solid var(--border-light);
    transition: all var(--transition-smooth);
    text-align: center;
}

.amenity-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.amenity-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    color: var(--primary);
}

.amenity-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.amenity-item span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    display: block;
}

/* === FAQ ACCORDION === */
.faq-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--bg-cream);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-body);
    text-align: left;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: #f5f1eb;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    transition: transform var(--transition-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-answer-content {
    padding: 1.25rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    padding: 5rem 2rem 2rem;
    transition: right var(--transition-smooth);
    z-index: 999;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    font-size: 1.2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: color var(--transition-fast);
}

.mobile-nav a:hover {
    color: var(--accent);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* === TRUST BADGES === */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 53, 128, 0.1);
    color: #003580;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.trust-badge svg {
    width: 14px;
    height: 14px;
}

.trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    
    .logo {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .hero {
        min-height: 60vh;
        padding: 8rem 5% 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-item img {
        height: 240px;
    }
    
    .attraction img {
        height: 280px;
    }
    
    .attraction h3 {
        font-size: 1.4rem;
        padding: 1.5rem 1.5rem 0.5rem;
    }
    
    .attraction p {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    
    .logo {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    /* Hide desktop nav, show mobile toggle */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .hero {
        min-height: 70vh;
        padding: 8rem 5% 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-item {
        aspect-ratio: 16 / 10;
    }
    
    .attraction img {
        height: 280px;
    }
    
    .attraction h3 {
        font-size: 1.4rem;
        padding: 1.5rem 1.5rem 0.5rem;
    }
    
    .attraction p {
        padding: 0 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .book-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .info h2 {
        font-size: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .amenity-item {
        padding: 1rem 0.75rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }