/* ================================================
   Balaji Matha & Temple — Redesigned CSS
   Aesthetic: Sacred / Refined / Warm Gold & Deep Burgundy
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Cinzel:wght@400;600;700&family=Noto+Sans:wght@300;400;500&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9922A;
  --gold-light: #E8B84B;
  --gold-pale: #F5DFA0;
  --gold-bg: #FDF8EE;
  --burgundy: #6B1F2A;
  --burgundy-dark: #4A0F18;
  --burgundy-light: #9B3D4A;
  --cream: #FAF6F0;
  --warm-white: #FFFDF9;
  --text-dark: #2C1810;
  --text-mid: #5A3A2A;
  --text-light: #8B6B5A;
  --border: #E5D5B0;
  --shadow-warm: 0 4px 40px rgba(201, 146, 42, 0.15);
  --shadow-deep: 0 8px 60px rgba(44, 24, 16, 0.2);
  --nav-height: 92px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  line-height: 1.25;
  color: var(--burgundy-dark);
}

p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--text-mid); }

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--burgundy); }

img { max-width: 100%; height: auto; display: block; }

/* ===== ORNAMENT ===== */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 10px auto;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light));
}
.ornament::after { background: linear-gradient(to left, transparent, var(--gold-light)); }
.ornament span { color: var(--gold); font-size: 1.4rem; }

/* ===== TOP BAR ===== */
.top-info-bar {
  background: var(--saffron);
  color: var(--burgundy-dark);
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 6px 0;
}
.top-info-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-info-bar a { color: var(--burgundy-dark); text-decoration: underline; }
.top-info-bar a:hover { color: #000; }

/* ===== NAVBAR ===== */
/* Saffron-and-cream scheme — matches original temple branding */
:root {
  --saffron:       #FF9933;   /* Hindu saffron */
  --saffron-deep:  #E07820;   /* darker saffron for text on light */
  --saffron-pale:  #FFF4E6;   /* near-white saffron tint */
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fffaf4;              /* warm cream — original feel */
  border-bottom: 3px solid var(--saffron);
  box-shadow: 0 2px 16px rgba(255,153,51,0.18);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 2rem;
}

/* Logo: image on top, text stacked below */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-decoration: none;
}
.nav-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-text .name {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.0rem;
  color: var(--burgundy-dark);
  line-height: 1.2;
}
.nav-logo-text .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  color: var(--saffron-deep);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: var(--nav-height);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li.active > a { color: var(--saffron-deep); }

/* Active underline in saffron */
.nav-links > li.active > a {
  position: relative;
}
.nav-links > li.active > a::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--saffron);
  border-radius: 1px;
}

/* Dropdown */
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--saffron);
  box-shadow: var(--shadow-deep);
  min-width: 260px;
  padding: 8px 0;
  z-index: 200;
}
.nav-links li:hover .dropdown-menu { display: block; animation: fadeDown 0.25s ease; }
.nav-links .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--text-mid);
  transition: all 0.2s;
}
.nav-links .dropdown-menu a:hover {
  background: var(--gold-bg);
  color: var(--burgundy);
  padding-left: 26px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy-dark);
  transition: all 0.3s;
}

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, #3A1520 40%, #5A2A10 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/temple/Balaji.jpeg') center/cover no-repeat;
  opacity: 0.18;
  filter: saturate(0.6);
}
.hero-mandala {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,146,42,0.2);
  opacity: 0.5;
}
.hero-mandala::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201,146,42,0.25);
}
.hero-mandala::after {
  content: '';
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201,146,42,0.3);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 2rem;
}
.hero-om {
  font-size: 3rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: block;
  opacity: 0.9;
}
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1.15;
  margin-bottom: 8px;
}
.hero h1 span {
  display: block;
  font-size: 0.65em;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: rgba(245,223,160,0.85);
  font-style: italic;
  margin: 20px 0 32px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary-gold {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--burgundy-dark);
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-primary-gold:hover {
  background: var(--gold-light);
  color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,146,42,0.4);
}
.btn-outline-gold {
  display: inline-block;
  padding: 13px 30px;
  background: transparent;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold-light);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-outline-gold:hover {
  background: rgba(201,146,42,0.15);
  color: white;
  border-color: white;
}

/* ===== SCROLL TICKER ===== */
.pooja-ticker {
  background: var(--gold);
  color: var(--burgundy-dark);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.pooja-ticker .ticker-inner {
  display: inline-block;
  animation: ticker 35s linear infinite;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.pooja-ticker .ticker-inner span {
  margin: 0 30px;
  opacity: 0.7;
}
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ===== SECTION BASE ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--burgundy-dark); }

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

.section-header {
  text-align: center;
  margin-bottom: 54px;
}
.section-header .label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: block;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--burgundy-dark);
  margin-bottom: 14px;
}
.section-header p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.section-dark .section-header h2 { color: var(--gold-pale); }
.section-dark .section-header p { color: rgba(245,223,160,0.75); }
.section-dark .section-header .label { color: var(--gold-light); }

/* ===== CARDS / GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: white;
  border: 1px solid var(--border);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-warm); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--gold);
}
.card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--burgundy-dark);
}
.card p { font-size: 1rem; }

/* ===== POOJA SCHEDULE ===== */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}
.schedule-table thead tr {
  background: var(--burgundy-dark);
  color: var(--gold-pale);
}
.schedule-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.schedule-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.schedule-table tbody tr:hover { background: var(--gold-bg); }
.schedule-table td { padding: 14px 20px; color: var(--text-mid); }
.schedule-table td:last-child {
  color: var(--burgundy);
  font-weight: 600;
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
}

