/* Accents and theme - Monlago Design System */
:root {
  /* Primary colors */
  --primary: #FC2A45;
  --secondary: #5B0E1E;
  --text: #000000;
  --bg: #FFFFFF;
  --bg-secondary: #F8F9FA;
  
  /* Semantic colors */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  
  /* Text secondary */
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  
  /* Borders and shadows */
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.16);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Sora', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: -0.02em;
  color: var(--text);
  background: var(--bg);
  font-weight: 300;
}

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

.container { 
  width: min(1200px, 92%); 
  margin-inline: auto; 
  overflow-x: hidden;
  max-width: 100%;
}
.section { padding: 120px 0; }
.section + .section { border-top: 1px solid var(--border); }

/* Typography - Sora Font Hierarchy */
h1, h2, h3, h4 { 
  color: var(--text); 
  margin: 10px 0 24px 0; 
  font-weight: 700; 
  letter-spacing: -0.025em; 
  line-height: 1.15;
}

h2 { 
  font-size: clamp(2rem, 2vw + 1rem, 3rem); 
  font-weight: 700;
  letter-spacing: -0.03em;
}

h3 { 
  font-size: clamp(1.5rem, 1.5vw + 0.5rem, 2rem); 
  font-weight: 600;
}

.display { 
  font-size: clamp(2.8rem, 2rem + 4vw, 5rem); 
  line-height: 1.1; 
  text-align: center; 
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
  padding-bottom: 8px;
  overflow: visible;
}

.lead { 
  color: var(--text-secondary); 
  font-size: clamp(1.125rem, 0.5vw + 1rem, 1.375rem); 
  line-height: 1.6; 
  font-weight: 300;
  margin-bottom: 32px;
}

.text-emphasized {
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.center { text-align: center; max-width: 78ch; margin: 0 auto; }

/* Text sizes */
.text-xl { font-size: 1.25rem; line-height: 1.6; font-weight: 300; }
.text-lg { font-size: 1.125rem; line-height: 1.7; font-weight: 300; }
.text-base { font-size: 1rem; line-height: 1.6; font-weight: 300; }
.text-sm { font-size: 0.875rem; line-height: 1.5; font-weight: 300; }
.text-xs { font-size: 0.75rem; line-height: 1.4; font-weight: 300; }

/* Header / Nav - Adjusted size */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  background: var(--bg); 
  border-bottom: 1px solid var(--border); 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 0 0; /* Initial no radius */
  overflow: hidden;
}
.site-header.scrolled { 
  box-shadow: var(--shadow-lg); 
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 0 0 24px 24px; /* Pill shape on scroll */
  margin: 0 16px; /* Slight margin for pill effect */
  border: 1px solid var(--border-strong);
  border-top: none;
}

.nav { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 24px; 
  padding: 12px 0; /* Adjusted padding */
  min-height: 64px; /* Adjusted height */
  position: relative; 
}
.logo { 
  font-weight: 700; 
  font-size: 1.375rem; /* Adjusted logo size */
  color: var(--text); 
  text-decoration: none; 
  letter-spacing: 0; 
  line-height: 1; 
  display: inline-flex; 
  align-items: center; 
  height: 44px; /* Adjusted height */
}
.logo-img {
  height: 36px; /* Adjusted image height */
  width: auto;
}

.menu { 
  list-style: none; 
  display: flex; 
  gap: 16px; 
  margin: 0; 
  padding: 0; 
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.menu li { display: flex; align-items: center; position: relative; }
.menu a { color: var(--text); text-decoration: none; padding: 0 12px; height: 40px; border-radius: 12px; transition: all 0.2s; line-height: 1; display: inline-flex; align-items: center; gap: 4px; }
.menu .btn { height: 40px; padding: 10px 16px; }
.menu a:hover { color: var(--primary); background: rgba(252, 42, 69, 0.08); }

/* Dropdown */
.dropdown-toggle { cursor: pointer; position: relative; }

.dropdown-arrow {
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.menu-item-has-dropdown:hover .mega-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.menu-item-has-dropdown:hover .dropdown-arrow,
.menu-item-has-dropdown.is-open .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 640px;
  z-index: 9999;
  pointer-events: auto;
}

.menu-item-has-dropdown:hover .mega-menu,
.menu-item-has-dropdown.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.mega-menu-section h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-menu-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu-section li {
  margin-bottom: 0;
}

.mega-menu-section a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  margin-bottom: 4px;
  height: auto;
  align-items: flex-start;
}

