/* ======================== CSS RESET & VARIABLES ======================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #D4AF37;
    --gold-light: #E8D48B;
    --gold-dark: #B8960C;
    --maroon: #5A0F1C;
    --maroon-deep: #3D0A13;
    --maroon-light: #7A1F2E;
    --ivory: #F8F4EC;
    --ivory-dark: #EDE6D6;
    --white: #FFFFFF;
    --text-dark: #2A1A1A;
    --text-medium: #5A4A4A;
    --text-light: #F8F4EC;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Segoe UI', sans-serif;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-soft: 0 4px 20px rgba(90, 15, 28, 0.08);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ======================== BENGALI STYLING OVERRIDES ======================== */
body.lang-bn .nav-links a,
body.lang-bn .btn,
body.lang-bn .badge-text,
body.lang-bn .scroll-text,
body.lang-bn .section-tag,
body.lang-bn .zone-label,
body.lang-bn .gallery-caption,
body.lang-bn .contact-detail-label,
body.lang-bn .contact-action-btn,
body.lang-bn .footer-links a,
body.lang-bn .lang-btn {
    letter-spacing: 0 !important;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); background: linear-gradient(135deg, #babe23 0%, var(--maroon) 100%); background-attachment: fixed; min-height: 100vh; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ======================== NAVBAR ======================== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 18px 0; transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(61, 10, 19, 0.95); backdrop-filter: blur(12px);
    padding: 12px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: 2px; display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.2rem; animation: sparkle 2s ease-in-out infinite; }
@keyframes sparkle { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.2); } }

/* Language Switcher */
.lang-switcher { display: flex; background: rgba(248, 244, 236, 0.05); border-radius: var(--radius-lg); padding: 4px; border: 1px solid rgba(212, 175, 55, 0.25); margin-right: auto; margin-left: 20px; }
.lang-btn { background: transparent; border: none; color: var(--ivory); font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: var(--radius-md); cursor: pointer; transition: var(--transition); letter-spacing: 1px; }
.lang-btn.active { background: var(--gold); color: var(--maroon-deep); }
.lang-btn:hover:not(.active) { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--ivory); letter-spacing: 1.5px; text-transform: uppercase; position: relative; transition: var(--transition); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--gold) !important; color: var(--maroon-deep) !important; padding: 10px 24px !important; border-radius: var(--radius-sm) !important; font-weight: 600 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); transition: var(--transition); border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ======================== BUTTONS ======================== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 36px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: var(--transition); border: none; }
.btn-primary { background: var(--gold); color: var(--maroon-deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--ivory); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: rgba(212, 175, 55, 0.15); transform: translateY(-3px); }
.btn-secondary { background: var(--maroon); color: var(--gold); }
.btn-secondary:hover { background: var(--maroon-light); transform: translateY(-3px); }
.btn-large { padding: 18px 48px; font-size: 1rem; }
.btn-glow { box-shadow: 0 0 30px rgba(212, 175, 55, 0.3); }
.btn-glow:hover { box-shadow: 0 0 50px rgba(212, 175, 55, 0.5); }

/* ======================== HERO ======================== */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 25s ease-in-out infinite alternate; filter: blur(4px) brightness(0.7); transform-origin: center; }
@keyframes heroZoom { 0% { transform: scale(1.02); } 100% { transform: scale(1.12); } }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(61,10,19,0.7) 0%, rgba(0,0,0,0.5) 40%, rgba(61,10,19,0.85) 100%); }
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.hero-content { position: relative; z-index: 3; text-align: center; max-width: 800px; padding: 0 24px; animation: fadeUp 1.2s ease-out; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 24px; }
.badge-text { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }
.badge-line { display: inline-block; width: 40px; height: 1px; background: var(--gold); }

