/* ============================================
   ENTRE ROCAS - SHARED STYLESHEET
   Version 3.0 | Multi-page Site
   ============================================ */

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

:root {
  --dark: #0f172a;
  --darker: #1e293b;
  --card-bg: rgba(255,255,255,0.03);
  --card-border: rgba(245,158,11,0.12);
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dim: rgba(245,158,11,0.15);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --green: #10b981;
  --red: #ef4444;
  --airbnb: #FF5A5F;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --transition: all 0.35s ease;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; max-width: 100%; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── PAGE LOADER ─── */
#loader { position: fixed; inset: 0; z-index: 99999; background: var(--dark); display: flex; align-items: center; justify-content: center; transition: opacity 0.5s, visibility 0.5s; }
#loader.hide { opacity: 0; visibility: hidden; }
.loader-ring { width: 50px; height: 50px; border: 3px solid var(--card-border); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── NAVIGATION ─── */
#mainNav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(15,23,42,0.94); backdrop-filter: blur(28px); border-bottom: 1px solid rgba(245,158,11,0.12); transition: var(--transition); }
#mainNav.scrolled { background: rgba(15,23,42,0.99); box-shadow: 0 4px 32px rgba(0,0,0,0.5); border-bottom-color: rgba(245,158,11,0.25); }
.nav-inner { max-width: 1400px; margin: 0 auto; padding: 0.85rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-logo { height: 56px; width: auto; object-fit: contain; flex-shrink: 0; transition: transform 0.3s ease, filter 0.3s ease; }
.nav-logo:hover { transform: scale(1.06); filter: drop-shadow(0 0 10px rgba(245,158,11,0.35)); }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a { color: var(--text-muted); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.45rem 1rem; border-radius: 50px; transition: all 0.3s; white-space: nowrap; border: 1px solid transparent; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--gold); background: var(--gold-dim); border-color: rgba(245,158,11,0.2); }
.nav-right { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.nav-email-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.5rem; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--dark); font-size: 0.82rem; font-weight: 700; border-radius: 50px; white-space: nowrap; transition: var(--transition); text-decoration: none; box-shadow: 0 4px 18px rgba(245,158,11,0.35); letter-spacing: 0.03em; border: none; }
.nav-email-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,158,11,0.55); filter: brightness(1.08); }
.nav-email-btn i { font-size: 0.88rem; }
.lang-btn { background: transparent; border: 1px solid rgba(245,158,11,0.35); color: var(--gold); font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700; padding: 0.45rem 1rem; border-radius: 50px; letter-spacing: 0.1em; transition: var(--transition); }
.lang-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.burger { display: none; background: none; border: 1px solid rgba(245,158,11,0.25); color: var(--gold); font-size: 1.25rem; padding: 0.45rem 0.65rem; border-radius: 10px; z-index: 1001; transition: var(--transition); }
.burger:hover { background: var(--gold-dim); }

/* Desktop: hide the cotizar item inside hamburger menu */
.nav-cotizar-item { display: none; }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav-email-btn { display: none; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; height: calc(100vh - 72px); background: rgba(15,23,42,0.98); backdrop-filter: blur(24px); flex-direction: column; padding: 2rem 1.5rem; gap: 0.4rem; overflow-y: auto; align-items: flex-start; }
  .nav-links.open { display: flex; animation: menuSlideIn 0.3s ease forwards; }
  .nav-links a { font-size: 0.88rem; padding: 0.65rem 1.1rem; width: 100%; border-radius: 12px; }
  /* Show cotizar button inside hamburger menu */
  .nav-cotizar-item { display: block; width: 100%; margin-top: 0.8rem; }
  .nav-cotizar-link { display: inline-flex; align-items: center; gap: 0.6rem; width: 100%; padding: 0.75rem 1.2rem; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--dark) !important; font-size: 0.88rem; font-weight: 700; border-radius: 12px; border: none !important; justify-content: center; }
  .nav-cotizar-link:hover { filter: brightness(1.08); background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important; }
}
@media (max-width: 768px) {
  .nav-logo { height: 44px; }
  .nav-inner { padding: 0.6rem 1rem; }
}

