/* ══════════════════════════════════════════════════════════
   ADV. SANJAY J. PAWAR — EXECUTIVE WEBSITE
   Light Oxford theme — Playfair Display + Source Sans 3
═══════════════════════════════════════════════════════════ */
:root {
  --bg-main:       #ffffff;
  --bg-alt:        #f8fafc;
  --bg-card:       #f0f6ff;
  --bg-card-hover: #e2eeff;
  --text-main:     #1a2744;
  --text-muted:    #4a5568;
  --accent:        #1e3a8a;
  --accent-mid:    #2563eb;
  --accent-light:  #bfdbfe;
  --accent-pale:   #eff6ff;
  --gold:          #b45309;
  --gold-light:    #fef3c7;
  --border:        #dbeafe;
  --border-soft:   #e2e8f0;
  --card-teal:     #1e4d6b;
  --radius:        7px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.7;
  font-size: 16px;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--text-main);
  line-height: 1.3;
}

p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }

/* ══════════════════════════════════════════════════════════
   1. DISCLAIMER OVERLAY (FULL-SCREEN SPLASH DESIGN)
═══════════════════════════════════════════════════════════ */
#disclaimer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-alt); /* Solid background blocks site access natively */
  display: block; /* Standard block layout, completely abandons flexbox conflicts */
  overflow-y: auto; /* Allow full native scrolling */
  padding: 2rem 1rem;
}

#disclaimer-overlay.hidden {
  display: none; 
}

.disclaimer-card {
  background: #ffffff;
  border-radius: 10px;
  width: 100%;
  max-width: 650px;
  margin: 0 auto; /* Horizontally centered in the native flow */
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  animation: slideUp 0.35s ease;
}

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

.disclaimer-header {
  background: var(--accent);
  padding: 2rem 3.5rem 1.5rem 2rem;
  text-align: left;
  position: relative;
  border-bottom: 3px solid var(--gold);
}

.close-disclaimer-btn {
  position: absolute;
  top: 25px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
  line-height: 1;
  padding-bottom: 2px;
}

.close-disclaimer-btn:hover { color: #ffffff; background: rgba(255, 255, 255, 0.25); }
.disclaimer-seal { display: none; }

.disclaimer-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.3;
}

.disclaimer-subhead {
  font-size: 0.85rem;
  color: var(--accent-light);
  margin: 0.3rem 0 0 0;
}

.disclaimer-body {
  padding: 1.75rem 2rem 0.5rem;
}

.disclaimer-intro {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.disclaimer-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.disclaimer-list li {
  padding: 0.5rem 0 0.5rem 1.6rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid #f1f5f9;
  line-height: 1.5;
}

.disclaimer-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--accent);
  font-weight: 700;
}

.disclaimer-warning {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #92400e;
  border-radius: 4px;
  display: none;
  margin-bottom: 1rem;
}

.disclaimer-warning.show { display: block; }

/* CHECKBOX & BUTTON STRUCTURE */
.disclaimer-actions {
  padding: 1rem 2rem 2rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.consent-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-main);
  cursor: pointer;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  background: var(--bg-alt);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}

