:root {
  --navy: #1a2744;
  --navy-dark: #0f1a30;
  --gold: #c9a96e;
  --gold-light: #e8c98a;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --border: #e5e7eb;
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1f2937;
  background: var(--white);
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--navy);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav-logo-text { color: var(--white); }
.nav-logo-text strong { font-size: 1.1rem; display: block; letter-spacing: 0.5px; }
.nav-logo-text span { font-size: 0.7rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--gold); }

.btn-portal {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 0.5rem 1.2rem !important;
}
.btn-portal:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: 0.3s; border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e3a5f 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(201,169,110,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30,90,160,0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-title span { color: var(--gold); }

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.85rem 1.8rem; border-radius: 8px; font-size: 0.95rem; font-weight: 600; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

.hero-image { position: relative; }

.hero-img-main {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.hero-img-main img { width: 100%; height: 420px; object-fit: cover; }

.hero-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-img-badge .icon { font-size: 2rem; }
.hero-img-badge strong { display: block; color: var(--navy); font-size: 0.95rem; }
.hero-img-badge span { font-size: 0.75rem; color: var(--gray); }

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.section-title { font-size: 2.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.section-desc { color: var(--gray); font-size: 1rem; max-width: 600px; }

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ===== ACCOMMODATION CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }

.acc-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.acc-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }

.acc-card-img { position: relative; height: 220px; overflow: hidden; }
.acc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.acc-card:hover .acc-card-img img { transform: scale(1.05); }

.acc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.acc-card-body { padding: 1.5rem; }
.acc-card-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.acc-card-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 1.2rem; }

