/* ===================================================================
   VisaBridge — Design System & Styles
   =================================================================== */

/* --- Custom Properties --- */
:root {
  --navy: #0f1b2d;
  --navy-light: #1a2b43;
  --gold: #c9a84c;
  --gold-light: #dfc37a;
  --gold-dark: #a8862f;
  --off-white: #0d141f;
  --white: #f7f9fd;
  --slate: #d7deeb;
  --slate-light: #a8b4c8;
  --green-whatsapp: #25d366;
  --overlay: rgba(8, 14, 24, 0.78);

  --bg-primary: #070b12;
  --bg-secondary: #0d141f;
  --bg-tertiary: #111a27;
  --surface: #151f2f;
  --surface-elevated: #1b273a;
  --border: #2b3a51;
  --border-strong: #3b4d69;
  --text-primary: #e8edf7;
  --text-secondary: #b5c0d3;
  --text-muted: #8c99af;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-width: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 8px 22px rgba(3, 6, 12, 0.34);
  --shadow-md: 0 16px 38px rgba(2, 6, 14, 0.46);
  --shadow-lg: 0 28px 56px rgba(1, 4, 10, 0.54);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  background:
    radial-gradient(circle at 85% -10%, rgba(201, 168, 76, 0.12), transparent 38%),
    radial-gradient(circle at 12% 0%, rgba(33, 53, 84, 0.28), transparent 34%),
    var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

.accent {
  color: var(--gold);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Section Defaults --- */
section {
  padding: 80px 0;
}

.section-light {
  background: var(--bg-secondary);
}

.section-off-white {
  background: var(--bg-tertiary);
}

.section-navy {
  background: linear-gradient(160deg, #0a1220 10%, #101b2d 88%);
  color: var(--text-primary);
}

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}

.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 1rem auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: #241705;
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.22);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: rgba(18, 28, 42, 0.45);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-outline:hover {
  background: var(--surface-elevated);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border-color: rgba(231, 236, 247, 0.32);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: linear-gradient(to bottom, rgba(7, 11, 18, 0.88), rgba(7, 11, 18, 0));
}

.navbar.scrolled {
  background: rgba(7, 12, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(84, 102, 130, 0.3);
  box-shadow: 0 10px 30px rgba(2, 6, 14, 0.45);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.nav-logo img {
  height: 90px;
  width: auto;
  transition: height var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 64px;
}

.footer .nav-logo img {
  height: 96px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.925rem;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #08111d 0%, #101b2d 55%, #162338 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-content .subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(145deg, #0a1220 0%, #111d32 72%);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero .breadcrumb {
  color: var(--text-muted);
  font-size: 0.925rem;
}

.page-hero .breadcrumb a {
  color: var(--gold);
}

.page-hero .breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero-gradient {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Service Cards --- */
.service-card {
  background: linear-gradient(180deg, var(--surface-elevated), var(--surface));
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.55);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.13);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card .icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  stroke: var(--gold);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.card-link {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.925rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 10px;
}

/* --- Stats --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.trust-content h2 {
  margin-bottom: 1rem;
}

.trust-content p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.trust-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* --- Testimonials --- */
.testimonial-card {
  background: linear-gradient(180deg, var(--surface-elevated), var(--surface));
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.quote-icon {
  font-size: 3rem;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.975rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- News Cards --- */
.news-card {
  background: linear-gradient(180deg, var(--surface-elevated), var(--surface));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.news-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card-body {
  padding: 1.75rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.825rem;
}

.news-date {
  color: var(--text-muted);
}

.news-badge {
  background: rgba(201, 168, 76, 0.16);
  color: var(--gold-light);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.news-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.news-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* --- News Filters --- */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 24px;
  border: 1.5px solid var(--border-strong);
  background: rgba(21, 31, 47, 0.72);
  color: var(--text-secondary);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #241705;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(145deg, #0a1322 0%, #111d32 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* --- Service Detail Sections --- */
.service-detail {
  padding: 80px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-grid {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-grid > * {
  direction: ltr;
}

.service-detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.service-detail-content h2 {
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-detail-content ul {
  margin-bottom: 2rem;
}

.service-detail-content ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* --- About: Mission/Vision Cards --- */
.mv-card {
  background: linear-gradient(180deg, var(--surface-elevated), var(--surface));
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 3px solid var(--gold);
  border: 1px solid var(--border);
}

.mv-card .mv-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mv-card .mv-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.mv-card h3 {
  margin-bottom: 1rem;
}

.mv-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Team Cards --- */
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.team-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

.team-card .role {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-card .social-link {
  color: var(--text-muted);
  transition: color var(--transition);
}

.team-card .social-link:hover {
  color: var(--gold);
}

/* --- Values Grid --- */
.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-item .value-icon {
  width: 72px;
  height: 72px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.value-item .value-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
}

.value-item h4 {
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-intro-heading {
  margin-bottom: 0.5rem;
}

.contact-intro-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.consultation-points {
  list-style: disc;
  margin: 0 0 1.8rem 1.2rem;
}

.consultation-points li {
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.925rem;
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-tertiary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.24);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a8b4c8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(201, 168, 76, 0.14);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.form-success.show {
  display: block;
}

.form-success h3 {
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-top: 0.3rem;
}

.checkbox-wrapper label {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-hint {
  margin-top: 0.8rem;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.form-status.success {
  display: block;
  background: rgba(40, 174, 95, 0.16);
  color: #8fe8b6;
  border: 1px solid rgba(84, 212, 136, 0.45);
}

.form-status.error {
  display: block;
  background: rgba(218, 82, 82, 0.14);
  color: #f3b0b0;
  border: 1px solid rgba(218, 82, 82, 0.42);
}

.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2d3f5b;
  transition: 0.25s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #dbe4f4;
  transition: 0.25s;
}

.switch input:checked + .slider {
  background-color: var(--gold);
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
  background-color: #2a1e08;
}

.slider.round {
  border-radius: 26px;
}

.slider.round::before {
  border-radius: 50%;
}

.contact-info-card {
  background: linear-gradient(180deg, var(--surface-elevated), var(--surface));
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.contact-info-card h4 {
  margin-bottom: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .ci-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item .ci-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

.contact-info-item p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-info-item a {
  color: var(--gold);
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.map-placeholder {
  width: 100%;
  height: 220px;
  background: var(--surface);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.whatsapp-card {
  background: linear-gradient(145deg, #20c05e, #1da851);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform var(--transition);
}

.whatsapp-card:hover {
  transform: translateY(-3px);
}

.whatsapp-card svg {
  width: 32px;
  height: 32px;
  min-width: 32px;
  fill: var(--white);
}

.whatsapp-card .wa-text h4 {
  color: var(--white);
  margin-bottom: 0.15rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

.whatsapp-card .wa-text p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.9;
}

/* --- Footer --- */
.footer {
  background: linear-gradient(180deg, #070d17 0%, #050a12 100%);
  color: var(--text-muted);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(84, 102, 130, 0.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(168, 180, 200, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: rgba(232, 237, 247, 0.85);
}

.footer-bottom {
  border-top: 1px solid rgba(168, 180, 200, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--green-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Privacy Content Helpers --- */
.content-wrap {
  max-width: 800px;
}

.section-note {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.content-list {
  list-style: disc;
  margin-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.content-list li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.divider-spaced {
  margin: 2.5rem 0;
}

.link-accent {
  color: var(--gold);
}

/* --- Responsive --- */
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1023px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-content .subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    height: 360px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-detail-grid {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(7, 12, 20, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transition: right var(--transition);
    border-left: 1px solid rgba(84, 102, 130, 0.4);
    box-shadow: -12px 0 32px rgba(1, 5, 12, 0.54);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hamburger {
    display: flex;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-image img {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-hero {
    padding: 120px 0 40px;
  }

  .toggle-wrapper {
    align-items: center;
  }
}
