/* बालाजी ज्योतिष विभाग — Professional Theme */

:root {
  /* Lighter professional palette — warm & readable */
  --brand: #8B3A4A;
  --brand-dark: #6B2D3A;
  --brand-soft: #A85566;
  --navy: #1E3A5F;
  --navy-mid: #2C4F7A;
  --navy-light: #3D6294;
  --gold: #C4A35A;
  --gold-light: #E0C992;
  --gold-pale: #FBF7EF;
  --cream: #FDFCFA;
  --surface: #FFFFFF;
  --surface-alt: #F8F6F3;
  --text: #2A2520;
  --text-secondary: #4A4540;
  --text-muted: #7A756E;
  --border: #EBE8E3;
  --border-gold: rgba(196, 163, 90, 0.45);
  --shadow-sm: 0 1px 3px rgba(42, 37, 32, 0.04);
  --shadow: 0 4px 24px rgba(42, 37, 32, 0.06);
  --shadow-lg: 0 12px 44px rgba(42, 37, 32, 0.09);
  --radius: 10px;
  --radius-lg: 16px;
  --header-h: 72px;
  --topbar-h: 36px;
  --font: 'Noto Sans Devanagari', system-ui, sans-serif;
  --font-en: 'Poppins', var(--font);
  --ease: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h));
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Topbar ── */
.topbar {
  background: linear-gradient(90deg, var(--navy-mid), var(--navy));
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
  border-bottom: 1px solid var(--border-gold);
}

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
}

.nav__logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--brand-soft), var(--brand));
  color: var(--gold-light);
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 700;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.nav__logo-text {
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.3;
  color: var(--navy);
}

.nav__phone {
  display: none;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  letter-spacing: 0.3px;
}

.nav__phone:hover {
  background: var(--brand-dark);
  box-shadow: var(--shadow);
}

.nav__toggle-input { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: var(--ease);
}

.nav__menu { display: flex; align-items: center; gap: 4px; }

.nav__menu a {
  color: var(--text-secondary);
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
}

.nav__menu a:hover { color: var(--brand); background: var(--gold-pale); }
.nav__menu a.nav__active { color: var(--brand); font-weight: 600; }

.nav__cta {
  background: var(--brand) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.nav__cta:hover { background: var(--brand-dark) !important; }

@media (min-width: 769px) { .nav__phone { display: inline-flex; } }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 88vw);
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-h) + 16px) 20px 32px;
    box-shadow: var(--shadow-lg);
    border-left: 1px solid var(--border);
    transition: right 0.3s ease;
  }
  .nav__menu a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }
  .nav__cta { margin-top: 12px; text-align: center; }
  .nav__toggle-input:checked ~ .nav__menu { right: 0; }
  .nav__toggle-input:checked ~ .nav__toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle-input:checked ~ .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav__toggle-input:checked ~ .nav__toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.2px;
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn--dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn--dark:hover {
  background: var(--navy-mid);
  box-shadow: var(--shadow);
}

.btn--light {
  background: var(--surface);
  color: var(--brand);
  border-color: var(--border);
}

.btn--light:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 48px 0 64px;
  overflow: hidden;
  background: var(--navy);
}

.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(30,58,95,0.88) 0%, rgba(139,58,74,0.82) 100%);
}

.hero__particles { display: none; }

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero__content { color: #fff; }

.hero__badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(184,151,74,0.15);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.hero__org {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #fff;
}

.hero__subtitle {
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
  line-height: 1.65;
  font-weight: 400;
}

.hero__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 480px;
}

.hero__stat {
  flex: 1;
  min-width: 100px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  text-align: center;
}

.hero__stat strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 2px;
}

.hero__stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
}

.hero__card img {
  border-radius: calc(var(--radius-lg) - 4px);
  width: 100%;
}

.hero__card-cap {
  text-align: center;
  padding: 14px 10px 8px;
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__stats { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero__card { max-width: 380px; margin: 0 auto; }
  .hero { min-height: auto; padding: 40px 0 56px; }
}

/* ── Trust strip ── */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__item {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.trust-strip__item:last-child { border-right: none; }

.trust-strip__item strong {
  display: block;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-strip__item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item:nth-child(2) { border-right: none; }
  .trust-strip__item { border-bottom: 1px solid var(--border); }
}

/* ── Sections ── */
.section { padding: 80px 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--surface-alt); }
.section--white { background: var(--surface); }

.section__header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
}