/* ===== PURPOSE BAND ===== */
.purpose-band {
  background: linear-gradient(135deg, var(--burgundy-dark), #3D1020);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.purpose-band::before {
  content: 'ॐ';
  position: absolute;
  font-size: 18rem;
  color: rgba(255,255,255,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: serif;
  pointer-events: none;
}
.purpose-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--gold-pale);
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.purpose-band cite {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  display: block;
}

/* ===== LOCATION CARDS ===== */
.location-card {
  background: white;
  border: 1px solid var(--border);
  padding: 28px;
  border-left: 4px solid var(--gold);
}
.location-card h4 {
  font-size: 0.95rem;
  color: var(--burgundy-dark);
  margin-bottom: 10px;
}
.location-card p { font-size: 0.95rem; }

/* ===== CHARITY PROGRAM SECTION ===== */
.charity-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.charity-item {
  background: var(--cream);
  padding: 24px;
  border-top: 3px solid var(--gold);
  text-align: center;
  transition: all 0.3s;
}
.charity-item:hover {
  background: white;
  box-shadow: var(--shadow-warm);
  transform: translateY(-3px);
}
.charity-item .ci-icon { font-size: 2rem; margin-bottom: 12px; }
.charity-item h4 { font-size: 0.88rem; color: var(--burgundy-dark); }

/* ===== CONTRIBUTE BAND ===== */
.contribute-band {
  background: var(--gold-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
  text-align: center;
}
.contribute-band h3 {
  font-size: 1.5rem;
  color: var(--burgundy-dark);
  margin-bottom: 14px;
}
.contribute-band p {
  max-width: 620px;
  margin: 0 auto 24px;
  font-size: 1rem;
}
.contribute-band .payment-methods {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.payment-pill {
  background: white;
  border: 1px solid var(--border);
  padding: 10px 24px;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-mid);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, #3A1520 100%);
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-header h1 {
  font-family: 'Cinzel', serif;
  color: var(--gold-pale);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(245,223,160,0.6);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(245,223,160,0.4); }

/* ===== CONTENT BLOCK ===== */
.content-block {
  background: white;
  border: 1px solid var(--border);
  padding: 50px 56px;
  box-shadow: var(--shadow-warm);
}
.content-block h2 { margin-bottom: 20px; font-size: 1.8rem; }
.content-block h3 { margin: 30px 0 12px; font-size: 1.15rem; color: var(--gold); }
.content-block p { margin-bottom: 18px; font-size: 1.1rem; }
.content-block ul { margin: 10px 0 18px 20px; }
.content-block ul li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.content-block .quote-callout {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--gold-bg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--burgundy);
  margin: 28px 0;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 15, 24, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ===== ZOOM CARD ===== */
.zoom-card {
  background: linear-gradient(135deg, var(--burgundy-dark), #3D1020);
  border: 1px solid rgba(201,146,42,0.3);
  padding: 36px;
  text-align: center;
  color: var(--gold-pale);
}
.zoom-card h3 { color: var(--gold-pale); margin-bottom: 12px; }
.zoom-card p { color: rgba(245,223,160,0.75); margin-bottom: 20px; }
.zoom-card a.zoom-link {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--burgundy-dark);
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.zoom-card a.zoom-link:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer.site-footer {
  background: var(--burgundy-dark);
  color: rgba(245,223,160,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold-pale);
  margin-bottom: 8px;
  display: block;
}
.footer-brand p {
  font-size: 0.95rem;
  color: rgba(245,223,160,0.6);
  margin-bottom: 20px;
}
.footer-nav h5 {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-nav ul { list-style: none; }
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav ul li a {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(245,223,160,0.6);
  transition: color 0.3s;
}
.footer-nav ul li a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  font-family: 'Noto Sans', sans-serif;
  color: rgba(245,223,160,0.65);
}
.footer-contact-item .icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(201,146,42,0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(245,223,160,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,146,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.social-links a:hover {
  background: var(--gold);
  color: var(--burgundy-dark);
  border-color: var(--gold);
}

/* ===== DIVIDER ===== */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto;
}
.gold-divider.left { margin-left: 0; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-40 { margin-top: 40px !important; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col.align-center { align-items: center; }

/* ===== IMAGE ===== */
.img-frame {
  position: relative;
}
.img-frame img {
  width: 100%;
  display: block;
}
.img-frame::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  left: 12px;
  top: 12px;
  border: 2px solid var(--gold-pale);
  z-index: -1;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .content-block { padding: 32px 24px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    padding: 16px 0;
    height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    box-shadow: var(--shadow-deep);
  }
  .nav-links > li > a {
    height: auto;
    line-height: normal;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background: var(--gold-bg);
    padding: 0;
  }
  .nav-links .dropdown-menu.open { display: block; }
  .nav-toggle { display: flex; }
  .hero { min-height: 70vh; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-info-bar .container { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .section { padding: 52px 0; }
  .card { padding: 24px 20px; }
  .content-block { padding: 24px 18px; }
  .hero-content { padding: 40px 1.5rem; }
}
