/* ============================================
   COMPONENTS — Glassmorphism UI Kit
   ============================================ */

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  min-height: 44px;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(1px) scale(0.98); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
  box-shadow: 0 8px 35px rgba(245, 158, 11, 0.4);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-green), #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px var(--whatsapp-glow);
}

.btn--whatsapp:hover {
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--glass-border-hover);
  backdrop-filter: blur(8px);
}

.btn--outline:hover {
  background: var(--glass-bg-hover);
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent-subtle);
}

.btn--sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: 0.82rem;
  min-height: 36px;
}

.btn--lg {
  padding: var(--sp-4) var(--sp-8);
  font-size: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .btn--lg {
    width: auto;
  }
}

/* ---- FORM INPUTS ---- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  font-size: 16px; /* Prevents zoom on iOS */
  font-family: inherit;
}

@media (max-width: 640px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ---- GLASS CARD BASE ---- */
.card,
.service-card,
.pricing-card,
.testimonial-card,
.blog-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: all var(--transition);
}

.card:hover,
.service-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow);
  transform: translateY(-6px);
}

.card-body {
  padding: var(--sp-6);
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(160deg, var(--bg-deep) 0%, #0f172a 40%, #1a1a2e 100%);
  padding: var(--sp-24) 0 var(--sp-20);
  position: relative;
  overflow: hidden;
  clip-path: none;
  isolation: isolate;
}

/* Hero ambient orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-inner {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; }
}

.hero-badge {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--accent-light);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-xl);
  display: inline-block;
  margin-bottom: var(--sp-4);
}

.hero h1 {
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-light), var(--accent), #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.hero-price {
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid var(--glass-border);
  padding-top: var(--sp-4);
}

.hero-price strong {
  color: var(--accent-light);
  font-weight: 700;
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--glass-border);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(245, 158, 11, 0.06);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-photo:hover img {
  transform: scale(1.04);
}

/* Hero photo glass overlay */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 14, 23, 0.4) 100%);
  pointer-events: none;
}

/* ---- SERVICE PILLS ---- */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding: var(--sp-4) 0;
}

.service-pill {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  cursor: default;
}

.service-pill:hover {
  background: var(--accent-subtle);
  border-color: rgba(245, 158, 11, 0.2);
  color: var(--accent-light);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--glass-bg);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--sp-6) 0;
  position: relative;
  z-index: 1;
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item .check {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
}

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  padding: var(--sp-6);
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Glow accent on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-3);
  display: block;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.2));
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: var(--sp-2);
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.service-card a {
  font-size: 0.83rem;
  color: var(--accent);
  font-weight: 600;
  transition: all var(--transition);
}

.service-card a:hover {
  color: var(--accent-light);
  letter-spacing: 0.02em;
}

/* ---- STATS ---- */
.stats-grid {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-2);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

figure.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin: 0;
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
}

figure.gallery-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

figure.gallery-card img {
  width: 100%;
  height: 200px;
  aspect-ratio: unset;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (min-width: 640px) {
  figure.gallery-card img {
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

figure.gallery-card:hover img {
  transform: scale(1.08);
}

figure.gallery-card figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10, 14, 23, 0.9));
  color: var(--text-primary);
  padding: var(--sp-8) var(--sp-4) var(--sp-4);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

figure.gallery-card:hover figcaption {
  transform: translateY(0);
}

.gallery-card .tag {
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px var(--sp-2);
  border-radius: 4px;
  margin-bottom: var(--sp-1);
  display: inline-block;
}

.gallery-card .suburb {
  font-size: 0.72rem;
  opacity: 0.7;
  display: block;
}

.gallery-card h3 {
  font-size: 0.85rem;
  margin: var(--sp-1) 0 var(--sp-2);
}

.gallery-card .whatsapp-cta {
  background: var(--whatsapp-green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-xl);
  display: inline-block;
  transition: all var(--transition);
}

.gallery-card .whatsapp-cta:hover {
  box-shadow: 0 4px 15px var(--whatsapp-glow);
}

/* ---- TABS ---- */
.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: var(--sp-6);
}

