/* ============================================================
   Indonesia Golden Visas - JHG Theme
   Mobile-First Responsive CSS
   ============================================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Colors */
  --color-gold: #C9A96E;
  --color-gold-light: #D4BA8A;
  --color-gold-dark: #A88B52;
  --color-ivory: #FFFDF7;
  --color-bg: #FAFAF8;
  --color-surface: #F5F5F0;
  --color-surface-alt: #F0EDE8;
  --color-charcoal: #1C1C1C;
  --color-dark: #1B2A4A;
  --color-text: #2D2D2D;
  --color-text-secondary: #5C6B84;
  --color-text-muted: #9AA3B4;
  --color-border: #D4CFC5;
  --color-border-light: #E5E0D8;
  --color-white: #FFFFFF;
  --color-success: #3D7A3E;
  --color-hero-start: #1a3a2a;
  --color-hero-mid: #0d1f17;
  --color-hero-end: #1a3a2a;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 70px;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
  --shadow-gold: 0 4px 15px rgba(201,169,110,0.3);

  /* Transitions */
  --transition-fast: 180ms ease;
  --transition-base: 300ms ease;
  --transition-smooth: 400ms cubic-bezier(0.25,0.46,0.45,0.94);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold-dark); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-gold); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); margin-bottom: var(--space-4); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); margin-bottom: var(--space-3); }
h4 { font-size: 1.1rem; margin-bottom: var(--space-2); }

p { margin-bottom: var(--space-4); color: var(--color-text-secondary); line-height: 1.8; }
p:last-child { margin-bottom: 0; }

strong { color: var(--color-text); font-weight: 600; }

/* Screen reader only */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  line-height: 1.4;
}

.btn--primary, .btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover, .btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-dark), #8B7340);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}

/* === HEADER === */
.igv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(28,28,28,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  height: var(--header-height);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.igv-header.scrolled {
  background: rgba(28,28,28,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.igv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.igv-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.igv-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.igv-logo-text {
  font-family: var(--font-heading);
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.igv-logo-text strong {
  color: var(--color-gold);
  font-size: 1.15rem;
  display: block;
}

/* Desktop Nav - Hidden on mobile */
.igv-nav-desktop { display: none; }

.igv-nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.igv-nav-list li { position: relative; }
.igv-nav-list li a {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.75rem;
  transition: color var(--transition-fast);
  white-space: nowrap;
}
.igv-nav-list li a:hover { color: var(--color-gold); }

/* Dropdown */
.igv-nav-list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-charcoal);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius-md);
  min-width: 220px;
  padding: var(--space-2) 0;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.igv-nav-list li:hover > .sub-menu { display: block; }
.igv-nav-list .sub-menu li a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
}

/* Header CTA */
.igv-header-cta { display: none; }
.igv-btn-gold {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white) !important;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}
.igv-btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  color: var(--color-white) !important;
}

/* Mobile Toggle */
.igv-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.igv-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.igv-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.igv-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.igv-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.igv-nav-mobile {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  background: rgba(20,20,20,0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-6) var(--space-6) var(--space-16);
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  display: flex;
  flex-direction: column;
}
.igv-nav-mobile.open { transform: translateX(0); }

.igv-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.igv-mobile-list > li {
  position: relative;
}
.igv-mobile-list > li > a {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition-fast);
}
.igv-mobile-list > li > a:hover { color: var(--color-gold); }

/* Mobile parent items with sub-menu: flex row for link + arrow */
.igv-mobile-list > .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.igv-mobile-list > .menu-item-has-children > a {
  flex: 1;
}

/* Mobile sub-menu arrow button */
.igv-submenu-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  transition: transform var(--transition-base);
  padding: 0;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.igv-submenu-arrow.open {
  transform: rotate(180deg);
}

/* Mobile sub-menu items */
.igv-mobile-list .sub-menu {
  width: 100%;
  padding-left: var(--space-5);
  border-left: 2px solid rgba(201,169,110,0.25);
  margin-left: var(--space-4);
  margin-bottom: var(--space-2);
}
.igv-mobile-list .sub-menu li a {
  display: block;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition-fast);
}
.igv-mobile-list .sub-menu li a:hover { color: var(--color-gold); }
.igv-mobile-list .sub-menu li:last-child a { border-bottom: none; }