.section__divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.section__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.section__header--left { text-align: left; margin-left: 0; margin-right: 0; max-width: none; }
.section__header--left .section__divider { margin-left: 0; }
.section__desc--left { margin-left: 0; }
.section__header--mb { margin-bottom: 28px; }

/* ── About ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about__main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about__float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--surface);
  box-shadow: var(--shadow);
}

.about__visual { position: relative; }

.about__content h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-pale);
}

.about__content p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.about__features { display: grid; gap: 12px; margin: 24px 0 28px; }

.about__feature {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.about__feature:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.about__feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  color: var(--brand);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid var(--border-gold);
}

.about__feature strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.about__feature span { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__float { width: 90px; right: 8px; }
}

/* ── Why ── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.why__card {
  background: var(--surface);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.why__card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-gold);
}

.why__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: 50%;
  font-size: 1.25rem;
  color: var(--brand);
  border: 1px solid var(--border-gold);
}

.why__card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.why__card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── Services ── */
.services {
  background: linear-gradient(165deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: #fff;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services .section__title { color: #fff; }
.services .section__desc { color: rgba(255,255,255,0.72); }
.services .section__tag { color: var(--gold-light); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 16px;
}

.service-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: background var(--ease), border-color var(--ease);
}

.service-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold-light);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,151,74,0.15);
  color: var(--gold-light);
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid var(--border-gold);
}

.service-card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── Rituals ── */
.rituals__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.rituals__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.rituals__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.rituals__content h3,
.rituals__content .section__tag { text-align: left; }

.rituals__content h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 700;
}

.rituals__content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.rituals__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rituals__tags li {
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--brand);
  font-weight: 500;
}

.rituals__wide {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.rituals__wide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (max-width: 900px) { .rituals__grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq__item summary {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 400;
  font-family: var(--font-en);
}

.faq__item[open] summary::after { content: '−'; }

.faq__item p {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  margin: 0;
  padding-top: 14px;
}

/* ── Gallery preview ── */
.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-preview__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.gallery-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-preview__item:hover img { transform: scale(1.05); }

.gallery-preview__item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 12px 12px;
  background: linear-gradient(transparent, rgba(21,34,56,0.85));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}

.gallery-preview__cta { text-align: center; margin-top: 32px; }

@media (max-width: 900px) { .gallery-preview__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-preview__grid { grid-template-columns: 1fr; } }

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 56px 0;
  border-top: 3px solid var(--gold-light);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta h2 {
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
}

.cta p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 560px;
}

.cta__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
}

.cta .btn--primary {
  background: var(--surface);
  color: var(--brand);
  border-color: var(--surface);
}

.cta .btn--primary:hover {
  background: var(--gold-pale);
  color: var(--brand-dark);
}

/* ── Page hero ── */
.page-hero {
  position: relative;
  padding: 56px 0 48px;
  text-align: center;
  color: #fff;
  background: var(--navy);
}

.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(30,58,95,0.9), rgba(139,58,74,0.82));
}

.page-hero__content { position: relative; z-index: 1; }

.page-hero__crumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.page-hero__crumb a:hover { color: var(--gold-light); }

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.8); }

/* ── Gallery full ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.gallery__item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery__item:hover img { transform: scale(1.04); }

.gallery__cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.gallery__cta p { color: var(--text-muted); margin-bottom: 16px; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.contact-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  color: var(--brand);
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0.5px;
  border: 1px solid var(--border-gold);
}

.contact-card strong {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-card p, .contact-card a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  word-break: break-word;
}

.contact-card a:hover { color: var(--brand); }

.contact-card__hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 400;
}

.contact-note {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border-left: 4px solid var(--gold-light);
}

.contact-note p { font-size: 0.92rem; line-height: 1.75; }
.contact-note p + p { margin-top: 10px; opacity: 0.8; font-size: 0.85rem; }

.contact-side__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 14px;
}

.info-box h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-pale);
}

.info-box li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.info-box li:last-child { border-bottom: none; }
.info-box li strong { color: var(--brand); font-weight: 600; }

.info-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.map-section {
  background: var(--surface-alt);
  padding: 56px 0 72px;
  border-top: 1px solid var(--border);
}

.map-section h2,
.map-block h2 {
  text-align: center;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.map-frame,
.map-section__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  max-height: 400px;
}

.map-frame iframe,
.map-section__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 260px;
}

.map-addr,
.map-section__address {
  text-align: center;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-side { order: -1; }
  .contact-side__img { max-width: 400px; margin: 0 auto 18px; }
}

/* ── Footer ── */
.footer {
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: rgba(255,255,255,0.78);
  padding: 48px 0 0;
  border-top: 3px solid var(--gold-light);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo span:first-child {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,151,74,0.2);
  color: var(--gold-light);
  border-radius: var(--radius);
  font-weight: 700;
  border: 1px solid var(--border-gold);
}

