/* KARMA ENTERPRISES LIMITED - MASTER STYLESHEET */
/* Colors: Blue #003366 | Red #cc2936 | White #ffffff */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { max-width: 100%; height: auto; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Typography ── */
h1 { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-muted { color: #64748b; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px; font-weight: 600;
  font-size: 0.9rem; transition: all 0.25s ease; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-red { background: #cc2936; color: #fff; border-color: #cc2936; }
.btn-red:hover { background: #b0242f; border-color: #b0242f; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(204,41,54,0.3); }
.btn-blue { background: #003366; color: #fff; border-color: #003366; }
.btn-blue:hover { background: #002244; border-color: #002244; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,51,102,0.3); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px; font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.badge-light { background: rgba(255,255,255,0.15); color: #93c5fd; border: 1px solid rgba(255,255,255,0.2); }
.badge-red { background: #fef2f2; color: #cc2936; }
.badge-blue { background: #eff6ff; color: #003366; }
.badge-white { background: rgba(255,255,255,0.9); color: #374151; backdrop-filter: blur(4px); }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.fade-up { animation: fadeUp 0.6s ease-out both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #003366; transition: all 0.3s ease;
  height: 68px; display: flex; align-items: center;
}
.navbar.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, #003366, #cc2936);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon span { color: #fff; font-weight: 800; font-size: 1rem; }
.logo-text { font-weight: 700; font-size: 1.1rem; color: #fff; transition: color 0.3s; }
.logo-dot { color: #cc2936; font-size: 1.8rem; font-weight: 900; line-height: 0; margin-left: 1px; }
.logo-sub { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.navbar.scrolled .logo-text { color: #003366; }
.navbar.scrolled .logo-sub { color: #9ca3af; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-size: 0.85rem;
  font-weight: 500; color: rgba(255,255,255,0.85); transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.12); }
.navbar.scrolled .nav-links a { color: #64748b; }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: #003366; background: #eff6ff; }

.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 8px 18px; font-size: 0.8rem; border-radius: 8px; }

.mobile-toggle { display: none; color: #fff; padding: 8px; }
.navbar.scrolled .mobile-toggle { color: #1a1a2e; }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: #fff; border-top: 1px solid #e5e7eb; box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  padding: 16px; z-index: 999;
}
.mobile-menu.open { display: block; animation: fadeUp 0.3s ease-out; }
.mobile-menu a {
  display: block; padding: 12px 16px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: #374151; transition: all 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: #003366; color: #fff; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,51,102,0.95) 0%, rgba(0,51,102,0.8) 50%, rgba(0,51,102,0.5) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; padding: 110px 0 80px; }
.hero-content .badge { margin-bottom: 20px; }
.hero-content h1 { color: #fff; margin-bottom: 18px; }
.hero-content .hero-desc { color: #93c5fd; font-size: 1.05rem; margin-bottom: 32px; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.4); animation: bounce 2s infinite; }

/* ═══════════════════════════════════════════
   PAGE BANNER (inner pages)
   ═══════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, #003366, #001a33);
  padding: 110px 0 64px; text-align: center;
}
.page-banner .badge { margin-bottom: 14px; }
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.page-banner p { color: #93c5fd; font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section { padding: 72px 0; }
.section-gray { padding: 72px 0; background: #f8fafc; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title .badge { margin-bottom: 14px; display: inline-flex; }
.section-title h2 { margin-bottom: 10px; }
.section-title p { color: #64748b; font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ── Stats Bar ── */
.stats-bar { position: relative; z-index: 10; margin-top: -44px; }
.stats-card {
  background: #fff; border-radius: 16px; box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9; padding: 28px; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat-item { text-align: center; }
.stat-icon { width: 28px; height: 28px; color: #003366; margin: 0 auto 8px; display: block; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: #003366; }
.stat-label { font-size: 0.78rem; color: #64748b; margin-top: 2px; }
@media (max-width: 640px) { .stats-card { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* ── Cards Grid ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid #f1f5f9; border-radius: 14px;
  padding: 24px; transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.08); }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; color: #fff; display: block; }
.card h3 { font-size: 1rem; margin-bottom: 8px; color: #1a1a2e; }
.card p { font-size: 0.85rem; color: #64748b; line-height: 1.6; }
.card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.85rem; font-weight: 600; color: #cc2936; margin-top: 14px;
}
.card-link:hover { gap: 8px; }
.card-link svg { width: 14px; height: 14px; }

/* ── Division Cards ── */
.divisions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 640px) { .divisions-grid { grid-template-columns: 1fr; } }
.division-card {
  position: relative; border-radius: 14px; overflow: hidden; height: 260px;
  cursor: pointer; transition: transform 0.25s;
}
.division-card:hover { transform: translateY(-4px); }
.division-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.division-card:hover img { transform: scale(1.05); }
.division-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,51,102,0.9) 0%, rgba(0,51,102,0.3) 100%);
}
.division-card.red .overlay { background: linear-gradient(to top, rgba(204,41,54,0.9) 0%, rgba(204,41,54,0.3) 100%); }
.division-card .content { position: relative; z-index: 1; padding: 24px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.division-card .tag { font-size: 0.78rem; color: #93c5fd; margin-bottom: 4px; }
.division-card.red .tag { color: #fca5a5; }
.division-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.division-card p { color: rgba(255,255,255,0.8); font-size: 0.85rem; line-height: 1.5; }

/* ── Ticker ── */
.ticker-section { padding: 40px 0; }
.ticker-label { text-align: center; font-size: 0.65rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #9ca3af; margin-bottom: 20px; }
.ticker-wrap { overflow: hidden; }
.ticker-track { display: flex; animation: ticker 30s linear infinite; white-space: nowrap; }
.ticker-item { display: flex; align-items: center; gap: 8px; margin: 0 28px; flex-shrink: 0; }
.ticker-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ticker-text { font-size: 0.85rem; font-weight: 500; color: #64748b; }

/* ── Industries ── */
.industries-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.industry-badge {
  padding: 8px 18px; border-radius: 100px; font-size: 0.85rem;
  font-weight: 500; border: 1px solid rgba(0,51,102,0.15); color: #003366;
  transition: all 0.2s;
}
.industry-badge:hover { background: #003366; color: #fff; border-color: #003366; }

/* ── CTA Section ── */
.cta-section { padding: 72px 0; position: relative; overflow: hidden; background: linear-gradient(135deg, #003366, #001a33); }
.cta-glow-1 { position: absolute; top: -100px; left: -100px; width: 350px; height: 350px; background: #cc2936; border-radius: 50%; filter: blur(120px); opacity: 0.1; }
.cta-glow-2 { position: absolute; bottom: -100px; right: -100px; width: 350px; height: 350px; background: #3b82f6; border-radius: 50%; filter: blur(120px); opacity: 0.1; }
.cta-content { position: relative; text-align: center; }
.cta-content h2 { color: #fff; margin-bottom: 14px; }
.cta-content p { color: #93c5fd; font-size: 1rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

.geo-hero { display: flex; align-items: center; justify-content: center; }
.geo-container { width: 280px; height: 280px; position: relative; margin: 0 auto; }
.geo-ring-outer { position: absolute; inset: 0; border-radius: 50%; border: 3px dashed rgba(0,51,102,0.15); }
.geo-ring-middle {
  position: absolute; inset: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #003366, #002244);
  display: flex; align-items: center; justify-content: center;
}
.geo-ring-inner { position: absolute; inset: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.08); }
.geo-text { text-align: center; z-index: 1; padding: 16px; }
.geo-num { font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; }
.geo-label { font-size: 0.7rem; color: #93c5fd; letter-spacing: 0.1em; text-transform: uppercase; }
.geo-word { font-size: 1rem; font-weight: 700; color: #fff; }
.geo-float {
  position: absolute; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-radius: 10px;
}
.geo-float svg { width: 22px; height: 22px; display: block; }
.geo-f1 { top: 6px; right: 16px; width: 44px; height: 44px; background: #cc2936; color: #fff; }
.geo-f2 { bottom: 20px; left: 0; width: 44px; height: 44px; background: #fff; color: #003366; }
.geo-f3 { top: 50%; right: -12px; width: 36px; height: 36px; background: #f59e0b; color: #fff; border-radius: 50%; }

.mission-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; margin: 0 auto; }
@media (max-width: 640px) { .mission-grid { grid-template-columns: 1fr; } }
.mission-card { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #f1f5f9; transition: transform 0.25s, box-shadow 0.25s; }
.mission-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.06); }
.mission-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.mission-icon svg { width: 22px; height: 22px; color: #fff; display: block; }

.timeline { max-width: 600px; margin: 0 auto; }
.timeline-item { display: flex; gap: 20px; margin-bottom: 28px; }
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%; background: #003366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}

.partners-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; max-width: 680px; margin: 0 auto; }
@media (max-width: 640px) { .partners-row { grid-template-columns: repeat(3, 1fr); } }
.partner-item { background: #fff; border: 1px solid #f1f5f9; border-radius: 12px; padding: 18px; text-align: center; transition: transform 0.25s; }
.partner-item:hover { transform: translateY(-4px); }
.partner-logo { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 6px; color: #fff; font-weight: 700; font-size: 0.8rem; }
.partner-name { font-weight: 600; font-size: 0.9rem; color: #1a1a2e; }
.partner-desc { font-size: 0.72rem; color: #64748b; margin-top: 2px; }

.clients-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; }
.clients-table thead { background: #003366; color: #fff; }
.clients-table th { padding: 12px 20px; text-align: left; font-size: 0.8rem; font-weight: 600; }
.clients-table td { padding: 12px 20px; font-size: 0.8rem; }
.clients-table tbody tr:nth-child(even) { background: #f8fafc; }
.clients-table tbody tr:hover { background: #eff6ff; }
@media (max-width: 640px) { .clients-table .hide-mobile { display: none; } }

/* ═══════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════ */
.service-hubs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 1024px) { .service-hubs { grid-template-columns: 1fr; } }
.hub-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 14px; padding: 28px; transition: transform 0.25s, box-shadow 0.25s; }
.hub-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.08); }
.hub-checks { margin-top: 18px; }
.hub-check { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #475569; padding: 5px 0; }
.hub-check svg { width: 16px; height: 16px; color: #22c55e; flex-shrink: 0; display: block; }

.service-detail { margin-bottom: 56px; }
.service-img { border-radius: 14px; overflow: hidden; margin-bottom: 20px; height: 240px; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-img .badge { position: absolute; bottom: 14px; left: 14px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .detail-grid { grid-template-columns: 1fr; } }
.highlight-box { background: #fff; border-radius: 12px; padding: 20px; border: 1px solid #f1f5f9; }
.highlight-box h4 { font-size: 0.9rem; margin-bottom: 10px; }

.partner-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.partner-strip-item { text-align: center; }
.partner-strip-logo { width: 56px; height: 56px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 4px; color: #fff; font-weight: 700; font-size: 0.7rem; }
.partner-strip-name { font-size: 0.65rem; color: #64748b; }

/* ═══════════════════════════════════════════
   PRODUCTS PAGE
   ═══════════════════════════════════════════ */
.product-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 14px; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.08); }
.product-img { height: 180px; overflow: hidden; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; }
.product-body { padding: 20px; }
.product-body h3 { font-size: 1rem; margin-bottom: 6px; }
.product-body p { font-size: 0.82rem; color: #64748b; margin-bottom: 14px; line-height: 1.6; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.product-tag { font-size: 0.68rem; padding: 3px 10px; border-radius: 100px; background: #eff6ff; color: #003366; font-weight: 500; }

.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1024px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .categories-grid { grid-template-columns: 1fr; } }
.category-card { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid #f1f5f9; border-radius: 12px; padding: 18px; transition: transform 0.25s; }
.category-card:hover { transform: translateY(-3px); }
.category-icon { width: 38px; height: 38px; border-radius: 8px; background: rgba(0,51,102,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.category-icon svg { width: 18px; height: 18px; color: #003366; display: block; }

/* ═══════════════════════════════════════════
   CASE STUDIES PAGE
   ═══════════════════════════════════════════ */
.case-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 14px; overflow: hidden; margin-bottom: 28px; }
.case-grid { display: grid; grid-template-columns: 2fr 3fr; }
@media (max-width: 768px) { .case-grid { grid-template-columns: 1fr; } }
.case-img { position: relative; min-height: 220px; overflow: hidden; }
.case-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.case-img .badge { position: absolute; top: 12px; left: 12px; }
.case-body { padding: 28px; }
.case-header { margin-bottom: 16px; }
.case-header h3 { font-size: 1.2rem; }
.case-header .client { font-size: 0.8rem; color: #9ca3af; margin-top: 4px; }
.case-block { margin-bottom: 14px; }
.case-block h4 { font-size: 0.85rem; font-weight: 600; color: #1a1a2e; margin-bottom: 4px; }
.case-block p { font-size: 0.82rem; color: #64748b; line-height: 1.6; }
.result-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: #475569; padding: 4px 0; }
.result-item svg { width: 18px; height: 18px; color: #22c55e; flex-shrink: 0; margin-top: 1px; display: block; }

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: #003366; border-radius: 16px; padding: 32px; color: #fff; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; }
.contact-row + .contact-row { border-top: 1px solid rgba(255,255,255,0.1); }
.contact-row-icon { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row-icon svg { width: 18px; height: 18px; color: #93c5fd; display: block; }
.contact-row-label { font-size: 0.72rem; color: #93c5fd; margin-bottom: 2px; }
.contact-row-value { font-size: 0.9rem; }
.contact-row-value a { color: #fff; transition: color 0.2s; }
.contact-row-value a:hover { color: #bfdbfe; }

.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.contact-action-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 10px; font-weight: 600; font-size: 0.85rem; transition: all 0.25s;
}
.contact-action-btn svg { width: 18px; height: 18px; display: block; }

.whatsapp-card {
  background: #fff; border: 2px solid #25D366; border-radius: 16px; padding: 32px; text-align: center;
}
.whatsapp-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.whatsapp-card p { color: #64748b; margin-bottom: 20px; font-size: 0.9rem; }
.whatsapp-icon-big { width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.whatsapp-icon-big svg { width: 30px; height: 30px; color: #fff; display: block; }
.whatsapp-number { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 6px; }

.hours-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 16px; padding: 28px; }
.hours-card h3 { margin-bottom: 16px; }
.hours-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f1f5f9; font-size: 0.85rem; }
.hours-item:last-child { border-bottom: none; }
.hours-item .day { color: #1a1a2e; font-weight: 500; }
.hours-item .time { color: #22c55e; font-weight: 500; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer { background: #0a0a0a; color: #fff; padding: 56px 0 20px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: #9ca3af; font-size: 0.8rem; margin-top: 10px; line-height: 1.6; }
.footer-col h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul a { font-size: 0.8rem; color: #9ca3af; transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.footer-contact-item svg { width: 14px; height: 14px; color: #6b7280; flex-shrink: 0; display: block; }
.footer-contact-item a { font-size: 0.8rem; color: #9ca3af; transition: color 0.2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1f2937; padding-top: 16px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; }
.footer-copy { font-size: 0.72rem; color: #6b7280; }
.footer-partners { font-size: 0.65rem; color: #4b5563; }

/* ── Back to top ── */
.back-to-top {
  position: fixed; bottom: 20px; right: 20px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: #003366; color: #fff; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,51,102,0.3);
  transition: all 0.25s; opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: #002244; transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; display: block; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #003366; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #002244; }
