/* ============================================================
   GOPAL SONI — BCR Election 2026
   Clean, framework-free CSS
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --blue:       #C76E00;
  --blue-dark:  #660000;
  --cream:        #fff8f0;
  --cream-dark:   #f5e6d3;
  --gold:         #0B3C5D;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #5c5e60;

  --font-main:  ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-hindi: 'Tiro Devanagari Hindi', ui-sans-serif, system-ui, sans-serif;

  --radius-sm:  0.375rem;
  --radius-md:  0.5rem;
  --radius-lg:  0.75rem;
  --radius-xl:  1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-pill: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.14);
  --shadow-xl:  0 16px 48px rgba(0,0,0,.18);
  --shadow-2xl: 0 24px 64px rgba(0,0,0,.22);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-weight: 500;
  background-color: var(--cream);
  color: var(--slate-900);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
}

/* ── Hindi / Devanagari font helpers ──────────────────────── */
.hero-badge, .brand-name, .hero-title, .hero-desc,
.candidate-name, .candidate-meta, .hero-actions .btn--primary,
.hero-actions .btn--outline,
.vote-reminder__title, .vote-reminder__text, .vote-reminder__highlight,
.gallery-label, .gallery-title, .gallery-desc,
.gallery-card__title, .gallery-card__text,
.gallery-quote__text, .gallery-quote__sub,
.section-title--blue,
.commitment-title,
.about-title, .quote-box__text, .quote-box__author,
.contact-title, .contact-card__title, .contact-card__info,
.contact-card__highlight, .cta-banner__title, .cta-banner__text,
.footer-brand__name, .footer-nav__link,
.text-maroon {
  font-family: var(--font-hindi), var(--font-main);
}

/* ── Layout: Container ────────────────────────────────────── */
.container {
  max-width: 80rem;   /* ~1280px */
  margin: 0 auto;
  padding: 0 1rem;
}

.container--narrow {
  max-width: 64rem;   /* ~1024px */
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ── Shared helpers ───────────────────────────────────────── */
.text-maroon     { color: var(--blue); }
.text-gold       { color: var(--gold); }
.text-bold       { font-weight: 700; }
.text-underline-gold {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1.125rem;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-xl);
}
.btn--primary:hover {
  background-color: var(--blue-dark);
}

.btn--outline {
  background-color: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-lg);
}
.btn--outline:hover {
  background-color: var(--cream);
}

/* ── Section shared styles ────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 1rem;
}
.search-section-header {
  text-align: center;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1.2;
}
.section-title--blue { color: var(--blue); }

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
  font-weight: 500;
  margin-top: 0.75rem;
}

.section-divider {
  width: 8rem;
  height: 6px;
  background-color: var(--gold);
  border-radius: var(--radius-pill);
  margin: 1rem auto 0;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
  .section-subtitle { font-size: 1.25rem; }
  .section-header { margin-bottom: 4rem; }
  .search-section-header { margin-bottom: 2rem; }
}


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
}

@media (min-width: 768px) {
  .brand-name { font-size: 1.5rem; }
}
.brand-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Desktop nav */
.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--slate-700);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--blue); }

.vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--blue);
  color: #fff;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: background-color 0.2s, transform 0.2s;
}
.vote-btn:hover {
  background-color: var(--blue-dark);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .main-nav { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* Mobile hamburger */
.mobile-menu-btn {
  color: var(--blue);
  padding: 0.5rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile nav open state */
.main-nav.nav--open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  z-index: 100;
}

.main-nav.nav--open .nav-link {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 2.5rem 0 5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream) 70%, #fff7ed 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 8rem 0; }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

/* Left content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--blue);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-lg);
  width: fit-content;
}
@media (min-width: 768px) {
  .hero-badge { font-size: 1rem; }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1.25;
}
@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
}

.hero-desc {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--slate-700);
  line-height: 1.625;
}
@media (min-width: 768px) {
  .hero-desc { font-size: 1.5rem; }
}

/* Candidate card */
.candidate-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-3xl);
  border-left: 8px solid var(--blue);
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .candidate-card { padding: 2rem; }
}

.candidate-card__bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  opacity: 0.1;
  color: var(--blue);
  pointer-events: none;
  transition: transform 0.3s;
}
.candidate-card:hover .candidate-card__bg-icon {
  transform: scale(1.1);
}

.candidate-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.candidate-meta {
  color: var(--slate-600);
  line-height: 1.6;
}
.candidate-meta--bold { font-weight: 600; }

.candidate-contact-row {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .candidate-contact-row { flex-direction: row; }
}

.candidate-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  transition: color 0.2s;
}
.candidate-phone svg { color: var(--blue); }
.candidate-phone:hover { color: var(--blue); }

/* CTA buttons row */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
}

/* Right photo */
.hero-photo-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background-color: rgba(11, 60, 93, 0.05);
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-photo-frame {
  position: relative;
}