.acc-amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.amenity-tag {
  background: var(--light-gray);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.acc-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.acc-suitability { font-size: 0.8rem; color: var(--gray); }
.acc-suitability strong { color: var(--navy); }

/* ===== FACILITIES ===== */
.facilities-section { background: var(--off-white); }
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

.facility-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.facility-card:hover { border-color: var(--gold); box-shadow: 0 8px 25px rgba(201,169,110,0.15); transform: translateY(-3px); }

.facility-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.facility-name { font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.facility-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-img { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.why-img img { width: 100%; height: 450px; object-fit: cover; }

.why-points { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.why-point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.why-point-text h4 { font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.why-point-text p { font-size: 0.88rem; color: var(--gray); }

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}
.contact-strip h2 { font-size: 2rem; margin-bottom: 1rem; }
.contact-strip p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.contact-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-whatsapp { background: #25D366; color: white !important; }
.btn-whatsapp:hover { background: #1ebe5d; }
.btn-call { background: rgba(255,255,255,0.1); color: white !important; border: 1px solid rgba(255,255,255,0.2); }
.btn-call:hover { background: rgba(255,255,255,0.2); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }

.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; color: rgba(255,255,255,0.5); }

.footer-col h4 { color: var(--white); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s;
  z-index: 999;
  animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1200&q=60') center/cover;
  opacity: 0.08;
}
.page-header-inner { position: relative; }
.page-header h1 { font-size: 2.8rem; color: var(--white); font-weight: 700; }
.page-header p { color: rgba(255,255,255,0.7); margin-top: 0.8rem; font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; font-size: 0.85rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== AUTH FORMS ===== */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo .logo-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.auth-logo h2 { color: var(--navy); font-size: 1.4rem; }
.auth-logo p { color: var(--gray); font-size: 0.9rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  font-family: inherit;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-full { width: 100%; justify-content: center; padding: 0.9rem; font-size: 1rem; }

.auth-footer { text-align: center; margin-top: 1.5rem; font-size: 0.9rem; color: var(--gray); }
.auth-footer a { color: var(--navy); font-weight: 600; text-decoration: none; }

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  display: none;
}
.alert-error { background: #fef2f2; color: var(--danger); border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: var(--success); border: 1px solid #bbf7d0; }

/* ===== DASHBOARD ===== */
.dashboard-layout { display: flex; min-height: 100vh; }

.sidebar {
  width: 260px;
  min-width: 260px;
  background: var(--navy-dark);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-logo {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-logo a { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.sidebar-logo strong { color: var(--white); font-size: 1rem; }
.sidebar-logo span { color: var(--gold); font-size: 0.7rem; }

.sidebar-nav { padding: 1rem 0; flex: 1; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.8rem 1.5rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--gold);
}
.sidebar-nav .nav-icon { font-size: 1.1rem; width: 20px; text-align: center; }
.sidebar-section { padding: 0.5rem 1.5rem; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-top: 1rem; }

.sidebar-user {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-avatar {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
}
.user-info strong { display: block; color: var(--white); font-size: 0.85rem; }
.user-info span { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.main-content { flex: 1; background: #f4f6f9; overflow-y: auto; }

.topbar {
  background: var(--white);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar h2 { font-size: 1.2rem; color: var(--navy); }
.topbar-actions { display: flex; align-items: center; gap: 1rem; }

.content-area { padding: 2rem; }

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

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.icon-blue { background: #eff6ff; }
.icon-green { background: #f0fdf4; }
.icon-yellow { background: #fffbeb; }
.icon-red { background: #fef2f2; }

.stat-card-info p { font-size: 0.82rem; color: var(--gray); }
.stat-card-info h3 { font-size: 1.6rem; font-weight: 700; color: var(--navy); }

.card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.card-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-header h3 { font-size: 1rem; color: var(--navy); font-weight: 600; }
.card-body { padding: 1.5rem; }

table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 0.75rem 1rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); border-bottom: 1px solid var(--border); }
td { padding: 0.9rem 1rem; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--off-white); }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-green { background: #d1fae5; color: #065f46; }
.badge-yellow { background: #fef3c7; color: #92400e; }
.badge-red { background: #fee2e2; color: #991b1b; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-gray { background: #f3f4f6; color: #374151; }

/* ===== STEPS / ONBOARDING ===== */
.steps-bar { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 2rem; flex-wrap: wrap; }
.step-item { display: flex; align-items: center; gap: 0; }
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--white);
  position: relative;
  z-index: 1;
}
.step-circle.active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.step-circle.done { border-color: var(--success); background: var(--success); color: var(--white); }
.step-label { font-size: 0.75rem; color: var(--gray); margin-top: 4px; text-align: center; }
.step-line { width: 60px; height: 2px; background: var(--border); }
.step-line.done { background: var(--success); }

.step-panel { display: none; }
.step-panel.active { display: block; }

/* ===== UPLOAD BOX ===== */
.upload-box {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.upload-box:hover { border-color: var(--navy); background: var(--off-white); }
.upload-box input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.upload-box p { color: var(--gray); font-size: 0.9rem; }
.upload-box strong { color: var(--navy); }

.upload-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-gray);
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}
.upload-preview .file-icon { font-size: 1.5rem; }

/* ===== TERMS CHECKLIST ===== */
.terms-checklist { display: flex; flex-direction: column; gap: 0.8rem; }
.term-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.term-item:hover { border-color: var(--navy); }
.term-item input[type="checkbox"] { margin-top: 2px; width: 16px; height: 16px; cursor: pointer; accent-color: var(--navy); }
.term-item label { font-size: 0.88rem; color: #374151; cursor: pointer; line-height: 1.5; }

/* ===== RECEIPT ===== */
.receipt {
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.receipt-header { background: var(--navy); color: var(--white); padding: 1.5rem; text-align: center; }
.receipt-header h3 { font-size: 1.2rem; }
.receipt-header p { font-size: 0.85rem; opacity: 0.7; }
.receipt-body { padding: 1.5rem; }
.receipt-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.receipt-row:last-child { border-bottom: none; }
.receipt-row strong { color: var(--navy); }
.receipt-total { background: var(--off-white); padding: 1rem 1.5rem; display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; color: var(--navy); }

/* ===== LOCATION PAGE ===== */
.map-container { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.map-container iframe { width: 100%; height: 450px; border: none; display: block; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-image { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy-dark); padding: 1rem; flex-direction: column; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .sidebar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}