.hero-title { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.hero-title-highlight { display: block; color: var(--gold); font-size: 4rem; margin-top: 8px; text-shadow: 0 0 50px rgba(212,175,55,0.4), 0 2px 20px rgba(0,0,0,0.5); }
.hero-subtitle { font-size: 1.1rem; font-weight: 300; color: rgba(248,244,236,0.95); max-width: 600px; margin: 0 auto 36px; line-height: 1.8; text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll { position: absolute; bottom: 32px; left: 0; right: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gold); }
.scroll-text { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }
.scroll-arrow { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ======================== SECTIONS ======================== */
.section { padding: 100px 0; position: relative; }
.section-ivory { background: rgba(248,244,236,0.85); }
.section-maroon { background: rgba(90,15,28,0.75); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.section-tag-light { color: var(--gold-light); }
.section-title { font-family: var(--font-display); font-size: 2.8rem; font-weight: 600; color: var(--maroon); line-height: 1.3; }
.section-title-light { color: var(--ivory); }
.section-divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 20px; }
.divider-line { display: inline-block; width: 60px; height: 1px; background: var(--gold); }
.divider-line-light { background: rgba(212,175,55,0.5); }
.divider-icon { color: var(--gold); font-size: 0.8rem; }

/* ======================== ABOUT ======================== */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-heading { font-family: var(--font-display); font-size: 1.8rem; color: var(--maroon); margin-bottom: 20px; }
.about-text p { color: var(--text-medium); margin-bottom: 20px; font-size: 0.95rem; }
.about-image-frame { position: relative; border-radius: var(--radius-md); overflow: hidden; }
.about-image-frame img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.6s ease; }
.about-image-frame:hover img { transform: scale(1.05); }
.frame-corner { position: absolute; width: 60px; height: 60px; border: 2px solid var(--gold); }
.frame-tl { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.frame-br { bottom: -8px; right: -8px; border-left: none; border-top: none; }

/* ======================== FEATURES ======================== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: rgba(248,244,236,0.06); border: 1px solid rgba(212,175,55,0.15); border-radius: var(--radius-md); padding: 36px 28px; text-align: center; transition: var(--transition); backdrop-filter: blur(4px); }
.feature-card:hover { transform: translateY(-8px); border-color: var(--gold); background: rgba(248,244,236,0.1); box-shadow: 0 12px 40px rgba(212,175,55,0.1); }
.feature-icon { width: 64px; height: 64px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold); transition: var(--transition); }
.feature-card:hover .feature-icon { background: var(--gold); color: var(--maroon-deep); }
.feature-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--ivory); margin-bottom: 12px; }
.feature-desc { font-size: 0.85rem; color: rgba(248,244,236,0.7); line-height: 1.7; }

/* ======================== LAYOUT ======================== */
.layout-zones { display: flex; flex-direction: column; gap: 48px; align-items: center; }
.layout-zone { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; width: 100%; }
.layout-zone-reverse { direction: rtl; }
.layout-zone-reverse > * { direction: ltr; }
.zone-image { position: relative; border-radius: var(--radius-md); overflow: hidden; }
.zone-image img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.6s ease; }
.zone-image:hover img { transform: scale(1.05); }
.zone-label { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--maroon-deep); padding: 6px 16px; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.zone-title { font-family: var(--font-display); font-size: 1.6rem; color: var(--maroon); margin-bottom: 16px; }
.zone-info p { color: var(--text-medium); font-size: 0.95rem; }
.layout-divider-vertical { display: flex; align-items: center; gap: 12px; color: var(--gold); font-size: 1.2rem; }
.divider-v-line { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ======================== GALLERY ======================== */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 200px; gap: 6px; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 1; }
.gallery-item:nth-child(4) { grid-column: span 6; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 6; grid-row: span 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(61,10,19,0.85) 0%, transparent 50%); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 16px 20px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: var(--ivory); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px; }

/* ======================== REVIEWS ======================== */
.reviews-content { text-align: center; max-width: 600px; margin: 0 auto; }
.reviews-text { font-size: 1.1rem; color: var(--text-medium); margin-bottom: 32px; font-style: italic; }

/* ======================== LOCATION ======================== */
.location-content { background: rgba(248,244,236,0.05); border: 1px solid rgba(212,175,55,0.15); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1.5fr; }
.location-info { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.location-heading { font-family: var(--font-display); font-size: 1.6rem; color: var(--ivory); margin-bottom: 16px; }
.location-address { color: rgba(248,244,236,0.8); margin-bottom: 28px; font-size: 0.95rem; line-height: 1.7; }
.location-map { overflow: hidden; min-height: 350px; }
.location-map iframe { border-radius: 0 !important; }

/* ======================== CONTACT ======================== */
.contact-card { background: var(--white); border: 1px solid var(--ivory-dark); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow-soft); }
.contact-info-panel { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.contact-heading { font-family: var(--font-display); font-size: 1.6rem; color: var(--maroon); margin-bottom: 12px; }
.contact-text { color: var(--text-medium); margin-bottom: 24px; font-size: 0.9rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.contact-detail-row { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--text-dark); }
.contact-detail-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact-detail-text { display: flex; flex-direction: column; min-width: 0; }
.contact-detail-label { font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-medium); font-weight: 500; }
.contact-detail-value { font-size: 0.95rem; font-weight: 600; color: var(--maroon); }
.contact-actions { display: flex; gap: 12px; }
.contact-action-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: var(--transition); border: none; }
.contact-action-btn:hover { transform: translateY(-2px); }
.contact-btn-call { background: var(--maroon); color: var(--ivory); }
.contact-btn-call:hover { background: var(--maroon-light); box-shadow: 0 4px 16px rgba(90,15,28,0.2); }
.contact-btn-whatsapp { background: #25D366; color: #fff; }
.contact-btn-whatsapp:hover { background: #1ebe5a; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }

.contact-cta-panel { position: relative; background: var(--maroon); padding: 48px 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.cta-glow { position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 60%); pointer-events: none; }
.cta-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--ivory); margin-bottom: 12px; position: relative; z-index: 1; }
.cta-text { color: rgba(248,244,236,0.8); font-size: 0.9rem; margin-bottom: 28px; position: relative; z-index: 1; max-width: 320px; line-height: 1.7; }
.btn-glow { box-shadow: 0 0 30px rgba(212, 175, 55, 0.3); position: relative; z-index: 1; }
.btn-glow:hover { box-shadow: 0 0 50px rgba(212, 175, 55, 0.5); }