/* ─── AREA TOUR (AirBnb-style property tour on hospedaje) ─── */
.area-tour-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.area-tour-card { border-radius: var(--radius); overflow: hidden; background: var(--card-bg); border: 1px solid var(--card-border); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; display: block; }
.area-tour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.area-tour-card img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.5s; }
.area-tour-card:hover img { transform: scale(1.06); }
.area-tour-card .area-info { padding: 1.2rem 1.4rem; }
.area-tour-card .area-info h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 0.4rem; font-weight: 700; }
.area-tour-card .area-info p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.5; margin-bottom: 0.8rem; }
.area-tour-card .area-link { color: var(--gold); font-size: 0.83rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; }
@media(max-width:900px) { .area-tour-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:480px) { .area-tour-grid { grid-template-columns: 1fr 1fr; } .area-tour-card img { height: 150px; } }

/* ─── HERO ─── */
/* FIX: padding-top pushes content below fixed nav so text is never hidden */
.hero {
  height: 100vh; min-height: 650px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 4rem;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 25s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.55) 50%, rgba(15,23,42,0.78) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 960px; padding: 0 2rem; }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.4rem; background: linear-gradient(135deg, var(--text) 30%, var(--gold-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: fadeUp 0.8s 0.4s both; }
.hero p { font-size: clamp(0.95rem, 1.8vw, 1.2rem); color: var(--text-muted); line-height: 1.8; margin-bottom: 2.2rem; max-width: 640px; margin-left: auto; margin-right: auto; animation: fadeUp 0.8s 0.6s both; }
.hero-btns { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s 0.8s both; }
.scroll-hint { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: var(--gold); font-size: 1.6rem; animation: bounce 2.2s ease infinite; z-index: 3; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* ─── SECTIONS ─── */
section { padding: 7rem 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section-head { text-align: center; margin-bottom: 4.5rem; }
.tag { display: inline-block; padding: 0.45rem 1.4rem; background: var(--gold-dim); border: 1px solid rgba(245,158,11,0.25); border-radius: 50px; color: var(--gold); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.2rem; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.2; margin-bottom: 1.2rem; background: linear-gradient(135deg, var(--text), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 680px; margin: 0 auto; line-height: 1.8; }
.bg-alt { background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%); }
.bg-dark { background: var(--dark); }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.9rem 2rem; border-radius: 50px; font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600; border: none; transition: var(--transition); white-space: nowrap; max-width: 100%; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--dark); box-shadow: 0 6px 24px rgba(245,158,11,0.3); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(245,158,11,0.5); }
.btn-outline { background: transparent; border: 2px solid rgba(245,158,11,0.4); color: var(--gold); }
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); transform: translateY(-3px); }
.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 6px 24px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: #20b858; transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.45); }
.btn-airbnb { background: var(--airbnb); color: white; box-shadow: 0 6px 24px rgba(255,90,95,0.3); }
.btn-airbnb:hover { background: #e04e53; transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,90,95,0.45); }
.btn-facebook { background: #1877F2; color: white; box-shadow: 0 6px 24px rgba(24,119,242,0.3); }
.btn-facebook:hover { background: #145dbf; transform: translateY(-3px); }
.btn-instagram { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); color: white; box-shadow: 0 6px 24px rgba(221,42,123,0.3); }
.btn-instagram:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(221,42,123,0.45); }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }
.btn-sm { padding: 0.65rem 1.4rem; font-size: 0.85rem; }

/* ─── SERVICE CARDS ─── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr)); gap: 2.5rem; }
.service-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); height: 520px; display: flex; flex-direction: column; justify-content: flex-end; transition: var(--transition); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover img { transform: scale(1.07); }
.service-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.3) 60%, transparent 100%); }
.service-card-body { position: relative; z-index: 2; padding: 2.5rem; }
.service-card-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.9rem; font-weight: 800; margin-bottom: 0.8rem; color: var(--text); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* ─── STATS ─── */
.stats-bar { background: linear-gradient(135deg, var(--gold), var(--gold-light)); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-size: 2.8rem; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.88rem; font-weight: 600; color: rgba(15,23,42,0.75); text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── ABOUT GRID ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-grid.reversed { direction: rtl; }
.about-grid.reversed > * { direction: ltr; }
.about-text p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1.4rem; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 550px; object-fit: cover; transition: transform 0.5s; }
.about-img:hover img { transform: scale(1.04); }