.igv-mobile-cta {
  display: block;
  text-align: center;
  margin-top: auto;
  padding: 1rem;
  flex-shrink: 0;
}

/* === DESKTOP NAV ARROW for sub-menu parents === */
.igv-nav-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  opacity: 0.6;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
  vertical-align: middle;
}
.menu-item-has-children:hover > a .igv-nav-arrow {
  opacity: 1;
  transform: rotate(180deg);
}

/* === HERO SECTIONS === */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-12)) var(--space-5) var(--space-12);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,42,0.88) 0%, rgba(13,31,23,0.92) 50%, rgba(26,58,42,0.85) 100%);
  z-index: 1;
}
.hero-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-hero-start) 0%, var(--color-hero-mid) 50%, var(--color-hero-end) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  color: var(--color-gold-light);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  animation: fadeInDown 0.8s ease-out;
}

.hero h1, .hero-content h1 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: var(--space-5);
  animation: fadeInUp 0.9s ease-out 0.15s both;
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto var(--space-8);
  animation: fadeInUp 0.9s ease-out 0.3s both;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.9s ease-out 0.45s both;
}

/* Inner hero (shorter) */
.hero-inner {
  min-height: 50vh;
}
.hero-inner .hero-bg,
.hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-hero-start) 0%, var(--color-hero-mid) 50%, var(--color-hero-end) 100%);
  z-index: 0;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--color-charcoal);
  padding: var(--space-6) var(--space-5);
}
.stats-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.2;
}
.stat-label {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-1);
}

/* === SECTIONS === */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-20)) var(--space-5);
}

.section-alt {
  background: var(--color-surface);
}

.section-dark {
  background: var(--color-charcoal);
  color: var(--color-white);
}
.section-dark h2, .section-dark h3 { color: var(--color-white); }
.section-dark p { color: rgba(255,255,255,0.75); }

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto var(--space-10);
  padding-top: 25px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}

.section-title {
  position: relative;
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-4);
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 2px;
}

.section-subtitle {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.8;
}

/* === GRIDS === */
.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.services-grid, .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

/* === CARDS === */
.service-card, .feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-smooth);
}
.service-card:hover, .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,110,0.3);
}

.service-card h3, .feature-card h3 {
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: var(--space-4);
}

/* Step items */
.step-item {
  text-align: center;
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto var(--space-4);
}

/* Step with icon row (application process style) */
.step-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}

.step-row-item {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}

.step-circle {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
}

/* === TABLES === */
.comparison-table-wrapper { overflow-x: auto; margin: var(--space-6) 0; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 0.9rem;
}
.comparison-table thead { background: var(--color-charcoal); }
.comparison-table th {
  color: var(--color-white);
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.comparison-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
}
.comparison-table tbody tr:hover { background: rgba(201,169,110,0.05); }
.comparison-table td:first-child { font-weight: 600; color: var(--color-text); }

/* === FAQ === */
.faq-section { max-width: 850px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: border-color var(--transition-base);
}
.faq-item[open] { border-color: rgba(201,169,110,0.4); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.4;
  list-style: none;
  transition: background var(--transition-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-gold);
  margin-left: var(--space-4);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
.faq-item[open] summary::after {
  content: '\2212';
}
.faq-item summary:hover { background: rgba(201,169,110,0.04); }

.faq-item > p, .faq-item > div {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* === CTA SECTION === */
.cta-section {
  background: var(--color-charcoal);
  text-align: center;
  padding: var(--space-16) var(--space-5);
}
.cta-section h2 { color: var(--color-white); }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto var(--space-8); }

/* === FORMS === */
.form-card {
  background: var(--color-surface);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.form-group { margin-bottom: var(--space-5); }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.contact-form .form-group { margin-bottom: var(--space-5); }
.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

/* === FOOTER === */
.igv-footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  padding: var(--space-16) 0 0;
}

.igv-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
}

.igv-footer-logo {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.igv-footer-logo-img {
  height: 45px;
  width: auto;
  display: block;
  margin-bottom: var(--space-4);
}

.igv-footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-bottom: var(--space-4);
}

.igv-footer-contact-line {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-bottom: var(--space-2);
}

.igv-footer-links h4 {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}

.igv-footer-links ul { list-style: none; }
.igv-footer-links li { margin-bottom: var(--space-2); }
.igv-footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}
.igv-footer-links a:hover { color: var(--color-gold); }

