/* ═══════════════════════════════════════════════════════════════
   KARMA ENTERPRISES LIMITED — MASTER STYLESHEET
   Colors: Blue #003366 | Red #cc2936 | Green #10b981 | White #ffffff
   Font: Outfit
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #334155;
  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.2vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px; font-weight: 600;
  font-size: 0.88rem; 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-green { background: #10b981; color: #fff; border-color: #10b981; }
.btn-green:hover { background: #059669; border-color: #059669; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16,185,129,0.3); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.55); }
.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.68rem;
  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-green { background: #ecfdf5; color: #059669; }
.badge-white { background: rgba(255,255,255,0.9); color: #374151; backdrop-filter: blur(4px); }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } 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); } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.08; } 50% { opacity: 0.15; } }

.fade-up { animation: fadeUp 0.7s ease-out both; }
.fade-up-d1 { animation: fadeUp 0.7s ease-out 0.15s both; }
.fade-up-d2 { animation: fadeUp 0.7s ease-out 0.3s both; }
.fade-up-d3 { animation: fadeUp 0.7s ease-out 0.45s both; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── 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.6rem; font-weight: 900; line-height: 0; margin-left: 1px; }
.logo-sub { font-size: 0.5rem; 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.82rem;
  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.78rem; 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: 900px) {
  .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; padding-bottom: 60px;
}
.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: 1200px; margin: 0 auto; padding: 110px 20px 80px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.hero-content-centered { max-width: 800px; text-align: center; padding: 120px 20px 96px; }
.hero-content-centered .badge { margin-bottom: 24px; }
.hero-content-centered h1 { color: #fff; margin-bottom: 20px; font-size: clamp(2rem, 5vw, 3.5rem); }
.hero-content-centered .hero-desc { color: #93c5fd; font-size: 1.1rem; line-height: 1.75; }
.explore-label { color: rgba(255,255,255,0.45); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-buttons-centered { justify-content: center; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.35); animation: bounce 2s infinite; }

/* ── Page Banner (inner pages) ── */
.page-banner {
  background: linear-gradient(135deg, #003366, #001a33);
  padding: 120px 0 64px; text-align: center;
}
.page-banner .badge { margin-bottom: 14px; display: inline-flex; }
.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: 80px 0; }
.section-gray { padding: 80px 0; background: #f8fafc; }
.section-dark { padding: 80px 0; background: linear-gradient(135deg, #003366, #001a33); position: relative; overflow: hidden; }
.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: 0.95rem; max-width: 600px; margin: 0 auto; line-height: 1.65; }

/* ── Why Karma ── */
.section-why-karma {
  padding: 80px 0; background: linear-gradient(135deg, #003366, #001a33);
  position: relative; overflow: hidden;
}
.why-glow { position: absolute; width: 350px; height: 350px; border-radius: 50%; filter: blur(120px); opacity: 0.15; z-index: 0; }
.red-glow { top: -100px; left: -100px; background: #cc2936; }
.green-glow { bottom: -100px; right: -100px; background: #10b981; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px;
  transition: all 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.why-icon {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: #93c5fd; margin-bottom: 16px;
}
.why-card h3 { color: #fff; font-size: 0.95rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.8rem; line-height: 1.65; }

/* ── 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: 36px; height: 36px; color: #003366; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; background: rgba(0,51,102,0.07); border-radius: 10px; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: #1E293B; }
.stat-label { font-size: 0.75rem; color: #64748b; margin-top: 2px; }
@media (max-width: 640px) { .stats-card { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* ── Ticker ── */
.ticker-section { padding: 40px 0; }
.ticker-label { text-align: center; font-size: 0.62rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #9ca3af; margin-bottom: 20px; }
.ticker-wrap { overflow: hidden; }
.ticker-track { display: flex; animation: ticker 35s linear infinite; white-space: nowrap; }
.ticker-track-reverse { animation-direction: reverse; animation-duration: 40s; }
.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.82rem; font-weight: 500; color: #64748b; }

/* ── 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; } }

/* ── About Grids ── */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .mission-vision-grid { grid-template-columns: 1fr; } }
.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: 16px;
  padding: 24px; transition: transform 0.3s, box-shadow 0.3s;
}
.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; transition: transform 0.3s;
}
.card h3 { font-size: 0.95rem; margin-bottom: 8px; color: #1E293B; }
.card p { font-size: 0.82rem; color: #64748b; line-height: 1.65; }

/* ── Explore Grid ── */
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .explore-grid { grid-template-columns: 1fr; } }
.explore-card { position: relative; height: 320px; border-radius: 16px; overflow: hidden; display: block; text-decoration: none; color: #fff; }
.explore-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s; }
.explore-card:hover .explore-card-img { transform: scale(1.05); }
.explore-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.2) 80%); }
.explore-card-content { position: absolute; inset: 0; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; z-index: 10; }
.explore-card-badge { display: inline-flex; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); padding: 4px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; width: fit-content; }
.explore-card h3 { font-size: 1.15rem; margin-bottom: 6px; color: #fff; }
.explore-card p { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.5; margin-bottom: 0; }

/* ── Product Card ── */
.product-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 16px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.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: 12px; left: 12px; 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.66rem; padding: 3px 10px; border-radius: 100px; background: #eff6ff; color: #003366; font-weight: 500; }

/* ── SVC Card (Dynamic/Expandable) ── */
.svc-card { background: #fff; border-radius: 16px; border: 1px solid #f1f5f9; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: box-shadow .3s; }
.svc-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
.svc-card-bar { height: 6px; }
.svc-card-body { padding: 20px 24px 24px; }
.svc-card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.svc-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.svc-card-icon svg { width: 24px; height: 24px; display: block; }
.svc-card-title { font-size: 1rem; font-weight: 700; color: #1E293B; margin-bottom: 4px; }
.svc-card-desc { font-size: .82rem; color: #64748b; line-height: 1.6; }
.svc-card-highlights { list-style: none; padding: 0; margin: 0 0 16px; }
.svc-card-highlights li { display: flex; align-items: flex-start; gap: 10px; font-size: .8rem; color: #475569; line-height: 1.6; padding: 2px 0; }
.svc-card-highlights svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; display: block; }
.svc-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.svc-card-tag { font-size: .63rem; padding: 3px 10px; border-radius: 100px; font-weight: 600; }
.svc-card-toggle { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; background: none; border: none; cursor: pointer; padding: 0; color: #10b981; transition: color .2s; }
.svc-card-toggle:hover { opacity: .8; }
.svc-card-toggle svg { width: 16px; height: 16px; }
.svc-card-detail { max-height: 0; overflow: hidden; transition: max-height .4s ease-out; }
.svc-card-detail.open { max-height: 800px; transition: max-height .5s ease-in; }
.svc-card-detail-inner { padding-top: 16px; margin-top: 16px; border-top: 1px solid #f1f5f9; }
.svc-card-detail-title { font-size: .72rem; font-weight: 700; color: #1E293B; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.svc-card-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 480px) { .svc-card-detail-grid { grid-template-columns: 1fr; } }
.svc-card-cta { display: inline-block; margin-top: 16px; padding: 8px 20px; border-radius: 8px; font-size: .82rem; font-weight: 600; color: #fff; text-decoration: none; transition: opacity .2s; }

/* ── Image Strips & Project Grids ── */
.energy-img-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
@media (max-width: 640px) { .energy-img-strip { grid-template-columns: 1fr; } }
.energy-img-strip-item { border-radius: 14px; overflow: hidden; height: 180px; position: relative; }
.energy-img-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.energy-img-strip-item:hover img { transform: scale(1.05); }
.energy-img-strip-item .strip-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; font-size: .78rem; font-weight: 600; }

.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
@media (max-width: 640px) { .project-grid { grid-template-columns: 1fr; } }
.project-card { position: relative; height: 240px; border-radius: 16px; overflow: hidden; cursor: pointer; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover img { transform: scale(1.05); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,51,102,0.9)); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.project-overlay h3 { color: #fff; font-size: 1.05rem; margin-bottom: 6px; }
.project-overlay p { color: rgba(255,255,255,0.8); font-size: 0.8rem; line-height: 1.5; }

/* ── Explore/Services Cards (About Page) ── */
.explore-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
@media (max-width: 640px) { .explore-grid { grid-template-columns: 1fr; } }
.explore-card { text-decoration: none; color: #fff; display: block; }
.explore-card-img { position: relative; border-radius: 20px; overflow: hidden; height: 320px; background-size: cover; background-position: center; transition: transform .3s; }
.explore-card:hover .explore-card-img { transform: translateY(-4px); }
.explore-card-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(16,185,129,0.85) 0%, rgba(0,51,102,0.7) 100%); }
.explore-card-overlay-ict { background: linear-gradient(135deg, rgba(0,51,102,0.9) 0%, rgba(0,51,102,0.6) 100%); }
.explore-card-img > * { position: relative; z-index: 1; }
.explore-card-badge { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin: 20px 20px 0; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); }
.explore-card-img h3 { margin: 12px 20px 6px; font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
.explore-card-img p { margin: 0 20px 16px; font-size: .82rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.explore-card-link { display: block; margin: 0 20px 20px; font-size: .82rem; font-weight: 600; border-bottom: 2px solid rgba(255,255,255,0.5); padding-bottom: 4px; width: fit-content; transition: border-color .2s; }
.explore-card:hover .explore-card-link { border-color: #fff; }

/* ── Mini Stats ── */
.stats-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 900px; margin: 0 auto; }
@media (max-width: 768px) { .stats-mini { grid-template-columns: repeat(2, 1fr); } }
.stats-mini-item { background: #fff; border-radius: 12px; padding: 16px; text-align: center; border: 1px solid #f1f5f9; }
.stats-mini-val { font-size: 1.3rem; font-weight: 800; line-height: 1.2; color: #003366; }
.stats-mini-label { font-size: .72rem; font-weight: 600; color: #1E293B; margin-top: 2px; }
.stats-mini-sub { font-size: .65rem; color: #9ca3af; margin-top: 2px; }

/* ── Contact Section ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; 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: 40px; height: 40px; 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.68rem; color: #93c5fd; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-row-value { font-size: 0.9rem; }

/* ── 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.78rem; margin-top: 10px; line-height: 1.65; }
.footer-col h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul a { font-size: 0.78rem; 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-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.68rem; color: #6b7280; }

/* ── 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; }

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