.footer__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.footer__sub {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.footer__addr {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 300px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.footer__links a:hover { color: var(--gold-light); }

.footer__contact a {
  display: block;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.footer__contact a:hover { color: #fff; }

.footer__bottom {
  padding: 16px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__addr { max-width: 100%; margin: 0 auto; }
  .footer__links, .footer__contact { align-items: center; }
}

/* ── Footer Quick Services Menu ── */
.footer-quick {
  background: linear-gradient(165deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: 40px 0 48px;
  border-radius: 40px 40px 0 0;
  margin-top: 0;
}

.footer-quick__title {
  text-align: center;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.footer-quick__list {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  padding-left: 28px;
}

.footer-quick__list::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(255,255,255,0.35);
}

.footer-quick__list li {
  position: relative;
  margin-bottom: 12px;
}

.footer-quick__list li::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  z-index: 1;
}

.footer-quick__link {
  display: block;
  padding: 12px 20px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--brand-dark) !important;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.footer-quick__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
  background: #fff;
}

.footer-quick__phone {
  text-align: center;
  margin-top: 28px;
}

.footer-quick__phone a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 1px;
}

.footer-quick__phone a:hover { color: var(--gold-light); }

/* ── Service page content ── */
.service-page {
  padding: 48px 0 64px;
}

.service-page__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.service-page__main h2 {
  color: var(--navy);
  font-size: 1.2rem;
  margin: 28px 0 12px;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-pale);
}

.service-page__main h2:first-of-type { margin-top: 0; }

.service-page__main p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 0.96rem;
  line-height: 1.8;
}

.service-page__list {
  margin: 12px 0 20px;
  padding-left: 0;
}

.service-page__list li {
  padding: 10px 14px 10px 36px;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.service-page__list li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  color: var(--brand);
  font-weight: 700;
}

.service-page__side {
  position: sticky;
  top: calc(var(--header-h) + var(--topbar-h) + 16px);
}

.service-page__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.service-page__cta-box {
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
}

.service-page__cta-box h3 {
  color: var(--brand);
  font-size: 1rem;
  margin-bottom: 12px;
}

.service-page__cta-box .btn { width: 100%; margin-bottom: 10px; }

@media (max-width: 900px) {
  .service-page__grid { grid-template-columns: 1fr; }
  .service-page__side { position: static; }
  .service-page__img { max-width: 400px; margin: 0 auto 16px; }
}

/* ── Mobile floating Call & WhatsApp ── */
.mobile-floats {
  display: none;
}

@media (max-width: 768px) {
  body { padding-bottom: 88px; }

  .mobile-floats {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px 16px;
    pointer-events: none;
  }

  .mobile-float {
    pointer-events: auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    border: 3px solid #fff;
    transition: transform var(--ease);
  }

  .mobile-float:active { transform: scale(0.95); }

  .mobile-float--call {
    background: linear-gradient(145deg, var(--brand-soft), var(--brand));
    color: #fff;
  }

  .mobile-float--wa {
    background: linear-gradient(145deg, #25D366, #128C7E);
    color: #fff;
  }

  .mobile-float svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
  }

  .fab { display: none !important; }
}

/* ── FAB (desktop fallback) ── */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-soft), var(--brand));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(139, 58, 74, 0.35);
  border: 2px solid var(--surface);
  font-size: 1.35rem;
}

@media (max-width: 768px) {
  .fab { display: none; }
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .hero__actions .btn { width: 100%; }
  .cta__inner { flex-direction: column; text-align: center; }
  .cta__btns { width: 100%; }
}
