/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Google Chrome & Ocean Blend */
    --google-blue: #1a73e8;
    --google-blue-hover: #1557b0;
    --google-blue-light: #e8f0fe;
    --google-red: #ea4335;
    --google-yellow: #fbbc04;
    --google-green: #34a853;
    
    /* Brand Colors */
    --primary: #1a73e8;
    --primary-gradient: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    --accent: #0f9d58;
    --accent-gradient: linear-gradient(135deg, #0f9d58 0%, #1b5e20 100%);
    --sand-light: #fafaf9;
    --sand-accent: #f59e0b;
    --text-dark: #202124;
    --text-medium: #5f6368;
    --text-light: #80868b;
    --bg-white: #ffffff;
    --bg-gray: #f8f9fa;
    --border-color: #dadce0;
    --border-light: #f1f3f4;
    
    /* Logo Colors */
    --logo-blue: #3556AF;
    --logo-orange: #F88425;
    --logo-yellow: #FCCC3B;
    
    /* Layout Variables */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    --shadow-md: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
    --shadow-lg: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.2);
    --shadow-chrome: 0 4px 24px rgba(0,0,0,0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-pill: 9999px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Typography Helpers */
.text-gradient-blue {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-beach {
    background: linear-gradient(135deg, #1a73e8 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-logo-blue {
    color: var(--logo-blue);
}

.text-logo-orange {
    color: var(--logo-orange);
}

.text-logo-yellow {
    color: var(--logo-yellow);
}

/* Layout Containers */
.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.custom-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation Bar (Chrome Floating Style) */
.chrome-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.chrome-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 1px 10px rgba(0,0,0,0.03);
    height: 64px;
}

.chrome-nav .custom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-brand img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

@media (max-width: 991px) {
    .nav-links {
        display: none; /* Handled by mobile menu */
    }
}

.nav-link-item {
    font-weight: 500;
    color: var(--text-medium);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

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

.nav-link-item:hover {
    color: var(--primary);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Pill Buttons */
.btn-chrome {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-chrome-primary {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-chrome-primary:hover {
    background-color: var(--google-blue-hover);
    box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
    transform: translateY(-1px);
    color: var(--bg-white);
}

.btn-chrome-secondary {
    background-color: var(--bg-white);
    color: var(--primary);
    border-color: var(--border-color);
}

.btn-chrome-secondary:hover {
    background-color: var(--border-light);
    border-color: var(--text-light);
    transform: translateY(-1px);
    color: var(--primary);
}

.btn-chrome-whatsapp {
    background: #25d366;
    color: white;
}

.btn-chrome-whatsapp:hover {
    background: #1ebd5d;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transform: translateY(-1px);
    color: white;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 6px 0;
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: block;
    }
}

/* Mobile Dropdown Menu */
.mobile-nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.mobile-nav-menu.open {
    display: flex;
}

.mobile-nav-menu .nav-link-item {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 80% 20%, rgba(26, 115, 232, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.04) 0%, transparent 50%);
    text-align: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--border-light);
    color: var(--text-medium);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.badge-pill:hover {
    background-color: var(--google-blue-light);
    color: var(--primary);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--google-green);
    display: inline-block;
}

.badge-dot.pulse {
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 1; }
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 24px auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 0 16px;
    }
}

/* Mock Browser Window (Google Chrome Accent) */
.mock-browser-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-chrome);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
}