.hero-photo {
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  border: 8px solid #fff;
  max-width: 100%;
  height: auto;
  z-index: 10;
  transition: transform 0.5s;
}
.hero-photo:hover { transform: scale(1.02); }

.election-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--gold);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: rotate(3deg);
  z-index: 20;
}
@media (min-width: 768px) {
  .election-badge {
    bottom: -2.5rem;
    right: -2.5rem;
    padding: 1.5rem;
  }
}

.election-badge__text {
  text-align: center;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .election-badge__text { font-size: 1.5rem; }
}

.election-badge__sub {
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .election-badge__sub { font-size: 1rem; }
}


/* ============================================================
   VOTER SEARCH
   ============================================================ */
.voter-search {
  padding: 6rem 0;
  background-color: #fff;
}

.search-box {
  position: relative;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.search-box__icon {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  color: var(--slate-400);
  pointer-events: none;
}

.search-box__input {
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem 1.25rem 4rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-3xl);
  background-color: #fff;
  font-size: 1.25rem;
  font-family: var(--font-hindi), var(--font-main);
  color: var(--slate-900);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.search-box__input::placeholder {
  color: var(--slate-400);
}
.search-box__input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 60, 93, 0.12);
}

@media (min-width: 768px) {
  .search-box__input { padding: 1.5rem 1.5rem 1.5rem 4.5rem; }
}

/* Results grid */
.results-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .results-grid { grid-template-columns: 1fr 1fr; }
}

/* Vote reminder banner */
.vote-reminder {
  background-color: var(--blue);
  color: #fff;
  padding: 2rem 2.5rem;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .vote-reminder { padding: 2.5rem; }
}

.vote-reminder__icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  opacity: 0.2;
  pointer-events: none;
}

.vote-reminder__body {
  position: relative;
  z-index: 10;
  text-align: center;
}

.vote-reminder__title {
  font-size: 1.5rem;
  font-weight: 900;
}
@media (min-width: 768px) {
  .vote-reminder__title { font-size: 1.875rem; }
}

.vote-reminder__text {
  font-size: 1.25rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .vote-reminder__text { font-size: 1.875rem; }
}

.vote-reminder__highlight {
  font-weight: 900;
  color: var(--gold);
}

.vote-reminder__divider {
  width: 6rem;
  height: 4px;
  background-color: var(--gold);
  border-radius: var(--radius-pill);
  margin: 1rem auto 0;
}

/* Voter result card (generated by JS) */
.voter-card {
  background: #fff;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s;
}
.voter-card:hover { box-shadow: var(--shadow-lg); }