.igv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6) 0;
  text-align: center;
}
.igv-footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 0;
}

/* === WHATSAPP FLOAT === */
.igv-wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
}
.igv-wa-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37,211,102,0.35);
  transition: all var(--transition-base);
}
.igv-wa-float a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(37,211,102,0.45);
}

/* === BACK TO TOP === */
.igv-back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 42px;
  height: 42px;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  z-index: 800;
}
.igv-back-to-top:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* === PROSE CONTENT (for pages with simple HTML) === */
.prose h2 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid rgba(201,169,110,0.2);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  margin-top: var(--space-8);
  color: var(--color-gold-dark);
}
.prose p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.85;
}
.prose ul, .prose ol {
  margin: var(--space-4) 0;
  padding-left: var(--space-6);
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-2);
  padding-left: var(--space-2);
}
.prose a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--color-gold-dark); }
.prose strong { color: var(--color-text); }
.prose blockquote {
  border-left: 3px solid var(--color-gold);
  padding: var(--space-4) var(--space-6);
  margin: var(--space-6) 0;
  background: var(--color-surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

/* === TEAM GRID === */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
.team-card {
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition-smooth);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-4);
  border: 3px solid rgba(201,169,110,0.2);
}
.team-card h3 { color: var(--color-dark); margin-bottom: var(--space-1); font-size: 1.15rem; }
.team-card .team-role {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
}
.team-card p { font-size: 0.9rem; }

/* === AWARDS === */
.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.award-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-smooth);
}
.award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,110,0.3);
}
.award-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}
.award-card h3 { color: var(--color-dark); font-size: 1.1rem; }
.award-card .award-year {
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body { padding: var(--space-6); }
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.blog-card-body h3 { font-size: 1.1rem; }
.blog-card-body h3 a { color: var(--color-dark); }
.blog-card-body h3 a:hover { color: var(--color-gold); }

/* Single post */
.single-post-header {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: calc(var(--header-height) + var(--space-12)) var(--space-5) var(--space-8);
  text-align: center;
}
.single-post-meta {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: var(--space-6);
}
.single-post-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-5) var(--space-16);
}

/* === 404 === */
.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + var(--space-12)) var(--space-5) var(--space-12);
}
.error-404 h1 {
  font-size: 5rem;
  color: var(--color-dark);
  margin-bottom: var(--space-4);
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === PAGE-SPECIFIC: side-by-side info box === */
.info-sidebar {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.info-sidebar h3 { color: var(--color-gold); }
.info-sidebar p { font-size: 0.9rem; margin-bottom: var(--space-2); }

/* Highlight box */
.highlight-box {
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-gold);
}
.highlight-box h3 { color: var(--color-gold); font-size: 1.15rem; }

/* === WP DEFAULTS FIX === */
.igv-page-content { padding-top: var(--header-height); }
.igv-fullwidth { width: 100%; }

/* WordPress generated classes */
.wp-block-image img { border-radius: var(--radius-md); }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: var(--space-6); }
.alignright { float: right; margin-left: var(--space-6); }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   RESPONSIVE: TABLET (min-width: 480px)
   ============================================================ */
@media (min-width: 480px) {
  .hero-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }

  .services-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-bar .container { gap: var(--space-8); }
}

/* ============================================================
   RESPONSIVE: TABLET LANDSCAPE (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {
  :root { --header-height: 80px; }

  .container { padding: 0 var(--space-8); }

  .two-col-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr 1fr; }
  .services-grid, .features-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }

  .hero { min-height: 85vh; }
  .hero h1, .hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
  .hero-subtitle { font-size: 1.1rem; }

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

  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE: DESKTOP (min-width: 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .igv-nav-desktop { display: flex; align-items: center; }
  .igv-header-cta { display: block; }
  .igv-mobile-toggle { display: none; }

  .hero { min-height: 90vh; padding-top: calc(var(--header-height) + var(--space-16)); }

  .services-grid, .features-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }

  .blog-grid { grid-template-columns: repeat(3, 1fr); }

  .section { padding: var(--space-20) var(--space-8); }
}

/* ============================================================
   RESPONSIVE: WIDE (min-width: 1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .services-grid.four-col { grid-template-columns: repeat(4, 1fr); }
  .steps-grid.six-col { grid-template-columns: repeat(3, 1fr); }
}