/* ─── FEATURES GRID ─── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.feature { text-align: center; padding: 2.5rem 2rem; background: var(--card-bg); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); transition: var(--transition); }
.feature:hover { background: rgba(255,255,255,0.06); transform: translateY(-8px); border-color: rgba(245,158,11,0.2); }
.feature-icon { font-size: 2.8rem; margin-bottom: 1.2rem; }
.feature h3 { font-size: 1.2rem; color: var(--gold); margin-bottom: 0.8rem; font-weight: 700; }
.feature p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* ─── GALLERY GRID ─── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 1; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 2rem; color: white; }

/* Gallery filters */
.gallery-filters { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { padding: 0.6rem 1.6rem; background: transparent; border: 1px solid rgba(255,255,255,0.12); border-radius: 50px; color: var(--text-muted); font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 500; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--gold-dim); border-color: rgba(245,158,11,0.4); color: var(--gold); }

/* ─── HOSPEDAJE PHOTO MASONRY ─── */
/* FIX: masonry columns so portrait & landscape photos display at natural ratio */
.hosp-masonry { columns: 3; column-gap: 1rem; }
.hosp-masonry-item { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; box-shadow: 0 6px 24px rgba(0,0,0,0.3); transition: transform 0.3s, box-shadow 0.3s; }
.hosp-masonry-item:hover { transform: scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.hosp-masonry-item img { width: 100%; display: block; transition: transform 0.5s; }
.hosp-masonry-item:hover img { transform: scale(1.05); }
.hosp-masonry-item .gallery-item-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.hosp-masonry-item:hover .gallery-item-overlay { opacity: 1; }
.hosp-masonry-item .gallery-item-overlay i { font-size: 2rem; color: white; }
@media(max-width:768px) { .hosp-masonry { columns: 2; } }
@media(max-width:480px) { .hosp-masonry { columns: 1; } }

/* ─── LIGHTBOX ─── */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.95); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 12px; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.1); border: none; color: white; font-size: 2rem; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav { position: absolute; width: 100%; display: flex; justify-content: space-between; padding: 0 1.5rem; }
.lightbox-nav button { background: rgba(255,255,255,0.1); border: none; color: white; font-size: 1.5rem; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.lightbox-nav button:hover { background: rgba(255,255,255,0.22); }

/* ─── REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 2rem; }
.review { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 2.2rem; position: relative; transition: var(--transition); }
.review::before { content: '"'; position: absolute; top: -10px; left: 20px; font-size: 100px; color: rgba(245,158,11,0.08); font-family: Georgia, serif; line-height: 1; }
.review:hover { transform: translateY(-8px); border-color: rgba(245,158,11,0.28); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.review-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.3rem; position: relative; z-index: 1; }
.avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.3rem; color: var(--dark); flex-shrink: 0; }
.review-info h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.review-stars { color: var(--gold); font-size: 0.82rem; }
.review-text { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; position: relative; z-index: 1; }
.rating-block { text-align: center; margin-bottom: 3.5rem; }
.rating-stars { font-size: 2.5rem; color: var(--gold); margin-bottom: 0.6rem; }
.rating-stars i { margin: 0 2px; }
.rating-num { font-size: 2.2rem; font-weight: 900; margin-bottom: 0.3rem; }
.rating-sub { color: var(--text-muted); font-size: 0.9rem; }

/* ─── MAP ─── */
.map-box { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-box iframe { width: 100%; height: 480px; border: none; display: block; }

/* ─── CONTACT ─── */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.contact-card { text-align: center; padding: 2.5rem 1.5rem; background: var(--card-bg); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius); transition: var(--transition); }
.contact-card:hover { border-color: rgba(245,158,11,0.2); transform: translateY(-5px); }
.contact-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 1.2rem; }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 0.8rem; }
.contact-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; }
.contact-card a { color: var(--gold); transition: color 0.3s; }
.contact-card a:hover { color: var(--gold-light); }

/* ─── FORM ─── */
.form-wrap { max-width: 700px; margin: 0 auto; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 3.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.03em; }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 0.85rem 1.1rem; color: var(--text); font-family: 'Poppins', sans-serif; font-size: 0.92rem; transition: border-color 0.3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(245,158,11,0.5); background: rgba(245,158,11,0.04); }
.form-group select option { background: var(--darker); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 1.8rem; text-align: center; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 1rem; }