/* ======================== FOOTER ======================== */
.footer { background: rgba(61,10,19,0.9); padding: 60px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(212,175,55,0.15); }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); letter-spacing: 2px; font-weight: 700; }
.footer-tagline { color: rgba(248,244,236,0.6); font-size: 0.85rem; margin-top: 8px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(248,244,236,0.7); font-size: 0.85rem; letter-spacing: 1px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: rgba(248,244,236,0.7); font-size: 0.85rem; margin-bottom: 8px; }
.footer-bottom { text-align: center; padding-top: 24px; color: rgba(248,244,236,0.4); font-size: 0.8rem; }

/* ======================== LIGHTBOX ======================== */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.95); display: none; align-items: center; justify-content: center; flex-direction: column; gap: 16px; padding: 24px; opacity: 0; transition: opacity 0.3s ease; }
.lightbox.active { display: flex; opacity: 1; }
.lightbox-close { position: absolute; top: 24px; right: 32px; background: none; border: none; color: var(--ivory); font-size: 2.5rem; cursor: pointer; transition: var(--transition); z-index: 1; }
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }
.lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-caption { color: rgba(248,244,236,0.7); font-size: 0.9rem; }

/* ======================== SCROLL ANIMATIONS ======================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
    .hero-title-highlight { font-size: 3rem; }
    .about-content, .layout-zone { grid-template-columns: 1fr; }
    .contact-card { grid-template-columns: 1fr; }
    .location-content { grid-template-columns: 1fr; }
    .location-info { padding: 36px 32px; text-align: center; align-items: center; }
    .location-map { min-height: 300px; }
    .layout-zone-reverse { direction: ltr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; }
    .gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 1; }
    .gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 1; }
    .gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 1; }
    .gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
    .gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-links { align-items: center; }
    .footer-contact { text-align: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-container { padding: 0 16px; }
    .nav-logo { font-size: 1.25rem; letter-spacing: 1px; }
    .logo-icon { font-size: 1rem; }
    .lang-switcher { margin-left: auto; margin-right: 12px; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--maroon-deep); flex-direction: column; padding: 80px 32px 32px; gap: 24px; transition: right 0.4s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.3); z-index: 1001; }
    .nav-links.active { right: 0; }
    .nav-toggle { display: flex; z-index: 1002; }
    .hero { min-height: 600px; }
    .hero-content { padding: 0 20px; }
    .hero-title { font-size: 1.8rem; }
    .hero-title-highlight { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 28px; }
    .hero-badge { margin-bottom: 16px; }
    .badge-text { font-size: 0.65rem; letter-spacing: 3px; }
    .badge-line { width: 24px; }
    .section-title { font-size: 1.8rem; }
    .section-tag { font-size: 0.7rem; letter-spacing: 3px; }
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .feature-card { padding: 28px 24px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .btn { padding: 12px 32px; font-size: 0.8rem; width: 100%; max-width: 280px; display: flex; margin: 0 auto; }
    .btn-large { padding: 14px 32px; font-size: 0.85rem; }
    .about-heading { font-size: 1.5rem; }
    .about-text p { font-size: 0.9rem; }
    .about-image-frame img { height: 280px; }
    .zone-image img { height: 240px; }
    .zone-title { font-size: 1.3rem; }
    .zone-info p { font-size: 0.9rem; }
    .layout-zones { gap: 32px; }
    .layout-zone { gap: 24px; }
    .contact-card { grid-template-columns: 1fr; }
    .contact-info-panel { padding: 32px 24px; }
    .contact-heading { font-size: 1.4rem; }
    .contact-cta-panel { padding: 36px 24px; }
    .cta-title { font-size: 1.3rem; }
    .cta-text { font-size: 0.85rem; }
    .location-info { padding: 32px 24px; }
    .location-heading { font-size: 1.3rem; }
    .location-map { min-height: 250px; }
    .reviews-text { font-size: 1rem; }
    .hero-scroll { bottom: 20px; }
    .scroll-text { font-size: 0.6rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-container { padding: 0 12px; }
    .nav-logo { font-size: 1.1rem; letter-spacing: 0.5px; gap: 4px; }
    .logo-icon { font-size: 0.9rem; }
    .lang-switcher { margin-left: auto; margin-right: 8px; padding: 2px; }
    .lang-btn { padding: 4px 6px; font-size: 0.7rem; }
    .nav-toggle { padding: 2px; }
    .nav-toggle span { width: 20px; }
    .hero-title { font-size: 1.5rem; }
    .hero-title-highlight { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.85rem; }
    .section-title { font-size: 1.5rem; }
    .section { padding: 52px 0; }
    .gallery-grid { grid-auto-rows: 180px; }
    .about-image-frame img { height: 220px; }
    .zone-image img { height: 200px; }
    .contact-info-panel { padding: 28px 20px; }
    .contact-detail-value { font-size: 0.85rem; }
    .contact-action-btn { font-size: 0.7rem; padding: 10px 12px; }
    .nav-logo { font-size: 1.2rem; letter-spacing: 1px; }
    .footer-logo { font-size: 1.2rem; }
    .footer-tagline { font-size: 0.8rem; }
}
