:root {
    --primary-dark: #0f1626;
    --primary-light: #faf9f6;
    --accent-gold: #d4af37;
    --accent-gold-dark: #b5952f;
    --text-main: #333333;
    --text-muted: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-dark);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.relative { position: relative; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 1rem 5%;
}

.logo {
    display: flex;
    flex-direction: column;
}

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

.navbar.scrolled .logo-text {
    color: var(--primary-dark);
}

.logo-subtext {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-light);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--primary-dark);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-outline {
    border-color: var(--accent-gold);
    color: var(--accent-gold) !important;
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: #fff !important;
}

.btn-primary {
    background: var(--accent-gold);
    color: #fff;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 22, 38, 0.9) 0%, rgba(15, 22, 38, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: #fff;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.review-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: none;
    letter-spacing: normal;
}

.review-badge .stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.review-badge .review-count {
    font-weight: 600;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero h1 span {
    font-style: italic;
    color: var(--accent-gold);
    display: block;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-inline: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.subtitle {
    display: block;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text p:not(.lead) {
    color: var(--text-muted);
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.stat-card {
    background: var(--primary-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.gold-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

/* Why Us Section */
.why-us-section {
    padding: 8rem 0;
    background: var(--primary-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.why-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-gold);
    color: #fff;
    padding: 2rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
    border: 8px solid var(--primary-light);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    text-align: center;
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-us-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-5px);
}

.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* Amenities Section */
.amenities-section {
    padding: 8rem 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
}

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

.amenity-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ecd077 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-10px);
}

.amenity-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

.amenity-card:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.amenity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.amenity-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.amenity-card:hover h3,
.amenity-card:hover p {
    color: #fff;
}

/* Rooms Section */
.rooms-section {
    padding: 8rem 0;
    background: #fff;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.room-card {
    background: var(--primary-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.active-card {
    border: 2px solid var(--accent-gold);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.active-card:hover {
    transform: scale(1.02) translateY(-10px);
}

.room-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.room-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(15, 22, 38, 0.9);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.room-badge.popular {
    background: var(--accent-gold);
    color: #fff;
}

.room-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.room-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.room-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.room-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.text-gold {
    color: var(--accent-gold);
    margin-top: 4px;
}

.room-action {
    margin-top: auto;
}

.w-100 {
    width: 100%;
    text-align: center;
}

/* Reviews Section */
.reviews-section {
    padding: 8rem 0;
    background: var(--primary-light);
}

.reviews-slider-container {
    position: relative;
    max-width: 100%;
    margin-top: 4rem;
}

.slider-btn {
    display: none; /* hidden on desktop */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--primary-dark);
    font-size: 1.2rem;
    z-index: 10;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: #fff;
}

.slider-btn.prev-btn {
    left: -15px;
}

.slider-btn.next-btn {
    right: -15px;
}

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

.review-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-text.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.read-more-btn {
    align-self: flex-start;
    background: none;
    border: none;
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-dark);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
    margin-top: auto; /* Pushes author to bottom ensuring uniform card heights */
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.reviewer-details h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.reviewer-details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating {
    margin-left: auto;
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #20b858;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background: #fff;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-item:nth-child(n+10) {
    display: none;
}

.gallery-grid.show-all .gallery-item:nth-child(n+10) {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.08); /* Dynamic micro-animation on hover */
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: var(--primary-dark);
    color: #fff;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
}

.contact-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.c-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.c-info {
    text-align: left;
}

.c-info span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c-info strong {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

/* Hashtags */
.hashtag-scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    opacity: 0.6;
}

.hashtag-scroll span {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

/* Footer */
footer {
    background: #0a0f1a;
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-light);
    cursor: pointer;
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-toggle {
    color: var(--primary-dark);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-left { transform: translateX(-50px); }
.fade-right { transform: translateX(50px); }

.reveal.fade-left.active, .reveal.fade-right.active {
    transform: translateX(0);
}

.slide-up {
    transition-delay: var(--delay);
}

/* Responsive */
@media (max-width: 991px) {
    .container { padding: 0 5%; }
    .hero h1 { font-size: 3rem; }
    .about-grid, .why-us-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-methods { grid-template-columns: 1fr; }
    .about-section, .why-us-section, .amenities-section, .rooms-section, .reviews-section, .gallery-section, .contact-section { padding: 3rem 0; }
    .active-card { transform: scale(1); }
    .active-card:hover { transform: scale(1) translateY(-10px); }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem 5%; }
    .mobile-menu-toggle { display: block; z-index: 1001; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-links a { color: var(--primary-dark); font-size: 1.2rem; }
    
    .hero h1 { font-size: 2.5rem; margin-top: 2rem; }
    .hero p { font-size: 1rem; margin-bottom: 2rem; }
    .hero-actions { flex-direction: column; width: 100%; gap: 1rem; }
    .hero-actions .btn { width: 100%; }
    
    .about-stats { flex-direction: column; gap: 1.5rem; }
    .about-text h2, .section-header h2, .contact-content h2 { font-size: 2.2rem; }
    
    .rooms-grid { grid-template-columns: 1fr; }
    
    /* Sliding reviews on mobile */
    .slider-btn { display: flex; align-items: center; justify-content: center; }
    .reviews-grid { 
        display: flex; 
        flex-wrap: nowrap;
        overflow-x: auto; 
        scroll-snap-type: x mandatory; 
        -webkit-overflow-scrolling: touch; 
        gap: 1.5rem;
        padding-bottom: 2rem; /* space for scroll bar */
        margin-top: 0;
    }
    
    .reviews-grid::-webkit-scrollbar {
        height: 6px;
    }
    .reviews-grid::-webkit-scrollbar-thumb {
        background-color: var(--accent-gold);
        border-radius: 10px;
    }
    .reviews-grid::-webkit-scrollbar-track {
        background-color: rgba(0,0,0,0.05);
    }
    
    .review-card { 
        flex: 0 0 calc(100% - 20px); 
        max-width: calc(100% - 20px);
        scroll-snap-align: center;
        margin: 0 10px;
    }
    
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
    
    .contact-content { padding: 2rem 1.5rem; }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { aspect-ratio: 16/9; }
}