/* ─── PRICING CARDS ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 820px; margin: 0 auto; justify-items: center; }
.pricing-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 2.5rem; text-align: center; transition: var(--transition); position: relative; }
.pricing-card.featured { border-color: rgba(245,158,11,0.45); background: rgba(245,158,11,0.06); }
.pricing-card.featured::before { content: attr(data-badge); position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--dark); font-size: 0.78rem; font-weight: 700; padding: 0.35rem 1.2rem; border-radius: 50px; white-space: nowrap; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.pricing-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pricing-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--gold); }
.pricing-price { font-size: 2.8rem; font-weight: 900; color: var(--text); line-height: 1; margin: 1rem 0 0.3rem; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.6; }
.pricing-list { text-align: left; margin-bottom: 1.5rem; }
.pricing-list li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--text-muted); font-size: 0.9rem; padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.pricing-list li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }

/* ─── INFO STRIP ─── */
.info-strip { background: linear-gradient(135deg, var(--darker), rgba(30,41,59,0.9)); border: 1px solid var(--card-border); border-radius: var(--radius); display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; overflow: hidden; margin-bottom: 5rem; }
.info-strip-item { padding: 2rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
.info-strip-item:last-child { border-right: none; }
.info-strip-icon { font-size: 2rem; color: var(--gold); margin-bottom: 0.6rem; }
.info-strip-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.info-strip-value { font-size: 1.1rem; font-weight: 700; color: var(--text); }

/* ─── AMENITY CHIPS ─── */
.amenity-chips { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.2rem; background: var(--gold-dim); border: 1px solid rgba(245,158,11,0.25); border-radius: 50px; font-size: 0.85rem; color: var(--gold); }

/* ─── EXTRA SERVICES ─── */
.extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.8rem; }
.extra-card { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 2rem; display: flex; align-items: flex-start; gap: 1.2rem; transition: var(--transition); }
.extra-card:hover { border-color: rgba(245,158,11,0.2); transform: translateY(-4px); }
.extra-icon { font-size: 2.2rem; flex-shrink: 0; }
.extra-body h4 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--gold); }
.extra-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ─── RULES LIST ─── */
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.rule-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.4rem; background: var(--card-bg); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; font-size: 0.9rem; color: var(--text-muted); }
.rule-item i { width: 20px; text-align: center; color: var(--gold); flex-shrink: 0; }

/* ─── EVENT TYPES ─── */
.event-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.event-type { position: relative; overflow: hidden; border-radius: var(--radius); height: 360px; display: flex; align-items: flex-end; transition: var(--transition); }
.event-type:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.event-type img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.event-type:hover img { transform: scale(1.07); }
.event-type-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.2) 60%, transparent 100%); }
.event-type-body { position: relative; z-index: 2; padding: 1.8rem; }
.event-type-body h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.4rem; }
.event-type-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ─── FOOTER ─── */
footer { background: var(--darker); border-top: 1px solid rgba(255,255,255,0.05); padding: 2.5rem 0 1rem; }
.footer-compact { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; text-align: center; margin-bottom: 1.5rem; }
.footer-logo { height: 52px; }
.footer-tagline { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.footer-tagline a { color: var(--gold-light); transition: color 0.3s; }
.footer-tagline a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: var(--card-bg); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-socials a:hover { background: var(--gold-dim); color: var(--gold); border-color: rgba(245,158,11,0.3); }
.footer-nav-row { display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; }
.footer-nav-row a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.3s; }
.footer-nav-row a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
@media (max-width: 600px) { .footer-bottom { flex-direction: column; text-align: center; } .footer-nav-row { gap: 1rem; } }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes menuSlideIn { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: linear-gradient(to right, transparent, rgba(245,158,11,0.2), transparent); margin: 0; }

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

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .event-types-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 5rem 0; }
  .about-grid, .about-grid.reversed { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
  .about-img img { height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .event-types-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 2.5rem 1.5rem; }
  .info-strip { grid-template-columns: repeat(2, 1fr); }
  .info-strip-item:nth-child(2) { border-right: none; }
  .info-strip-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-btns { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr; width: 100%; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card { width: 100%; }
  .btn { white-space: normal; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; }
  .info-strip-item { border-right: none !important; border-top: 1px solid rgba(255,255,255,0.06); }
  .info-strip-item:first-child { border-top: none; }
}
