/* =============================================
   POORNACHANDRA SEVA TRUST — style.css
   ============================================= */

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

:root {
  --red: #C0392B;
  --red-light: #FDECEA;
  --red-mid: #E06050;
  --green: #1A5C2A;
  --green-light: #E8F5EC;
  --green-mid: #3A8C4E;
  --gold: #C4882A;
  --gold-light: #FDF4E3;
  --gold-mid: #E8A84A;
  --cream: #FAF8F4;
  --white: #ffffff;
  --text: #1A0F0A;
  --text-muted: #6B5040;
  --border: rgba(100, 50, 30, 0.12);
  --shadow: 0 2px 16px rgba(100, 50, 30, 0.08);
  --shadow-lg: 0 8px 40px rgba(100, 50, 30, 0.13);
  --font-d: 'Cormorant Garamond', serif;
  --font-b: 'DM Sans', sans-serif;
  --r: 12px;
  --rs: 8px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── NAV ─────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--red);
}
.nav-en {
  font-family: var(--font-d); font-size: 17px;
  font-weight: 600; color: var(--red); line-height: 1.1;
}
.nav-kn { font-size: 11px; color: var(--green); font-weight: 500; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-size: 13.5px; color: var(--text-muted);
  text-decoration: none; font-weight: 400; transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-links .dbtn {
  background: var(--red); color: white;
  padding: 8px 20px; border-radius: 40px;
  font-weight: 500; font-size: 13px; transition: all 0.2s;
}
.nav-links .dbtn:hover { background: #8B1A12; transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 22px; color: var(--red); cursor: pointer;
}
.mob-menu {
  display: none; flex-direction: column;
  background: white; border-bottom: 1px solid var(--border);
  padding: 8px 5%;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  padding: 12px 0; font-size: 15px; color: var(--text-muted);
  text-decoration: none; border-bottom: 1px solid var(--border);
}
.mob-menu a:last-child { border-bottom: none; color: var(--red); font-weight: 500; }

/* ─── HERO ────────────────────────────────── */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  padding: 80px 5% 60px; gap: 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { max-width: 580px; animation: fadeUp 0.75s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-light); color: var(--red);
  border: 1px solid rgba(192,57,43,0.2);
  padding: 6px 16px; border-radius: 40px;
  font-size: 12.5px; font-weight: 500; margin-bottom: 22px;
}
.hero-badge span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); display: inline-block;
}
.hero h1 {
  font-family: var(--font-d); font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 600; line-height: 1.07; color: var(--red);
  margin-bottom: 6px; letter-spacing: -0.01em;
}
.hero-kn {
  font-family: var(--font-d); font-size: clamp(17px, 2.5vw, 24px);
  color: var(--green); font-weight: 500; margin-bottom: 18px; font-style: italic;
}
.hero-desc {
  font-size: 15px; color: var(--text-muted); max-width: 460px;
  margin-bottom: 36px; line-height: 1.8;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-p {
  background: var(--red); color: white; padding: 13px 28px;
  border-radius: 40px; font-size: 15px; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-p:hover {
  background: #8B1A12; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.3);
}
.btn-s {
  background: transparent; color: var(--text);
  padding: 13px 28px; border-radius: 40px;
  font-size: 15px; font-weight: 500;
  text-decoration: none; border: 1.5px solid var(--border); transition: all 0.2s;
}
.btn-s:hover { border-color: var(--green); color: var(--green); }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
  flex-wrap: wrap; animation: fadeUp 0.8s 0.2s ease both;
}
.stat-n {
  font-family: var(--font-d); font-size: 34px;
  font-weight: 600; color: var(--red); line-height: 1;
}
.stat-l { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.hero-right {
  flex: 1; display: flex; justify-content: flex-end;
  align-items: center; animation: fadeUp 0.8s 0.15s ease both;
}
.hero-card {
  background: white; border-radius: 20px;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  overflow: hidden; max-width: 360px; width: 100%;
}
.hero-card-logo {
  width: 100%; height: 240px; display: block;
  object-fit: contain; padding: 24px; background: var(--cream);
}
.hero-card-body { padding: 18px 20px; }
.hero-card-body h3 { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.hero-card-body p { font-size: 12px; color: var(--text-muted); }

/* ─── SHARED SECTION STYLES ──────────────── */
section { padding: 80px 5%; }
.section-label {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-d); font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600; color: var(--text); line-height: 1.15; margin-bottom: 14px;
}
.section-desc-sm {
  font-size: 15px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.75;
}
.about-para { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }

/* ─── ABOUT ───────────────────────────────── */
#about { background: white; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-img-wrap { position: relative; height: 420px; }
.about-img-main {
  width: 78%; height: 300px; border-radius: 16px;
  object-fit: contain; position: absolute; top: 0; left: 0;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  background: var(--cream); padding: 20px;
}
.about-img-badge {
  position: absolute; bottom: 30px; right: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 20px;
  box-shadow: var(--shadow-lg); max-width: 200px;
}
.about-img-badge .num {
  font-family: var(--font-d); font-size: 28px;
  font-weight: 600; color: var(--red); line-height: 1;
}
.about-img-badge p { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.about-values { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.av { display: flex; gap: 14px; align-items: flex-start; }
.av-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.av-icon.g { background: var(--green-light); color: var(--green); }
.av-icon.gold { background: var(--gold-light); color: var(--gold); }
.av h4 { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.av p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── ROTARY BANNER ───────────────────────── */
.rotary-banner {
  background: linear-gradient(135deg, var(--green) 0%, #2D6A40 100%);
  padding: 52px 5%; display: flex; gap: 40px;
  align-items: center; flex-wrap: wrap;
}
.rotary-banner-text { flex: 1; min-width: 260px; }
.rb-label {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 10px;
}
.rotary-banner-text h2 {
  font-family: var(--font-d); font-size: clamp(22px, 3vw, 36px);
  color: white; font-weight: 600; line-height: 1.2; margin-bottom: 12px;
}
.rotary-banner-text p {
  font-size: 14px; color: rgba(255,255,255,0.75);
  line-height: 1.75; max-width: 500px;
}
.rotary-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.rs-item {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r); padding: 16px 20px;
  min-width: 110px; text-align: center;
}
.rs-n {
  font-family: var(--font-d); font-size: 30px;
  font-weight: 600; color: white; line-height: 1;
}
.rs-l { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.rotary-letter {
  border-radius: var(--r); overflow: hidden;
  max-width: 220px; border: 2px solid rgba(255,255,255,0.25); flex-shrink: 0;
}
.rotary-letter img {
  width: 100%; display: block;
  height: 200px; object-fit: cover; object-position: top;
}

/* ─── WORK / PROJECTS ─────────────────────── */
#work { background: var(--cream); }
.sh {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 44px;
}
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.pc {
  background: white; border-radius: var(--r);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pc-img {
  height: 160px; display: flex;
  align-items: center; justify-content: center; font-size: 48px;
}
.pi-gold   { background: var(--gold-light); }
.pi-green  { background: var(--green-light); }
.pi-red    { background: #FDE8E8; }
.pi-purple { background: #F0E8F8; }
.pi-blue   { background: #E8F0F8; }
.pi-red2   { background: var(--red-light); }
.pc-body { padding: 18px; }
.tag {
  display: inline-block; font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; margin-right: 4px;
}
.tg-gold     { background: var(--gold-light);  color: var(--gold); }
.tg-green    { background: var(--green-light); color: var(--green); }
.tg-red      { background: #FDE8E8;            color: #C0392B; }
.tg-purple   { background: #F0E8F8;            color: #7D3CB5; }
.tg-blue     { background: #E8F0F8;            color: #1A5C8C; }
.tg-red2     { background: var(--red-light);   color: var(--red); }
.tg-highlight { background: var(--green); color: white; font-size: 10px; }
.pc-body h3 { font-size: 15px; font-weight: 500; margin-bottom: 5px; line-height: 1.4; }
.pc-body p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.pc-foot {
  padding: 12px 18px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.pc-foot span  { font-size: 12px; color: var(--text-muted); }
.pc-foot strong { color: var(--red); font-weight: 500; }

/* ─── GALLERY ─────────────────────────────── */
#gallery { background: white; }
.gallery-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.gtab {
  padding: 8px 20px; border-radius: 40px; font-size: 13px;
  font-weight: 500; border: 1px solid var(--border);
  cursor: pointer; background: white; color: var(--text-muted);
  transition: all 0.2s; font-family: var(--font-b);
}
.gtab.active, .gtab:hover { background: var(--red); color: white; border-color: var(--red); }
.gallery-section { display: none; }
.gallery-section.active { display: block; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gi {
  border-radius: var(--rs); overflow: hidden;
  aspect-ratio: 1; cursor: pointer; position: relative;
  background: var(--cream);
}
.gi img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.3s;
}
.gi:hover img { transform: scale(1.05); }
.gi-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 13px;
  color: var(--text-muted); font-style: italic;
  background: var(--gold-light); flex-direction: column; gap: 6px;
}
.gallery-count {
  font-size: 13px; color: var(--text-muted);
  margin-top: 14px; text-align: center;
}

/* ─── LIGHTBOX ────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: var(--r); object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  color: white; font-size: 32px; cursor: pointer;
  background: none; border: none; font-family: var(--font-b);
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); color: white;
  border: none; font-size: 24px; padding: 12px 18px;
  cursor: pointer; border-radius: var(--rs);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-caption {
  color: rgba(255,255,255,0.65); font-size: 13px; margin-top: 12px;
}

/* ─── TRUST DOCS ──────────────────────────── */
#trust { background: var(--cream); }
.trust-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: start;
}
.trust-info { display: flex; flex-direction: column; gap: 16px; }
.ti {
  background: white; border-radius: var(--r);
  border: 1px solid var(--border); padding: 18px 20px;
}
.ti-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px;
}
.ti-val { font-size: 15px; font-weight: 500; }
.ti-sub { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.trust-doc-card {
  background: white; border-radius: var(--r);
  border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow);
}
.trust-doc-card img {
  width: 100%; height: 320px;
  object-fit: cover; display: block; object-position: top;
}
.trust-doc-body { padding: 20px; }
.trust-doc-body h3 { font-size: 15px; font-weight: 500; margin-bottom: 5px; }
.trust-doc-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── TEAM ────────────────────────────────── */
#team { background: white; }
.team-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.tc {
  background: var(--cream); border-radius: var(--r);
  border: 1px solid var(--border); padding: 36px 24px 32px;
  text-align: center; transition: transform 0.2s, box-shadow 0.2s;
}
.tc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tc-av {
  width: 80px; height: 80px; border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 26px; font-weight: 600; color: white;
}
.av-red    { background: linear-gradient(135deg, var(--red), #E06050); }
.av-green  { background: linear-gradient(135deg, var(--green), var(--green-mid)); }
.av-gold   { background: linear-gradient(135deg, var(--gold), var(--gold-mid)); }
.av-purple { background: linear-gradient(135deg, #7D3CB5, #A97CC9); }
.av-blue   { background: linear-gradient(135deg, #1A5C8C, #4A8CB5); }
.tc h3 { font-size: 17px; font-weight: 500; margin-bottom: 5px; }
.tc .role {
  font-size: 11.5px; color: var(--red); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px;
}
.tc .bio { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── DONATE ──────────────────────────────── */
#donate {
  background: var(--red); padding: 80px 5%;
  position: relative; overflow: hidden; text-align: center;
}
#donate::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.04); pointer-events: none;
}
.donate-inner { max-width: 680px; margin: 0 auto; }
.donate-inner .section-label { color: rgba(255,255,255,0.6); }
.donate-inner .section-title { color: white; }
.donate-desc {
  color: rgba(255,255,255,0.7); max-width: 480px;
  margin: 0 auto 36px; font-size: 15px; line-height: 1.75;
}
.amounts { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.ab {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 22px; border-radius: 40px; font-size: 15px;
  font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: var(--font-b);
}
.ab:hover, .ab.active { background: white; color: var(--red); border-color: white; }
.donate-cta { margin-top: 8px; }
.donate-cta .btn-p { background: white; color: var(--red); font-size: 16px; padding: 15px 36px; }
.donate-cta .btn-p:hover { background: var(--cream); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
.donate-note { font-size: 12.5px; color: rgba(255,255,255,0.4); margin-top: 28px; line-height: 1.7; }

/* donate method cards */
.donate-methods {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 8px;
}
.donate-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r); padding: 28px 24px; text-align: left;
}
.donate-card-icon { font-size: 28px; margin-bottom: 10px; }
.donate-card h3 { font-size: 17px; font-weight: 500; color: white; margin-bottom: 4px; }
.donate-card-sub { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.upi-number {
  font-family: var(--font-d); font-size: 32px; font-weight: 600;
  color: white; letter-spacing: 0.04em;
  background: rgba(255,255,255,0.12); border-radius: var(--rs);
  padding: 12px 18px; display: inline-block; margin-bottom: 10px;
}
.donate-card-note { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.bank-details { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.bd-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.bd-label { font-size: 12px; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.bd-val { font-size: 13px; color: white; font-weight: 500; text-align: right; }
.copy-text {
  cursor: pointer; border-bottom: 1px dashed rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.copy-text:hover { color: var(--gold-mid); }

@media (max-width: 600px) {
  .donate-methods { grid-template-columns: 1fr; }
}

/* ─── CONTACT ─────────────────────────────── */
#contact { background: white; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.ci-items { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.ci { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.ci-icon.ci-green { background: var(--green-light); color: var(--green); }
.ci h4 { font-size: 13.5px; font-weight: 500; margin-bottom: 2px; }
.ci p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.cf { display: flex; flex-direction: column; gap: 14px; }
.cf label { font-size: 12.5px; font-weight: 500; color: var(--text-muted); display: block; margin-bottom: 4px; }
.cf input, .cf textarea, .cf select {
  width: 100%; padding: 10px 13px; border-radius: var(--rs);
  border: 1px solid var(--border); background: var(--cream);
  font-family: var(--font-b); font-size: 14px; color: var(--text);
  outline: none; transition: border-color 0.2s;
}
.cf input:focus, .cf textarea:focus { border-color: var(--red); background: white; }
.cf textarea { resize: vertical; min-height: 90px; }
.cf button {
  background: var(--red); color: white; padding: 12px;
  border-radius: 40px; border: none; font-family: var(--font-b);
  font-size: 15px; font-weight: 500; cursor: pointer; transition: background 0.2s;
}
.cf button:hover { background: #8B1A12; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: var(--text); color: rgba(255,255,255,0.5);
  padding: 48px 5% 28px;
}
.fi { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.fb img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--red); margin-bottom: 12px;
}
.fb h3 {
  font-family: var(--font-d); font-size: 19px;
  color: rgba(255,255,255,0.9); font-weight: 600; margin-bottom: 8px;
}
.fb p { font-size: 13px; line-height: 1.7; max-width: 260px; }
.fc h4 {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px;
}
.fc a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.4);
  text-decoration: none; margin-bottom: 7px; transition: color 0.2s;
}
.fc a:hover { color: var(--gold-mid); }
.fbot {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.fbot p { font-size: 12.5px; }
.reg { font-size: 11.5px; background: rgba(255,255,255,0.06); padding: 6px 14px; border-radius: 20px; }

/* ─── ANIMATION ───────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { flex-direction: column; min-height: auto; padding: 44px 5%; gap: 32px; }
  .hero-right { width: 100%; justify-content: center; }
  .hero-card { max-width: 100%; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-grid  { grid-template-columns: 1fr; }
  .fi          { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row    { grid-template-columns: 1fr; }
  .rotary-banner { flex-direction: column; }
  .rotary-letter { max-width: 100%; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
}

/* ─── CONTACT REDESIGN ────────────────────── */
#contact { background: white; }

.contact-actions {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 40px;
}
.contact-btn {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 28px; border-radius: var(--r);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid transparent;
}
.contact-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-btn-whatsapp {
  background: #E9F9EF; border-color: #25D366;
  color: #1a7a3a;
}
.contact-btn-call {
  background: var(--red-light); border-color: var(--red);
  color: var(--red);
}
.contact-btn-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-btn-whatsapp .contact-btn-icon { background: #25D366; color: white; }
.contact-btn-call     .contact-btn-icon { background: var(--red); color: white; }
.contact-btn-text { display: flex; flex-direction: column; gap: 3px; }
.contact-btn-title { font-size: 18px; font-weight: 500; }
.contact-btn-sub   { font-size: 14px; opacity: 0.7; font-family: monospace; letter-spacing: 0.04em; }

.contact-info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ci-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--cream); border-radius: var(--r);
  border: 1px solid var(--border); padding: 18px 20px;
}
.ci-card .ci-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.ci-card h4 { font-size: 13px; font-weight: 500; margin-bottom: 3px; }
.ci-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.ci-card a  { color: var(--red); text-decoration: none; }
.ci-card a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .contact-actions    { grid-template-columns: 1fr; }
  .contact-info-grid  { grid-template-columns: 1fr; }
  .contact-btn-title  { font-size: 16px; }
}

/* ─── CAROUSEL ────────────────────────────── */
.carousel-wrap {
  position: relative; display: flex;
  align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.carousel-stage {
  flex: 1; height: 480px; border-radius: var(--r);
  overflow: hidden; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.12s ease;
}
.car-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: var(--r);
}
.car-placeholder {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; width: 100%; height: 100%;
  background: var(--gold-light); color: var(--text-muted);
  font-size: 14px; border-radius: var(--r);
}
.car-placeholder span:first-child { font-size: 48px; }
.car-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--border); background: white;
  font-size: 26px; cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.2s;
  box-shadow: var(--shadow);
}
.car-btn:hover { background: var(--red); color: white; border-color: var(--red); }
.car-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 0 60px;
}
.car-counter { font-size: 13px; color: var(--text-muted); min-width: 48px; }
.car-dots { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: center; }
.car-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: all 0.2s;
  border: none; padding: 0;
}
.car-dot.active { background: var(--red); transform: scale(1.3); }
.car-dot-more { font-size: 11px; color: var(--text-muted); }
.car-expand {
  background: none; border: 1px solid var(--border);
  border-radius: var(--rs); padding: 5px 10px;
  font-size: 16px; cursor: pointer; color: var(--text-muted);
  transition: all 0.2s;
}
.car-expand:hover { border-color: var(--red); color: var(--red); }

@media (max-width: 600px) {
  .carousel-stage { height: 280px; }
  .car-btn { width: 36px; height: 36px; font-size: 20px; }
  .car-footer { padding: 0 8px; }
}