.consent-checkbox-label input {
  margin-top: 0.2rem;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

.btn-agree {
  width: 100%;
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 0.9rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}

.btn-agree:hover:not(:disabled) { background: var(--accent-mid); }

.btn-agree:disabled {
  background: #cbd5e1;
  color: #64748b;
  cursor: not-allowed;
}

/* ══ STICKY HEADER ═══════════════════════════════════════ */
.sticky-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0f1a2e;
  border-bottom: 3px solid var(--gold);
  z-index: 1000;
  box-shadow: 0 3px 16px rgba(0,0,0,0.25);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box { display: flex; flex-direction: column; gap: 0; }

.logo-name-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 1.2;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.logo-degree {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.logo-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  letter-spacing: 0.2px;
}

.header-cta {
  background: var(--gold);
  color: #ffffff;
  border: none;
  padding: 0.55rem 1.6rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  font-family: 'Source Sans 3', sans-serif;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.header-cta:hover { background: #c97d14; transform: translateY(-1px); }

/* ══ HERO ════════════════════════════════════════════════ */
.hero-section {
  background: linear-gradient(150deg, #1e3a8a 0%, #1e4d6b 55%, #2563eb 100%);
  padding: 8rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }

.hero-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 1.1rem;
  line-height: 1.2;
}

.hero-sub {
  font-size: 1.05rem;
  color: #bfdbfe;
  max-width: 580px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  color: #e0f0ff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.83rem;
  font-weight: 600;
}

.badge-divider { color: rgba(255,255,255,0.3); font-size: 1.1rem; }

/* ══ CONTAINERS ══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  border-bottom: 1px solid var(--border-soft);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: 'Source Sans 3', sans-serif;
}

.container h2 { font-size: 1.9rem; margin-bottom: 1.25rem; color: var(--accent); }

.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 800px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ══ DIFFERENTIATOR GRID ════════════════════════════════ */
.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.diff-card {
  background: #ffffff;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(30,58,138,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.diff-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(30,58,138,0.12); }

.diff-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.diff-card h4 { font-size: 1.05rem; color: var(--accent); margin-bottom: 0.65rem; }
.diff-card p { font-size: 1rem; line-height: 1.75; }

/* ══ SERVICES / WHO I WORK WITH ══════════════════════════ */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.service-column {
  background: #ffffff;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(30,58,138,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-column:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(30,58,138,0.1); }
.service-builder { border-top: 4px solid var(--gold); }
.service-society { border-top: 4px solid var(--accent-mid); }

.service-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 12px;
  margin-bottom: 0.65rem;
  font-family: 'Source Sans 3', sans-serif;
}

.builder-tag { background: #fef3c7; color: #92400e; }
.society-tag { background: var(--accent-pale); color: var(--accent); }

.service-column h4 { font-size: 1.05rem; color: var(--text-main); margin-bottom: 0.85rem; }
.service-column ul { list-style: none; padding: 0; margin: 0; }
.service-column li {
  padding: 0.5rem 0 0.5rem 1.4rem;
  position: relative;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid #f1f5f9;
  line-height: 1.5;
}
.service-column li::before { content: "→"; position: absolute; left: 0; color: var(--accent-mid); font-weight: 700; font-size: 0.85rem; }
.service-column li:last-child { border-bottom: none; }

/* ══ RISK GRID TABLE ═════════════════════════════════════ */
.grid-table {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  background: var(--border-soft);
  gap: 1px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}

.grid-header {
  background: var(--accent);
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

.grid-cell {
  background: #ffffff;
  padding: 1rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  transition: background 0.2s;
}

.grid-cell:nth-child(4n+3), .grid-cell:nth-child(4n+4) { background: var(--accent-pale); }
.grid-cell:hover { background: var(--bg-card-hover); }
.grid-cell.bold { font-weight: 700; color: var(--accent); font-size: 0.88rem; }
.grid-cell p { margin-bottom: 0.55rem; }
.grid-cell p:last-child { margin-bottom: 0; }

.risk-tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  margin-top: 0.25rem;
  font-family: 'Source Sans 3', sans-serif;
}

.risk-resolution { font-style: italic; font-weight: 600; color: var(--accent) !important; }

/* ══ PROCESS STEPS ═══════════════════════════════════════ */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.step {
  background: #ffffff;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(30,58,138,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.step:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(30,58,138,0.1); }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step h5 { font-size: 1.05rem; color: var(--accent); margin-bottom: 0.65rem; }
.step p { font-size: 1rem; }

/* ══ CORE EXPERTISE ══════════════════════════════════════ */
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.exp-col {
  background: #ffffff;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(30,58,138,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}

.exp-col:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(30,58,138,0.1); }

.exp-col-accent { height: 4px; margin: -2rem -1.5rem 1.1rem; }
.accent-gold { background: var(--gold); }
.accent-blue { background: var(--accent-mid); }

.exp-col h4 { font-size: 1.05rem; color: var(--accent); margin-bottom: 0.85rem; }
.exp-col ul { list-style: none; padding: 0; margin: 0; }
.exp-col li {
  padding: 0.48rem 0 0.48rem 1.1rem;
  position: relative;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid #f1f5f9;
  line-height: 1.5;
}
.exp-col li::before { content: "·"; position: absolute; left: 0; color: var(--accent-mid); font-size: 1.2rem; line-height: 1.1; font-weight: 700; }
.exp-col li:last-child { border-bottom: none; }

/* ══ EXPERIENCE HIGHLIGHTS ═══════════════════════════════ */
.experience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.exp-card {
  background: #ffffff;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(30,58,138,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.exp-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(30,58,138,0.1); }

.exp-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.exp-card h4 { font-size: 1.05rem; color: var(--accent); margin-bottom: 0.65rem; }
.exp-card p { font-size: 1rem; }

/* ══ CLOSING BANNER ══════════════════════════════════════ */
.closing-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e4d6b 100%);
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
  padding: 4.5rem 2rem;
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; }

.closing-line1, .closing-line2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
}

.closing-line3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-contact-closing, .btn-whatsapp-closing {
  background: var(--gold);
  color: #ffffff;
  border: none;
  padding: 0.85rem 2.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Source Sans 3', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-contact-closing:hover { background: #c97d14; transform: translateY(-2px); }
.btn-whatsapp-closing { background: #25d366; }
.btn-whatsapp-closing:hover { background: #1da851; transform: translateY(-2px); }

/* ══ FOOTER ══════════════════════════════════════════════ */
.main-footer {
  background: #0f1a2e;
  color: #ffffff;
  padding: 4rem 2rem 0;
  border-top: 4px solid var(--gold);
}

.footer-container { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(180,83,9,0.3);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Source Sans 3', sans-serif;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-top: 0.5rem;
}

.footer-contact h4,
.footer-links h4 {
  color: var(--gold);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(180,83,9,0.3);
}

.footer-contact p { color: rgba(255,255,255,0.6); margin-bottom: 0.6rem; font-size: 0.9rem; line-height: 1.6; }
.footer-contact strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.footer-link { color: #93c5fd; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: #ffffff; }

.footer-response-note {
  font-size: 0.82rem;
  color: var(--gold);
  margin-top: 0.75rem;
  line-height: 1.6;
  font-style: italic;
}

.footer-whatsapp { color: #4ade80 !important; }
.footer-whatsapp:hover { color: #86efac !important; }

.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.85rem; }

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.icon-link:hover { color: var(--gold); }
.icon-link-wa { color: #4ade80 !important; }
.icon-link-wa:hover { color: #86efac !important; }

.footer-disclaimer {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-disclaimer p { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-disclaimer strong { color: rgba(255,255,255,0.55); }

.footer-bottom {
  text-align: center;
  padding: 1.25rem 0;
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

/* ══ CONTACT MODAL (BOTTOM SHEET ON MOBILE) ══════════════ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.open { display: flex; }

.modal-content {
  background: #ffffff;
  border-radius: 10px;
  width: 100%;
  max-width: 780px;
  position: relative;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  overflow: hidden;
}

.visiting-card-header {
  background: var(--card-teal);
  color: #ffffff;
  padding: 0.65rem 1.75rem 0.7rem;
  text-align: center;
  flex-shrink: 0;
  border-bottom: 2px solid var(--gold);
}

.vc-name-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}

.vc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.vc-degree { font-size: 0.78rem; color: var(--accent-light); }
.vc-title { display: none; }

.vc-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.76rem;
}

.vc-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.vc-icon-link:hover { color: var(--accent-light); }

.modal-body-wrapper {
  padding: 1rem 1.75rem 1.1rem;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.modal-section-title {
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-family: 'Playfair Display', serif;
}

.modal-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.6rem; }

input, textarea {
  width: 100%;
  padding: 0.45rem 0.75rem;
  margin-bottom: 0.38rem;
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  color: var(--text-main);
  font-family: 'Source Sans 3', sans-serif;
  border-radius: var(--radius);
  font-size: 0.83rem;
  transition: border-color 0.2s;
  line-height: 1.4;
}

input:focus, textarea:focus { outline: none; border-color: var(--accent-mid); }

textarea {
  resize: none;
  height: 52px;
  overflow: hidden;
}

.submit-btn {
  width: 100%;
  padding: 0.55rem;
  background: var(--accent);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: 'Source Sans 3', sans-serif;
  transition: background 0.2s;
  margin-top: 0.1rem;
}

.submit-btn:hover { background: var(--accent-mid); }

.field-wrap { position: relative; margin-bottom: 0; }

.field-error {
  display: block;
  font-size: 0.75rem;
  color: #dc2626;
  font-family: 'Source Sans 3', sans-serif;
  min-height: 1rem;
  padding: 0.1rem 0.1rem 0.25rem;
  line-height: 1.2;
}

.field-wrap input.invalid,
.field-wrap textarea.invalid {
  border-color: #dc2626;
  background: #fff5f5;
}

.field-wrap input.valid,
.field-wrap textarea.valid {
  border-color: #16a34a;
}

.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-family: 'Source Sans 3', sans-serif;
  margin-top: 0.5rem;
  text-align: center;
}

.download-btn {
  display: block;
  text-align: center;
  padding: 0.55rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-family: 'Source Sans 3', sans-serif;
  transition: all 0.2s;
}

.pdf-btn { background: var(--accent); color: #ffffff; }
.pdf-btn:hover { background: var(--accent-mid); }
.vcf-btn { background: var(--bg-alt); color: var(--text-main); border: 2px solid var(--border-soft); }
.vcf-btn:hover { border-color: var(--accent); color: var(--accent); }
.modal-response-note { font-size: 0.8rem; color: var(--gold); font-style: italic; margin-bottom: 0.6rem; line-height: 1.4; }
.modal-wa-direct { margin-top: 0.75rem; }
.modal-wa-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.35rem; font-style: italic; }
.wa-btn { background: #25d366 !important; color: #ffffff !important; border: none !important; }
.wa-btn:hover { background: #1da851 !important; }

/* ══ WHATSAPP FLOATING BUTTON ════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 4000;
  background: #25d366;
  color: #ffffff;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

.wa-tooltip {
  position: absolute;
  right: 3.75rem;
  background: #0f1a2e;
  color: #ffffff;
  font-size: 0.78rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0f1a2e;
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN (ALL MEDIA QUERIES CONSOLIDATED HERE)
═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .differentiator-grid,
  .process-steps,
  .expertise-grid { 
    grid-template-columns: 1fr; 
  }
}

@media (max-width: 768px) {
  /* ========================================================= */
  /* DISCLAIMER SPLASH SCREEN OVERRIDE (NATIVE SCROLLING)      */
  /* ========================================================= */
  #disclaimer-overlay {
    padding: 0;
    background: #ffffff; /* Seamless integration on mobile */
  }

  .disclaimer-card {
    border-radius: 0;
    box-shadow: none;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    max-height: none; /* Let native scrolling handle it */
  }
  
  .disclaimer-header { padding: 1.5rem 3.5rem 1.25rem 1.25rem; } 
  .close-disclaimer-btn { top: 20px; right: 15px; }
  .disclaimer-header h2 { font-size: 1.15rem; } 
  .disclaimer-body { padding: 1.25rem 1.25rem 0.5rem; }
  .disclaimer-actions { 
    padding: 1rem 1.25rem 2rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom)); 
  }
  .consent-checkbox-label { font-size: 0.85rem; padding: 0.85rem; }
  
  /* ========================================================= */
  /* CONTACT MODAL BOTTOM SHEET (REMAINS SAME)                 */
  /* ========================================================= */
  .modal { padding: 0; align-items: flex-end; }
  .modal-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 20px 20px 0 0;
    max-height: 85vh; 
    max-height: 85dvh; 
    animation: slideUpMobile 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes slideUpMobile {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
  .modal-body-wrapper { padding-bottom: max(1.5rem, env(safe-area-inset-bottom)); }
  
  /* Hero & Global Adjustments */
  .hero-section h1 { font-size: 2rem; }
  .hero-section { padding-top: 7rem; }
  .header-container { flex-direction: column; gap: 0.5rem; text-align: center; }
  .logo-title { display: none; }
  
  /* Grids to single column */
  .services-grid,
  .experience-grid,
  .modal-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-table { grid-template-columns: 1fr; }
  .grid-header:first-child,
  .grid-header:last-child { display: none; }

  /* Buttons & Layout adjustments */
  .closing-actions { flex-direction: column; gap: 0.75rem; }
  .btn-contact-closing, .btn-whatsapp-closing { width: 100%; justify-content: center; }
  .closing-line1, .closing-line2 { font-size: 1.1rem; }
  .closing-line3 { font-size: 1.5rem; }

  /* Text legibility adjustments */
  .diff-card p, .step p, .exp-card p, .grid-cell { font-size: 1rem; line-height: 1.8; }
  .service-column li, .exp-col li { font-size: 1rem; padding-top: 0.5rem; padding-bottom: 0.5rem; }
  .diff-card h4, .step h5, .exp-col h4, .exp-card h4, .service-column h4 { font-size: 1.1rem; }
}