.browser-header {
    height: 48px;
    background-color: #dee1e6;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot.red { background-color: #ff5f56; }
.browser-dot.yellow { background-color: #ffbd2e; }
.browser-dot.green { background-color: #27c93f; }

.browser-tabs {
    display: flex;
    height: 100%;
    align-items: flex-end;
}

.browser-tab {
    background-color: var(--bg-white);
    height: 36px;
    padding: 0 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-right: 4px;
}

.browser-tab-icon {
    width: 16px;
    height: 16px;
}

.browser-tab-close {
    font-size: 0.8rem;
    color: var(--text-light);
    cursor: pointer;
}

.browser-address-bar {
    flex-grow: 1;
    height: 28px;
    background-color: var(--bg-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-medium);
    border: 1px solid transparent;
}

.browser-address-bar svg {
    fill: var(--google-green);
}

.browser-body {
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #f1f3f4;
    overflow: hidden;
}

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

.browser-body:hover .browser-slider-img {
    transform: scale(1.03);
}

/* Quick Info Badges */
.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .quick-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background-color: var(--bg-gray);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background-color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(26,115,232,0.08);
    transform: translateY(-2px);
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* Features Grid Section */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 60px auto;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-chrome);
    transform: translateY(-4px);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background-color: var(--google-blue-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-card:nth-child(2) .feature-icon-wrapper {
    background-color: rgba(52, 168, 83, 0.1);
    color: var(--google-green);
}

.feature-card:nth-child(3) .feature-icon-wrapper {
    background-color: rgba(251, 188, 4, 0.1);
    color: var(--google-yellow);
}

.feature-card:nth-child(4) .feature-icon-wrapper {
    background-color: rgba(234, 67, 53, 0.1);
    color: var(--google-red);
}

.feature-card:nth-child(5) .feature-icon-wrapper {
    background-color: var(--google-blue-light);
    color: var(--primary);
}

.feature-card:nth-child(6) .feature-icon-wrapper {
    background-color: rgba(52, 168, 83, 0.1);
    color: var(--google-green);
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Chrome-Style Interactivity: Room Slider Showcase */
.interactive-showcase {
    background-color: var(--bg-gray);
    border-radius: var(--radius-lg);
    padding: 60px;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .interactive-showcase {
        padding: 30px 20px;
    }
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.showcase-tab-btn {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.showcase-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--google-blue-light);
}

.showcase-tab-btn.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.2);
}

.showcase-content-panel {
    display: none;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.showcase-content-panel.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
    .showcase-content-panel {
        grid-template-columns: 1fr;
    }
}

.panel-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
}

.panel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.panel-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-info h3 {
    font-size: 2rem;
    font-weight: 800;
}

.panel-info p {
    color: var(--text-medium);
    font-size: 1.05rem;
}

.panel-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.panel-feature-item svg {
    fill: var(--google-green);
    width: 20px;
    height: 20px;
}

/* Testimonials / Guest Reviews Grid */
.reviews-section {
    background-color: var(--bg-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.review-card:hover {
    border-color: var(--google-blue-light);
    box-shadow: var(--shadow-chrome);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--border-light);
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.review-platform-icon {
    width: 24px;
    height: 24px;
}

.review-rating {
    display: flex;
    gap: 2px;
    color: var(--google-yellow);
}

.review-body {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    font-style: italic;
}

/* Direct Booking Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(26,115,232,0.03) 0%, rgba(245,158,11,0.03) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cta-banner {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        text-align: center;
    }
}

.cta-banner-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-banner-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 550px;
}

.booking-perks {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 480px) {
    .booking-perks {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.perk-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

.cta-banner-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

/* FAQ Accordion Section (Chrome-like details element) */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(26,115,232,0.05);
}

.faq-summary {
    padding: 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    fill: var(--text-medium);
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    fill: var(--primary);
}

.faq-content {
    padding: 0 24px 24px 24px;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item[open] .faq-content {
    border-top-color: var(--border-light);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer Section */
.chrome-footer {
    background-color: var(--bg-gray);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px 0;
    color: var(--text-medium);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-info .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.footer-info p {
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link a {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.footer-link a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-medium);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    fill: var(--primary);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.85rem;
    z-index: 998;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.floating-whatsapp:hover {
    background: #1ebd5d;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--text-dark);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Interactive Lightbox / Modal for gallery images */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.9);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-nav.prev { left: 40px; }
.lightbox-nav.next { right: 40px; }

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    aspect-ratio: 4/3;
    cursor: pointer;
    background-color: var(--border-light);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 16px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Helper card for gallery CTA button */
.gallery-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    aspect-ratio: 4/3;
}
.gallery-cta-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}