.voter-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.voter-card__badge {
  background-color: var(--blue);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

.voter-card__date {
  color: var(--slate-500);
  font-size: 0.875rem;
  font-weight: 500;
}

.voter-card__name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.voter-card__details {
  color: var(--slate-600);
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.voter-card__request {
  display: block;
  margin-top: 1rem;
}
.voter-card__label { font-weight: 600; }

.search-instructions {
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(11, 60, 93, 0.05);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--slate-700);
}

/* Title */
.search-instructions p {
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  color: var(--blue);
}

/* List */
.search-instructions ol {
  margin: 0;
  padding-left: 1.25rem; /* controls alignment */
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* List items */
.search-instructions li {
  line-height: 1.5;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 50%, var(--slate-900) 100%);
  color: #fff;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(169, 113, 66, 0.2);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.gallery-title {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .gallery-title { font-size: 3rem; }
}

.gallery-desc {
  font-size: 1.125rem;
  color: var(--slate-300);
  max-width: 48rem;
  margin: 0 auto 1rem;
}
@media (min-width: 768px) {
  .gallery-desc { font-size: 1.25rem; }
}

.gallery-divider {
  width: 8rem;
  height: 6px;
  background-color: var(--gold);
  border-radius: var(--radius-pill);
  margin: 0 auto;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-card {
  background-color: var(--slate-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

@media (min-width: 768px) {
  .gallery-card--wide { grid-column: span 2; }
}

.gallery-card__media {
  overflow: hidden;
}
.gallery-card__media--portrait {
  aspect-ratio: 3 / 4;
}
.gallery-card__media--video {
  aspect-ratio: 16 / 9;
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-card:hover .gallery-card__image { transform: scale(1.1); }
.gallery-card--wide:hover .gallery-card__image { transform: scale(1.05); }

.gallery-card__body {
  padding: 1.25rem 1.5rem;
}

.gallery-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.gallery-card__title--lg { font-size: 1.25rem; }

.gallery-card__text {
  color: var(--slate-300);
  line-height: 1.5;
}
.gallery-card__text--sm { font-size: 0.875rem; }

/* Gallery bottom quote */
.gallery-quote-wrap {
  margin-top: 3rem;
  text-align: center;
}

.gallery-quote {
  display: inline-block;
  background-color: rgba(169, 113, 66, 0.1);
  border: 1px solid rgba(169, 113, 66, 0.3);
  border-radius: var(--radius-3xl);
  padding: 2rem 2.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .gallery-quote { padding: 2.5rem; }
}

.gallery-quote__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}
@media (min-width: 768px) {
  .gallery-quote__text { font-size: 1.5rem; }
}

.gallery-quote__sub {
  color: var(--slate-300);
  margin-top: 1rem;
}


/* ============================================================
   PLEDGE / COMMITMENT
   ============================================================ */
.pledge {
  padding: 6rem 0;
  background-color: var(--cream);
}

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

.commitment-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-xl);
  border-bottom: 8px solid transparent;
  transition: border-color 0.2s;
}
.commitment-card:hover {
  border-bottom-color: var(--blue);
}

.commitment-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(11, 60, 93, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--blue);
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
}
.commitment-card:hover .commitment-icon {
  background-color: var(--blue);
  color: #fff;
  transform: scale(1.1);
}

.commitment-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.commitment-text {
  color: var(--slate-600);
  font-weight: 500;
  line-height: 1.625;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 6rem 0;
  background-color: #fff;
  overflow: hidden;
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-image-wrap {
  position: relative;
}

.about-image-bg {
  position: absolute;
  inset: -1rem;
  background-color: rgba(11, 60, 93, 0.05);
  border-radius: 3rem;
  transform: rotate(-3deg);
}

.about-image {
  position: relative;
  z-index: 10;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  width: 100%;
  height: auto;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .about-title { font-size: 3rem; }
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-bullet {
  flex-shrink: 0;
  margin-top: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(169, 113, 66, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.about-list-item > span:last-child {
  font-size: 1.125rem;
  color: var(--slate-700);
  font-weight: 500;
}
@media (min-width: 768px) {
  .about-list-item > span:last-child { font-size: 1.25rem; }
}

/* Quote box */
.quote-box {
  background-color: var(--blue);
  padding: 2.5rem;
  border-radius: var(--radius-3xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.quote-box__icon {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5rem;
  opacity: 0.2;
  transform: rotate(12deg);
  color: #fff;
  pointer-events: none;
}

.quote-box__text {
  position: relative;
  z-index: 10;
  color: #fff;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.625;
  text-align: center;
}
@media (min-width: 768px) {
  .quote-box__text { font-size: 1.875rem; }
}

.quote-box__author {
  position: relative;
  z-index: 10;
  margin-top: 1.5rem;
  text-align: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .quote-box__author { font-size: 1.5rem; }
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 6rem 0;
  background-color: var(--cream);
  overflow: hidden;
  text-align: center;
}

.contact-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .contact-title { font-size: 3rem; }
}

.contact-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-xl);
  border-top: 8px solid var(--blue);
}

.contact-card__icon-wrap {
  width: 4rem;
  height: 4rem;
  background-color: var(--cream);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--blue);
}

.contact-card__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--slate-900);
  margin-bottom: 1rem;
}

.contact-card__info {
  color: var(--slate-600);
  font-weight: 500;
  line-height: 1.625;
}

.contact-card__highlight {
  color: var(--blue);
  font-weight: 900;
}

.contact-card__phones {
  margin-bottom: 1rem;
}

.contact-phone-link {
  display: block;
  color: var(--slate-700);
  font-weight: 700;
  font-size: 1.25rem;
  transition: color 0.2s;
}
.contact-phone-link:hover { color: var(--blue); }

/* Social links in contact card */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}
.social-link:hover { transform: scale(1.1); }

.social-link--instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}
.social-link--facebook {
  background-color: #1877f2;
}

/* CTA banner */
.cta-banner {
  background-color: var(--blue);
  color: #fff;
  padding: 3rem;
  border-radius: 3rem;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-banner { padding: 3rem 4rem; }
}

.cta-banner__underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 8px;
  background-color: var(--gold);
  transition: width 1s ease;
  transform-origin: left center;
}
.cta-banner:hover .cta-banner__underline {
  width: 100%;
}

.cta-banner__body {
  position: relative;
  z-index: 10;
}

.cta-banner__title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cta-banner__title { font-size: 3rem; }
}

.cta-banner__text {
  font-size: 1.25rem;
  line-height: 1.625;
  opacity: 0.9;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .cta-banner__text { font-size: 1.5rem; }
}

.cta-banner__highlight {
  color: var(--gold);
  font-weight: 900;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--slate-900);
  color: #fff;
  padding: 5rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer-brand__name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.footer-brand__copy {
  color: var(--slate-400);
  font-weight: 500;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-weight: 500;
}

.footer-nav__link {
  color: #fff;
  transition: color 0.2s;
}
.footer-nav__link:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-contact { align-items: flex-end; }
}

.footer-phone {
  color: var(--slate-400);
  transition: color 0.2s;
}
.footer-phone:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social__link {
  color: var(--slate-400);
  transition: color 0.2s;
}
.footer-social__link--instagram:hover { color: #f472b6; }
.footer-social__link--facebook:hover  { color: #60a5fa; }

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.whatsapp-float:active {
  transform: scale(0.95);
}