.tab-btn {
  padding: var(--sp-3) var(--sp-6);
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  min-height: 44px;
  transition: all var(--transition);
}

.tab-btn[aria-selected='true'] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.tab-btn:hover {
  color: var(--accent-light);
}

.tab-panel { display: none; }
.tab-panel.active {
  display: block;
  animation: tabFadeIn 0.4s ease;
}

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

/* ---- FILTER BAR ---- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
}

.filter-pill {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 36px;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-deep);
}

.filter-select {
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  background: var(--glass-bg);
  color: var(--text-secondary);
  cursor: pointer;
  min-height: 36px;
}

/* ---- ACCORDION ---- */
.accordion {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
}

.accordion-item {
  border-top: 1px solid var(--glass-border);
}

.accordion-item:first-child { border-top: none; }

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-4) var(--sp-6);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  transition: all var(--transition);
}

.accordion-trigger:hover {
  background: var(--glass-bg-hover);
}

.accordion-trigger::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded='true']::after {
  content: '−';
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 var(--sp-6) var(--sp-4);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-body.open { display: block; }

/* ---- PRICING CARDS ---- */
.pricing-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow);
  border-color: var(--glass-border-hover);
}

.pricing-card--featured {
  border-color: var(--accent);
  border-width: 1.5px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), var(--glass-bg));
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ef4444, var(--accent));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.pricing-card h3 {
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: var(--sp-3) 0;
}

.pricing-card .price sup {
  font-size: 1rem;
  vertical-align: top;
  margin-top: 8px;
}

.pricing-card .section-subtitle {
  font-size: 0.88rem;
}

.pricing-card ul {
  margin: var(--sp-4) 0;
}

.pricing-card ul li {
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .process-steps { grid-template-columns: repeat(5, 1fr); }
}

.process-step {
  text-align: center;
  position: relative;
}

@media (min-width: 640px) {
  .process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 22px;
    color: var(--accent);
    font-size: 1.5rem;
    opacity: 0.5;
  }
}

.process-step .step-icon {
  width: 60px;
  height: 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto var(--sp-3);
  transition: all var(--transition);
}

.process-step:hover .step-icon {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.process-step h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--sp-1);
  color: var(--text-primary);
}

.process-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- TESTIMONIAL CARDS ---- */
.testimonial-card {
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: var(--sp-3);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.testimonial-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Swiper overrides */
.swiper { overflow: visible !important; }
.swiper-pagination { margin-top: var(--sp-6) !important; position: relative !important; }
.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 0.4 !important;
  width: 8px !important;
  height: 8px !important;
  transition: all var(--transition) !important;
}
.swiper-pagination-bullet-active {
  background: var(--accent) !important;
  opacity: 1 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(59, 130, 246, 0.06));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: var(--sp-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--text-primary);
  margin-bottom: var(--sp-3);
  position: relative;
}

.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: var(--sp-8);
  position: relative;
}

.cta-banner .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  position: relative;
}

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: max(16px, env(safe-area-inset-bottom, 0px) + 16px);
  right: max(16px, env(safe-area-inset-right, 0px) + 16px);
  z-index: 8500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--whatsapp-green), #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px var(--whatsapp-glow);
  transition: all var(--transition);
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ---- AREA PILLS ---- */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}

.area-pill {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}

.area-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px var(--accent-glow);
  transform: translateY(-2px);
}

/* ---- BLOG CARDS ---- */
.blog-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow);
  border-color: var(--glass-border-hover);
}

.blog-card-img {
  background: var(--bg-card);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: var(--sp-6);
}

.blog-meta {
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: var(--sp-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-size: 1rem;
  margin-bottom: var(--sp-2);
  color: var(--text-primary);
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

/* ---- LOCATION HERO ---- */
.location-hero {
  background: linear-gradient(135deg, var(--bg-deep), var(--bg-surface));
  color: var(--text-primary);
  padding: var(--sp-16) 0;
  text-align: center;
  position: relative;
}

.location-hero h1 { color: var(--text-primary); }

.location-hero p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: var(--sp-3) auto var(--sp-6);
}

#map {
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--glass-border);
}
