/* ─── NextATM Global Styles ─── */
:root {
  --teal: #2AB4C0;
  --teal-dark: #1E8A95;
  --teal-light: #4ECDC4;
  --navy: #1B2B4B;
  --navy-dark: #0F1B30;
  --gray-bg: #F0F2F5;
  --gray-light: #F8F9FA;
  --gray-mid: #E8ECF0;
  --text-dark: #1B2B4B;
  --text-mid: #4A5568;
  --text-light: #718096;
  --white: #FFFFFF;
  --border: #D1D9E0;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

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

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ─── NAVBAR ─── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo-icon {
  width: 42px;
  height: 42px;
}

.navbar-brand-text .brand-next {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.navbar-brand-text .brand-atm {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
}

.navbar-brand-text .brand-sub {
  display: block;
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-top: -3px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--teal);
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}

.lang-switcher span.active { color: var(--teal); }
.lang-switcher span { cursor: pointer; transition: color 0.2s; }
.lang-switcher span:hover { color: var(--teal); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-lg { padding: 14px 32px; font-size: 15px; }

/* ─── HERO SECTION ─── */
.hero {
  background: linear-gradient(135deg, #EDF2F7 0%, #E2EAF0 50%, #D8E8F0 100%);
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 80px;
  overflow: hidden;
  position: relative;
}

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

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 420px;
}

.hero-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-map-bg {
  width: 100%;
  max-width: 560px;
  height: 360px;
  background: linear-gradient(135deg, #C8D8E8 0%, #B8CCE0 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  opacity: 0.3;
}

.map-pins {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.pin {
  position: absolute;
  width: 36px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pin-body {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

.pin-body::after {
  content: '';
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  transform: rotate(45deg);
}

.pin-large .pin-body {
  width: 44px;
  height: 44px;
}

.pin-large .pin-body::after {
  width: 20px;
  height: 20px;
}

/* ─── FEATURES SECTION ─── */
.features {
  background: var(--white);
  padding: 60px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 20px;
  align-items: stretch;
}

.feature-card {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.feature-tags {
  display: flex;
  gap: 6px;
  margin-top: auto;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--gray-mid);
  color: var(--text-mid);
}

.app-promo {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.app-promo::before {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.app-promo h3 {
  font-size: 18px;
  font-weight: 700;
}

.app-promo p {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.4;
}

.app-phone-mockup {
  font-size: 50px;
  text-align: center;
  margin: 8px 0;
}

/* ─── SECTION HEADERS ─── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ─── SERVICES SECTION ─── */
.services-section {
  padding: 80px;
  background: var(--gray-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--teal);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(42,180,192,0.15), rgba(42,180,192,0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--teal);
  border: 2px solid rgba(42,180,192,0.2);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── PROCESS TIMELINE ─── */
.process-section {
  padding: 80px;
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  z-index: 0;
}

.timeline-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.timeline-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(42,180,192,0.3);
}

.timeline-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 80px;
  background: var(--gray-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 80px;
  color: var(--teal);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

/* ─── STATS SECTION ─── */
.stats-section {
  background: var(--gray-bg);
  padding: 40px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 70px 80px;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 32px;
}

.cta-section .highlight { color: var(--teal); }

/* ─── FOOTER ─── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 48px 80px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand-next { font-size: 20px; font-weight: 700; color: var(--navy); }
.footer-brand .brand-atm { font-size: 20px; font-weight: 700; color: var(--teal); }
.footer-brand .brand-sub { font-size: 11px; color: var(--text-light); display: block; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-mid); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-mid);
}

.footer-contact-item i { color: var(--teal); width: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
}

/* ─── LOCATIONS PAGE ─── */
.locations-page {
  display: grid;
  grid-template-columns: 1fr 360px;
  height: calc(100vh - 70px);
}

.map-container {
  position: relative;
  background: #E8EEF5;
  overflow: hidden;
}

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

.map-controls {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 2px;
}

.map-ctrl-btn {
  background: var(--white);
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px 0 0 4px;
  box-shadow: var(--shadow);
  transition: background 0.2s;
}

.map-ctrl-btn:last-child { border-radius: 0 4px 4px 0; }
.map-ctrl-btn.active { background: var(--navy); color: var(--white); }
.map-ctrl-btn:hover:not(.active) { background: var(--gray-mid); }

.map-fullscreen {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.atm-sidebar {
  background: var(--white);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sidebar-header {
  padding: 24px 20px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.sidebar-header h2 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.search-box {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}

.search-box input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  font-size: 14px;
  background: var(--gray-light);
}

.search-btn {
  padding: 0 14px;
  background: var(--teal);
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}

.search-btn:hover { background: var(--teal-dark); }

.filters-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-mid);
  cursor: pointer;
}

.filter-item input[type="checkbox"] {
  accent-color: var(--teal);
  width: 14px;
  height: 14px;
}

.search-results-link {
  font-size: 13px;
  color: var(--teal);
  margin-top: 10px;
  display: inline-block;
  cursor: pointer;
}

.atm-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.atm-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-mid);
  cursor: pointer;
  transition: background 0.15s;
}

.atm-item:hover { background: var(--gray-light); }
.atm-item.selected { background: rgba(42,180,192,0.08); border-left: 3px solid var(--teal); }

.atm-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}

.atm-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.atm-info p {
  font-size: 12px;
  color: var(--text-light);
}

.atm-badge {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(42,180,192,0.12);
  color: var(--teal);
  font-weight: 600;
  margin-left: auto;
  flex-shrink: 0;
}

/* ─── CONTACT PAGE ─── */
.contact-page {
  padding: 60px 80px;
  background: var(--gray-light);
  min-height: calc(100vh - 70px);
}

.contact-page h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--gray-light);
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42,180,192,0.1);
}

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

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.contact-info-btn:hover { background: var(--navy-dark); }
.contact-info-btn i { font-size: 18px; }

.map-mini {
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  background: #C8D8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--teal);
  margin-top: 12px;
}

/* ─── SUPPORT PAGE ─── */
.support-page {
  min-height: calc(100vh - 70px);
  background: var(--gray-light);
}

.support-search-bar {
  background: var(--white);
  padding: 40px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.support-search-wrap {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.support-search-wrap input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 15px;
  background: var(--white);
}

.support-search-wrap button {
  padding: 0 20px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-light);
  border-left: 1px solid var(--border);
}

.support-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 32px 80px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.support-cat-btn {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  border: none;
  background: var(--white);
  border-right: 1px solid var(--border);
  transition: all 0.2s;
}

.support-cat-btn:last-child { border-right: none; }
.support-cat-btn:hover { background: var(--gray-light); color: var(--navy); }
.support-cat-btn.active { background: var(--navy); color: var(--white); }

.support-content {
  padding: 0 80px 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}

.support-ticket-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.support-ticket-form h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.support-sidebar { display: flex; flex-direction: column; gap: 20px; }

.support-contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.support-contact-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.support-contact-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ─── LOCATIONS NETWORK PAGE ─── */
.network-section {
  padding: 60px 80px;
  background: var(--white);
}

.network-section h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.world-map-wrap {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #C8D8E8, #B8CCE0);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.atm-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.atm-location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

.atm-location-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.atm-card-map {
  height: 140px;
  background: linear-gradient(135deg, #D0E4F0, #C0D4E8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
}

.atm-card-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 32px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -60%) rotate(-45deg);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.atm-card-body {
  padding: 16px 20px;
}

.atm-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.atm-card-body .address {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.atm-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.atm-feature i { color: var(--teal); width: 14px; }

/* ─── HAMBURGER MENU ─── */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .hero { padding: 50px; }
  .features { padding: 40px 50px; grid-template-columns: repeat(2, 1fr); }
  .app-promo { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* ── NAVBAR ── */
  .navbar { padding: 0 20px; }
  .navbar-nav { display: none; }
  .hamburger { display: block; }

  /* ── HERO ── */
  .hero { grid-template-columns: 1fr; padding: 40px 24px; }
  .hero-map { display: none; }
  .hero h1 { font-size: 28px; line-height: 1.3; }
  .hero p { font-size: 15px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons a, .hero-buttons button { width: 100%; text-align: center; }

  /* ── FEATURES ── */
  .features { grid-template-columns: 1fr; padding: 32px 24px; }

  /* ── SERVICES ── */
  .services-section, .process-section, .testimonials { padding: 40px 24px; }
  .services-grid { grid-template-columns: 1fr; }

  /* ── TIMELINE / STEPS ── */
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }

  /* ── STATS ── */
  .stats-section { grid-template-columns: 1fr 1fr; padding: 32px 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }

  /* ── CTA ── */
  .cta-section { padding: 50px 24px; }
  .cta-section h2 { font-size: 24px; }

  /* ── FOOTER ── */
  .footer { padding: 40px 24px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ── LOCATIONS ── */
  .locations-page { grid-template-columns: 1fr; }
  .atm-sidebar { display: none; }
  .atm-cards-grid { grid-template-columns: 1fr; }

  /* ── CONTACT ── */
  .contact-page { padding: 40px 24px; }
  .contact-layout { grid-template-columns: 1fr; }

  /* ── SUPPORT ── */
  .support-categories { margin: 24px 24px; grid-template-columns: repeat(2, 1fr); }
  .support-content { padding: 0 24px 40px; grid-template-columns: 1fr; }

  /* ── NETWORK / SOLUTIONS ── */
  .network-section { padding: 40px 24px; }

  /* ── GALLERY ── */
  .brand-gallery-grid { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
  .brand-gallery-big { grid-row: auto !important; }

  /* ── ABOUT ── */
  .about-grid { grid-template-columns: 1fr !important; }
  .about-image { display: none; }

  /* ── SOLUTIONS PAGE ── */
  .solution-detail { grid-template-columns: 1fr !important; padding: 40px 24px !important; }
  .solution-detail img { height: 200px; object-fit: cover; border-radius: 8px; }
}

/* ── EXTRA SMALL (phones < 480px) ── */
@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .stats-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .support-categories { grid-template-columns: 1fr; }

  /* Business page inline grids */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr !important;
  }

  /* Padding reduction */
  [style*="padding: 80px"],
  [style*="padding:80px"] {
    padding: 40px 20px !important;
  }
  [style*="padding: 60px"],
  [style*="padding:60px"] {
    padding: 32px 20px !important;
  }

  /* Font sizes */
  h1 { font-size: 24px !important; }
  h2 { font-size: 20px !important; }
  h3 { font-size: 17px !important; }
}