.mega-menu-section a:hover {
  background: rgba(252, 42, 69, 0.08);
  color: var(--primary);
  transform: translateX(4px);
}

.menu-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

.mega-menu-section a:hover .menu-desc {
  color: var(--primary);
}

.nav-cta {
  height: 40px;
  padding: 10px 16px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252, 42, 69, 0.3);
  background: var(--secondary);
}

.hamburger { width: 44px; height: 44px; display: none; align-items: center; justify-content: center; gap: 4px; flex-direction: column; background: transparent; border: 1px solid var(--border); border-radius: 12px; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: transform 0.25s ease, opacity 0.25s ease; }

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons - Clean Monlago Style */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  gap: 8px;
  padding: 14px 24px; 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 0.95rem;
  letter-spacing: -0.01em; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.btn:active { transform: translateY(2px); }
.btn:hover { transform: translateY(-2px); }

/* Primary button */
.btn-primary { 
  background: var(--primary);
  color: white; 
  box-shadow: var(--shadow-lg);
  border: none;
}

.btn-primary:hover { 
  box-shadow: var(--shadow-xl);
  background: var(--secondary);
}

/* Secondary button */
.btn-secondary { 
  background: transparent; 
  color: var(--text); 
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover { 
  background: var(--primary); 
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  color: white;
}

/* Hero */
.hero { 
  padding-top: 90px; 
  overflow: visible;
  min-height: auto;
}
.hero-centered .cta-center { display: flex; gap: 12px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }
.hero-stage { 
  position: relative; 
  margin-top: 36px; 
  display: grid; 
  place-items: center; 
  gap: 12px;
  overflow: visible;
}
.chip { display: inline-block; padding: 8px 12px; border-radius: 999px; font-weight: 700; font-size: 0.9rem; color: white; box-shadow: var(--shadow); }
.chip-primary { background: var(--primary); }

.card-row { display: flex; gap: 16px; align-items: center; justify-content: center; padding: 8px; }
.hero-card { width: clamp(120px, 18vw, 200px); height: clamp(120px, 18vw, 200px); border-radius: 18px; object-fit: cover; border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: var(--bg-secondary); }
.tilt-l2 { transform: rotate(-10deg); }
.tilt-l1 { transform: rotate(-5deg); }
.tilt-r1 { transform: rotate(5deg); }
.tilt-r2 { transform: rotate(10deg); }

/* About */
.about-header { text-align: center; margin-bottom: 56px; }
.about-header .chip.subtle { 
  background: rgba(252, 42, 69, 0.1); 
  color: var(--primary); 
  border-radius: 20px 8px 20px 8px;
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 48px; }

.about-text h3 { font-size: 1.4rem; margin-bottom: 16px; color: var(--text); }
.about-text p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }

.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.stat-card { 
  text-align: center; 
  padding: 24px 20px; 
  background: var(--card); 
  border: 1px solid var(--border); 
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.stat-card:nth-child(1) { border-radius: 20px 8px 20px 8px; }
.stat-card:nth-child(2) { border-radius: 8px 20px 8px 20px; }
.stat-card:nth-child(3) { border-radius: 20px 8px 8px 20px; }

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number { 
  font-size: 2.5rem; 
  font-weight: 700; 
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px; 
}
.stat-label { color: var(--text-secondary); font-weight: 600; font-size: 0.9rem; }

.about-visual { position: relative; }
.about-image-grid { position: relative; display: grid; grid-template-areas: 
  "main main secondary"
  "main main secondary"; 
  gap: 12px; }
.about-img { border-radius: 16px; object-fit: cover; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.main-img { grid-area: main; height: 280px; }
.secondary-img { grid-area: secondary; height: 134px; }

.about-badge { position: absolute; bottom: 16px; left: 16px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: 12px; padding: 8px 12px; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-md); }
.badge-icon { font-size: 1.2rem; }
.badge-text { font-weight: 700; color: var(--text); font-size: 0.9rem; }

/* Products */
.products-header { text-align: center; margin-bottom: 56px; }
.products-header .chip.subtle { 
  background: rgba(252, 42, 69, 0.1); 
  color: var(--primary); 
  border-radius: 8px 20px 8px 20px;
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(252, 42, 69, 0.2);
}

.products-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 40px; 
  margin-bottom: 48px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.product-card.featured {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 420px;
  height: auto;
  border-radius: 12px;
}

/* Varied shapes */
.product-card.featured:nth-child(1) { border-radius: 32px 12px 32px 12px; }
.product-card.featured:nth-child(2) { border-radius: 12px 32px 12px 32px; }
.product-card.featured:nth-child(3) { border-radius: 32px 12px 32px 12px; }

.product-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.product-card.recommended {
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scale(1.02);
  position: relative;
  color: white;
}

.product-card.recommended::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
  border-radius: inherit;
  z-index: -1;
  opacity: 0.8;
}

.product-card.recommended:hover {
  transform: translateY(-8px);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.popular {
  background: var(--primary);
}

.product-badge.recommended {
  background: var(--secondary);
}

.product-badge.flexible {
  background: var(--primary);
}

.product-header {
  margin-bottom: 12px;
  text-align: center;
}

.product-header h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 700;
}

.product-card.recommended .product-header h3 {
  color: white;
}

.interest-rate {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.rate-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.product-card.recommended .rate-number {
  color: white;
}

.rate-unit {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.product-card.recommended .rate-unit {
  color: rgba(255, 255, 255, 0.9);
}

.product-features {
  margin-bottom: 20px;
}

.product-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: none;
  margin-bottom: 8px;
}

.product-features .feature-item:last-child {
  margin-bottom: 0;
}

.product-features .feature-icon {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.1rem;
  min-width: 20px;
}

.product-features span:last-child {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

.product-actions {
  text-align: center;
  margin-top: auto;
}

.section.products { padding-top: 120px; padding-bottom: 120px; border-top: none; }

.product-actions .btn {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
}

/* How it works */
.how-header .chip.subtle { 
  background: rgba(252, 42, 69, 0.1); 
  color: var(--primary); 
  border-radius: 16px 4px 16px 4px;
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(252, 42, 69, 0.2);
}
.flow-board { 
  background: linear-gradient(135deg, #FAFAFA 0%, var(--bg) 100%); 
  border: 1px solid var(--border); 
  border-radius: 32px; 
  padding: 48px 40px; 
  box-shadow: var(--shadow-xl); 
  margin: 0 auto;
  overflow-x: auto;
  position: relative;
}

.flow-board::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(252,42,69,0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(252,42,69,0.03) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}

/* Horizontal flow */
.horizontal-flow {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  align-items: center;
  gap: 40px;
  min-width: 800px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

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

.user-node { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 8px; 
}

.user-circle { 
  width: 72px; 
  height: 72px; 
  border-radius: 50%; 
  border: 3px solid var(--primary); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.6rem; 
  background: linear-gradient(135deg, rgba(252,42,69,0.1), white);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.user-circle:hover {
  transform: scale(1.05);
}

.user-label { 
  font-weight: 600; 
  color: var(--text); 
  font-size: 0.9rem; 
}

.platform-node { 
  background: linear-gradient(135deg, var(--primary), var(--secondary)); 
  color: white; 
  padding: 20px 24px; 
  border-radius: 20px; 
  box-shadow: var(--shadow-xl); 
  text-align: center;
  min-width: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.platform-node::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.platform-node:hover::before {
  left: 100%;
}

.platform-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -12px rgba(252, 42, 69, 0.4);
}

.platform-logo { 
  font-weight: 700; 
  font-size: 1.1rem; 
  margin-bottom: 4px;
}

.platform-subtitle { 
  font-size: 0.8rem; 
  opacity: 0.9; 
}

.flow-connector {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.flow-arrow { 
  color: var(--text-secondary); 
  font-size: 1.8rem; 
  font-weight: bold;
}

.flow-splitter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.split-connector {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100px;
}

.split-connector.top { transform: translateY(-16px); }
.split-connector.bottom { transform: translateY(16px); }

.flow-destinations {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bank-node { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 8px; 
  padding: 16px 20px; 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  background: linear-gradient(135deg, white, #FAFAFA); 
  box-shadow: var(--shadow-lg); 
  text-align: center;
  min-width: 140px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bank-node:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.bank-icon { 
  font-size: 1.1rem; 
}

.bank-node span { 
  font-size: 0.75rem; 
  font-weight: 600; 
  color: var(--text); 
  line-height: 1.2;
}

.coin { 
  width: 28px; 
  height: 28px; 
  border-radius: 50%; 
  background: radial-gradient(circle at 30% 30%, #FFE8A3, #FCA311); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 800; 
  color: #7A4B00; 
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm); 
  position: absolute;
}

/* Animations */
@keyframes coinFlowHorizontal {
  0% { 
    opacity: 0; 
    transform: translateX(-20px) scale(0.7); 
  }
  25% { 
    opacity: 1; 
    transform: translateX(0) scale(1); 
  }
  75% { 
    opacity: 1; 
    transform: translateX(0) scale(1); 
  }
  100% { 
    opacity: 0; 
    transform: translateX(20px) scale(0.7); 
  }
}

.coin.flowing { 
  animation: coinFlowHorizontal 2.5s ease-in-out infinite; 
  animation-delay: var(--delay, 0s); 
}

/* Trust */
.trust-header .chip.subtle { 
  background: rgba(252, 42, 69, 0.1); 
  color: var(--primary); 
  border-radius: 20px 8px 20px 8px;
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(252, 42, 69, 0.2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.trust-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.trust-card h3 {
  color: var(--text);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.trust-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

/* Trustpilot */
.trustpilot-header .chip.subtle { 
  background: rgba(252, 42, 69, 0.1); 
  color: var(--primary); 
  border-radius: 20px 8px 20px 8px;
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(252, 42, 69, 0.2);
}

.trustpilot-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.trustpilot-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 500px;
  width: 100%;
}

.rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  font-size: 2rem;
  color: #E5E7EB;
  transition: color 0.3s ease;
}

.star.filled {
  color: #FFB800;
}

.star.partial {
  background: linear-gradient(90deg, #FFB800 80%, #E5E7EB 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.score-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(252, 42, 69, 0.1);
  border: 1px solid rgba(252, 42, 69, 0.2);
  border-radius: 12px;
  padding: 12px 20px;
  margin-top: 8px;
}

.badge-text {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.trustpilot-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 600px;
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Contact */
.contact-header .chip.subtle { 
  background: rgba(252, 42, 69, 0.1); 
  color: var(--primary); 
  border-radius: 20px 8px 20px 8px;
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(252, 42, 69, 0.2);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-card h3 {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.contact-card p {
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.contact-note {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-style: italic;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: none;
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h3 {
  color: var(--text);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.875rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(252, 42, 69, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.error-message {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 6px;
  min-height: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.error-message::before {
  content: "⚠";
  font-size: 0.75rem;
}

.char-counter {
  text-align: right;
  color: var(--text-secondary);
  font-size: 0.75rem;
  margin-top: 4px;
}

/* Checkbox */
.checkbox-field {
  margin-bottom: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  color: var(--text);
}

.checkbox-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

/* Form actions */
.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.form-actions .btn {
  min-width: 200px;
  position: relative;
  border-radius: 12px;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Success message */
.form-success {
  text-align: center;
  padding: 40px 20px;
  background: var(--success);
  color: white;
  border-radius: 16px;
  margin-bottom: 24px;
}
.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.form-success h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.form-success p {
  font-size: 1rem;
  margin-bottom: 0;
  opacity: 0.9;
  line-height: 1.6;
}
.form-success strong {
  font-weight: 700;
  opacity: 1;
}

.success-details {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

.success-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

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

.success-label {
  font-weight: 600;
  opacity: 0.8;
}

.success-value {
  font-weight: 700;
  font-family: monospace;
}

/* Certifications */
.certifications {
  margin-top: 60px;
  padding: 60px 0;
  background: var(--bg-secondary);
  border-radius: 24px;
  text-align: center;
}

.certifications h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 40px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  text-align: left;
}

.cert-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(252, 42, 69, 0.2);
}

.cert-logo {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.cert-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.cert-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 40px 0; color: var(--text-secondary); background: var(--bg-secondary); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; align-items: start; }
.footer .logo { font-weight: 700; color: var(--text); text-decoration: none; }
.footer-brand p { margin-top: 8px; max-width: 38ch; }
.footer-nav h4, .footer-cta h4 { margin: 0 0 12px 0; font-size: 1rem; color: var(--text); }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-nav a { color: var(--text-secondary); text-decoration: none; }
.footer-nav a:hover { color: var(--primary); }
.footer-cta .btn { 
  width: 100%; 
  background: var(--primary);
  color: white; 
  text-decoration: none;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(252, 42, 69, 0.25);
}

.footer-cta .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(252, 42, 69, 0.35);
}

.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; border-top: 1px solid var(--border); margin-top: 24px; padding-top: 16px; color: var(--text-secondary); }
.footer-bottom .legal-links { display: flex; gap: 12px; }
.footer-bottom .legal-links a { color: var(--text-secondary); text-decoration: none; }
.footer-bottom .legal-links a:hover { color: var(--primary); }

/* Responsive */
@media (max-width: 1024px) {
  .products-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 32px; 
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  /* Mobile Header */
  .site-header {
    padding: 0 16px;
  }
  
  .nav {
    padding: 8px 0;
    min-height: 56px;
  }
  
  .logo {
    font-size: 1.125rem;
    height: 36px;
  }
  
  /* Mobile menu */
  .menu { 
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column; 
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 0;
    padding: 80px 24px 24px;
    width: 100vw;
    height: 100vh;
    display: none;
    transform: none;
    z-index: 9998;
    overflow-y: auto;
  }
  
  .menu.is-open { 
    display: flex; 
    animation: slideInFromTop 0.3s ease-out;
  }
  
  @keyframes slideInFromTop {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Hide mega on mobile */
  .mega-menu {
    display: none !important;
  }
  
  @media (min-width: 768px) {
    .mega-menu {
      display: block !important;
    }
  }
  
  .menu .menu-item-has-dropdown > .dropdown-toggle::after {
    content: none;
  }
  
  .menu .dropdown-arrow {
    display: none;
  }
  
  .menu li {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 8px;
  }
  
  .menu a {
    width: 100%;
    justify-content: flex-start;
    height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  .menu a:hover {
    background: rgba(252, 42, 69, 0.08);
    color: var(--primary);
  }
  
  .nav-cta {
    display: none !important;
  }
  
  .hamburger { 
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(252, 42, 69, 0.05);
    border: 1px solid rgba(252, 42, 69, 0.1);
  }
  
  .hamburger span {
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Mobile Layout */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about-image-grid { grid-template-areas: 
    "main"
    "secondary"; }
  .main-img { height: 200px; }
  .secondary-img { height: 120px; }

  .products-grid { 
    grid-template-columns: 1fr; 
    gap: 28px; 
    width: 100%;
    max-width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-grid { grid-template-columns: 1fr 1fr; }
  
  /* Mobile Typography */
  .display {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.1;
  }
  
  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
  
  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Mobile Spacing */
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 60px 0 40px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  /* Mobile Buttons */
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .btn-cta {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .contact-form {
    padding: 24px;
  }

  input, textarea, select {
    font-size: 16px;
    padding: 14px 16px;
  }

  .card {
    padding: 20px;
    border-radius: 16px;
  }

  .trustpilot-rating {
    padding: 24px;
  }

  .score {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
  .stat-card { padding: 16px; }
  .feature-item { padding: 20px; }
  
  .cert-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .cert-item {
    padding: 16px;
    gap: 12px;
  }
  
  .cert-logo {
    font-size: 1.5rem;
  }
  
  .certifications {
    margin-top: 32px;
    padding: 32px 16px;
  }
  
  .certifications h3 {
    font-size: 1.25rem;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .hero {
    padding: 40px 0 30px;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .card {
    padding: 16px;
  }
  
  .btn {
    padding: 10px 16px;
    font-size: 0.875rem;
    min-height: 44px;
  }
  
  .menu a {
    min-height: 44px;
    padding: 12px 16px;
  }
  
  .hamburger {
    min-width: 44px;
    min-height: 44px;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  
  .display {
    font-size: 1.75rem;
    line-height: 1.1;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .certifications {
    margin-top: 40px;
    padding: 40px 20px;
  }
  
  .certifications h3 {
    font-size: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
  }
  
  .display {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  .menu {
    gap: 12px;
  }
  
  .menu a {
    padding: 0 10px;
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 12px 20px;
  }
  
  .btn-cta {
    padding: 14px 28px;
  }
}

/* Legal Pages Styles - Added after Contact section */
.legal-hero {
  padding: 120px 0 80px;
  background: var(--bg);
  text-align: center;
}
.legal-hero .container {
  max-width: 800px;
}
.legal-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  color: var(--text);
}
.legal-hero p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 60ch;
  margin: 0 auto;
}

.legal-content {
  padding: 80px 0;
  background: var(--bg);
}
.legal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.legal-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(252, 42, 69, 0.2);
}
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-strong);
}
.legal-section:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.legal-section h2 {
  color: var(--text);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.legal-section h3 {
  color: var(--text);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 24px 0 16px 0;
}
.legal-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 1rem;
}
.legal-section ul, .legal-section ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-section li {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}
.contact-info in .legal-section { /* For address blocks in legal */
  display: block;
  margin-top: 16px;
}
.contact-info h4 {
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  margin: 16px 0 8px 0;
}
.contact-info p {
  margin-bottom: 8px;
  color: var(--text);
}
.contact-info a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.contact-info a:hover {
  text-decoration: underline;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.data-table th,
.data-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table th {
  background: var(--bg-secondary);
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.data-table td {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.data-table tr:hover {
  background: rgba(252, 42, 69, 0.02);
}

/* Enhance Contact Grid for better responsiveness */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .legal-content {
    padding: 40px 0;
  }
  .legal-card {
    padding: 24px;
    margin: 0 16px;
  }
  .legal-section {
    margin-bottom: 32px;
  }
}

/* Ensure consistent spacing for subsites sections */
.section.legal-hero,
.section.contact-hero,
.section.legal-content,
.section.contact-content,
.section.map-section {
  border-top: none;
}

/* Contact Hero */
.contact-hero {
  padding: 120px 0 80px;
  background: var(--bg);
  text-align: center;
}

.contact-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.contact-hero .lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0 auto;
}

/* Contact Content */
.contact-content {
  padding: 80px 0;
  background: var(--bg);
}

/* Contact Grid and Additional Elements */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info {
  background: var(--bg);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: fit-content;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg-secondary);
  border-radius: 12px;
}

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

.contact-info .info-icon {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 2px;
}

.contact-info .info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-info .info-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.contact-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Contact Info Styling */
.contact-info .info-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-info .info-item a:hover {
  text-decoration: underline;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
}
.contact-btn:hover {
  background: var(--secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.contact-btn span {
  font-size: 1.1rem;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}
.map-container {
  display: flex;
  justify-content: center;
}
.map-placeholder {
  text-align: center;
  padding: 40px 32px;
  background: var(--bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 400px;
  width: 100%;
}
.map-placeholder .icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.map-placeholder h3 {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.map-placeholder p {
  color: var(--text-secondary);
  margin-bottom: 4px;
  line-height: 1.5;
}

/* Contact Card */
.contact-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(252, 42, 69, 0.2);
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.contact-card .form-description {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Form in Contact Card - Ensure consistency */
.contact-card form {
  display: grid;
  gap: 20px;
}
.contact-card .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-card .form-field {
  display: block;
}
.contact-card label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.875rem;
}
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}
.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(252, 42, 69, 0.1);
}
.contact-card select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}
.contact-card textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-card .checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}
.contact-card input[type="checkbox"] {
  margin-top: 4px;
}
.contact-card .checkbox-label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text);
  cursor: pointer;
}
.contact-card .checkbox-label a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.contact-card .checkbox-label a:hover {
  text-decoration: underline;
}
.contact-card button[type="submit"] {
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  margin-top: 8px;
}
.contact-card button[type="submit"]:hover {
  background: var(--secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Responsive for Contact */
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0 60px;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-content {
    padding: 60px 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-card,
  .contact-info {
    padding: 24px;
  }
  
  .contact-card form {
    gap: 16px;
  }
  
  .contact-card .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .contact-info .info-item {
    padding: 12px;
    gap: 12px;
  }
  
  .map-placeholder {
    padding: 24px 20px;
    margin: 0 16px;
  }
}
