/* Prime Shield - Industrial Coating Solutions
   Theme: Navy + Industrial Orange
   Inspired by modern industrial templates (Industro / Tabler-style)
*/

:root {
  --navy: #002855;
  --navy-dark: #001a3a;
  --navy-light: #0a3a72;
  --orange: #ff6b00;
  --orange-dark: #e55a00;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: all .3s ease;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange); }

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

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-info span { margin-right: 20px; opacity:.9; }
.topbar-info i { color: var(--orange); margin-right: 6px; }
.topbar-social a { color: var(--white); margin-left: 12px; opacity:.8; }
.topbar-social a:hover { opacity:1; color: var(--orange); }

/* ===== HEADER / NAV ===== */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-text { white-space: nowrap; line-height: 1.1; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  display: flex; align-items:center; justify-content:center;
  color: var(--orange); font-size: 22px;
}
.logo-text small { display:block; font-size:11px; font-weight:500; color:var(--gray-600); letter-spacing:1px; }

.navbar { display: flex; align-items: center; gap: 22px; }
.navbar a {
  color: var(--gray-800);
  font-weight: 600;
  font-size: 14.5px;
  position: relative;
  white-space: nowrap;
}

/* "More" dropdown in nav */
.nav-more { position: relative; }
.nav-more > a { cursor: pointer; }
.nav-more > a i { font-size: 10px; margin-left: 4px; transition: transform .2s; }
.nav-more.open > a i { transform: rotate(180deg); }
.nav-more-menu { display: none; position: absolute; top: 100%; right: 0; background: #fff; min-width: 200px; box-shadow: 0 8px 24px rgba(0,0,0,.12); border-radius: 8px; padding: 8px; margin-top: 16px; z-index: 100; }
.nav-more.open .nav-more-menu { display: block; }
.nav-more-menu a { display: block; padding: 10px 14px; border-radius: 6px; font-size: 14px; }
.nav-more-menu a:hover { background: #f4f6fa; color: var(--orange); }
.navbar a:hover, .navbar a.active { color: var(--orange); }
.navbar a.active::after {
  content:''; position:absolute; bottom:-22px; left:0; right:0;
  height: 3px; background: var(--orange);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-dark); color: var(--white); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--navy);
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, rgba(0,40,85,.92), rgba(0,26,58,.95)),
              url('https://images.unsplash.com/photo-1581094289810-adf5d25690e3?w=1600') center/cover;
  color: var(--white);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content:''; position:absolute; right:-100px; top:-100px;
  width: 400px; height: 400px;
  background: var(--orange);
  opacity:.08; border-radius: 50%;
}
.hero-content { max-width: 720px; position: relative; z-index: 2; }
.hero-tag {
  display: inline-block;
  background: rgba(255,107,0,.15);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255,107,0,.3);
}
.hero h1 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 18px;
  opacity: .9;
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== SECTION HELPERS ===== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: 38px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-head p { color: var(--gray-600); max-width: 640px; margin: 0 auto; }
.bg-light { background: var(--gray-50); }

/* ===== FEATURES STRIP ===== */
.features {
  background: var(--white);
  margin-top: -50px;
  position: relative;
  z-index: 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-right: 1px solid var(--gray-200);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(255,107,0,.1);
  color: var(--orange);
  border-radius: 12px;
  display: flex; align-items:center; justify-content:center;
  font-size: 22px;
  flex-shrink: 0;
}
.feature-item h4 { color: var(--navy); font-size: 16px; margin-bottom: 2px; }
.feature-item p { font-size: 13px; color: var(--gray-600); margin: 0; }

/* ===== PRODUCTS / SERVICES GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.product-img {
  height: 220px;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}
.product-img img { width:100%; height:100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: var(--white);
  padding: 4px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.product-body { padding: 24px; }
.product-body h3 { font-size: 19px; color: var(--navy); margin-bottom: 10px; }
.product-body p { color: var(--gray-600); font-size: 14px; margin-bottom: 16px; }
.product-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-link:hover { gap: 10px; color: var(--orange-dark); }

/* ===== ABOUT SPLIT ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img img { aspect-ratio: 4/3; object-fit: cover; }
.about-stats {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 18px 26px;
  border-radius: var(--radius);
  text-align: center;
}
.about-stats h3 { font-size: 32px; margin: 0; }
.about-stats span { font-size: 12px; opacity:.9; }
.about-text h2 { font-size: 36px; color: var(--navy); margin-bottom: 18px; line-height:1.2; }
.about-text > p { color: var(--gray-600); margin-bottom: 22px; }
.check-list { list-style: none; margin-bottom: 28px; }
.check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--gray-800);
  font-weight: 500;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 8px;
  width: 22px; height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-size: 13px;
  font-weight: 700;
}

/* ===== COUNTERS ===== */
.counters {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 70px 0;
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counter-item h3 { font-size: 48px; color: var(--orange); font-weight: 800; }
.counter-item p { font-size: 15px; opacity:.85; }

/* ===== INDUSTRIES ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.industry-card:hover { background: var(--navy); color: var(--white); transform: translateY(-4px); }
.industry-card .icon {
  width: 64px; height: 64px;
  background: rgba(255,107,0,.1);
  color: var(--orange);
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-size: 28px;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.industry-card:hover .icon { background: var(--orange); color: var(--white); }
.industry-card h4 { font-size: 17px; margin-bottom: 8px; }
.industry-card p { font-size: 13px; color: var(--gray-600); }
.industry-card:hover p { color: rgba(255,255,255,.85); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 60px 0;
}
.cta-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-strip h2 { font-size: 30px; margin-bottom: 6px; }
.cta-strip p { opacity:.95; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: var(--gray-200);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

/* Twinkling starfield background — three layers for depth + parallax-like drift */
.footer::before, .footer::after, .footer-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: repeat;
  background-position: 0 0;
  z-index: 0;
}
/* Tiny far stars — slow twinkle */
.footer::before {
  background-image:
    radial-gradient(1px 1px at 23px 47px, rgba(255,255,255,.85), transparent 50%),
    radial-gradient(1px 1px at 78px 132px, rgba(255,255,255,.6), transparent 50%),
    radial-gradient(1px 1px at 162px 89px, rgba(255,255,255,.7), transparent 50%),
    radial-gradient(1px 1px at 240px 200px, rgba(255,255,255,.4), transparent 50%),
    radial-gradient(1px 1px at 320px 50px, rgba(255,255,255,.85), transparent 50%),
    radial-gradient(1px 1px at 400px 280px, rgba(255,255,255,.5), transparent 50%),
    radial-gradient(1px 1px at 480px 110px, rgba(255,255,255,.7), transparent 50%),
    radial-gradient(1px 1px at 560px 250px, rgba(255,255,255,.45), transparent 50%),
    radial-gradient(1px 1px at 640px 30px, rgba(255,255,255,.8), transparent 50%),
    radial-gradient(1px 1px at 720px 180px, rgba(255,255,255,.6), transparent 50%);
  background-size: 800px 320px;
  animation: psStarsTwinkle 4s ease-in-out infinite, psStarsDriftA 60s linear infinite;
}
/* Medium stars — slightly bigger, brighter, drift slower */
.footer::after {
  background-image:
    radial-gradient(1.5px 1.5px at 60px 90px, rgba(255,255,255,1), transparent 50%),
    radial-gradient(1.5px 1.5px at 200px 220px, rgba(255,255,255,.85), transparent 50%),
    radial-gradient(1.5px 1.5px at 360px 140px, rgba(255,255,255,.95), transparent 50%),
    radial-gradient(1.5px 1.5px at 520px 60px, rgba(255,255,255,.7), transparent 50%),
    radial-gradient(1.5px 1.5px at 680px 200px, rgba(255,255,255,.85), transparent 50%);
  background-size: 800px 280px;
  animation: psStarsTwinkle 5s ease-in-out infinite 1s, psStarsDriftB 90s linear infinite;
}
/* Bright closer stars (sparse) */
.footer-grid { position: relative; z-index: 1; }
.footer-grid::before {
  background-image:
    radial-gradient(2px 2px at 120px 70px, rgba(255,255,255,1), transparent 50%),
    radial-gradient(2px 2px at 420px 180px, rgba(255,255,255,1), transparent 50%),
    radial-gradient(2px 2px at 660px 110px, rgba(255,180,80,.9), transparent 50%);
  background-size: 800px 240px;
  animation: psStarsTwinkle 3.5s ease-in-out infinite .5s;
  z-index: 0;
}
/* Ensure footer content sits above stars */
.footer .container { position: relative; z-index: 2; }

@keyframes psStarsTwinkle {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}
@keyframes psStarsDriftA {
  from { background-position: 0 0; }
  to   { background-position: 800px 0; }
}
@keyframes psStarsDriftB {
  from { background-position: 0 0; }
  to   { background-position: -600px 100px; }
}
@media (prefers-reduced-motion: reduce) {
  .footer::before, .footer::after, .footer-grid::before { animation: none !important; }
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content:''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 3px; background: var(--orange);
}
.footer p, .footer li { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.9; }
.footer ul { list-style: none; }
.footer ul a { color: rgba(255,255,255,.7); }
.footer ul a:hover { color: var(--orange); padding-left: 5px; }
.footer-contact i { color: var(--orange); margin-right: 10px; width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  opacity: .7;
}
.footer-social { margin-top: 16px; }
.footer-social a {
  display: inline-flex; align-items:center; justify-content:center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: var(--white);
  margin-right: 8px;
}
.footer-social a:hover { background: var(--orange); }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, rgba(0,40,85,.93), rgba(0,26,58,.95)),
              url('https://images.unsplash.com/photo-1565514020179-026b92b84bb6?w=1600') center/cover;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.page-header h1 { font-size: 42px; font-weight: 800; margin-bottom: 10px; }
.breadcrumb { font-size: 14px; opacity:.85; }
.breadcrumb a { color: var(--orange); }

/* ===== FORMS ===== */
.form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; color: var(--gray-800); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 20px; }
.contact-info-item {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .ic {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items:center; justify-content:center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-info-item h5 { color: var(--white); margin-bottom: 2px; }
.contact-info-item p { font-size: 14px; opacity:.85; margin: 0; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width:100%; height:100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,40,85,.7), transparent);
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 56px; height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items:center; justify-content:center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  z-index: 999;
  animation: pulse 2s infinite;
}
.wa-float:hover { color: var(--white); transform: scale(1.08); }
@keyframes pulse { 0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.45); } 50% { box-shadow: 0 6px 26px rgba(37,211,102,.7); } }

/* ===== ALERT (form result) ===== */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
  display: none;
}
.alert.show { display: block; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero h1 { font-size: 40px; }
  .product-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-right: none; }
  .about-split, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hero { padding: 70px 0 80px; }
  .hero h1 { font-size: 28px; line-height: 1.15; }
  .hero p { font-size: 15px; }
  .section { padding: 60px 0; }
  .section-head h2 { font-size: 26px; }
  .product-grid, .industry-grid, .gallery-grid { grid-template-columns: 1fr; }
  .features {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    margin-top: -30px;
  }
  .feature-item { border-right: none; padding: 8px 4px; }
  .navbar {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 14px;
    box-shadow: var(--shadow-lg);
  }
  .navbar.open { display: flex; }
  .navbar a.active::after { display: none; }
  .menu-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .header-search { display: none; }
  .calc-grid { grid-template-columns: 1fr !important; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 8px 10px; }
  .about-text h2 { font-size: 24px; }
  .about-stats { padding: 12px 18px; bottom: 12px; left: 12px; }
  .about-stats h3 { font-size: 24px; }
  .about-stats span { font-size: 10px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

/* ===== HEADER SEARCH ===== */
.header-search { margin: 0 14px; }
.header-search form { display: flex; align-items: center; background: #f4f6fa; border-radius: 22px; padding: 4px 4px 4px 14px; transition: var(--transition); }
.header-search form:focus-within { background: #fff; box-shadow: 0 0 0 2px var(--orange); }
.header-search input { background: transparent; border: none; outline: none; font-size: 14px; padding: 6px 4px; min-width: 160px; }
.header-search button { background: var(--navy); color: var(--white); border: none; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { padding: 18px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--navy); font-size: 16px; }
.faq-q:hover { background: #f8fafc; }
.faq-q .toggle { transition: transform .2s; color: var(--orange); }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; color: var(--gray-700); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 22px 18px; }

/* ===== CALCULATOR ===== */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.calc-form { background: var(--white); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.calc-result { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); padding: 30px; border-radius: var(--radius-lg); position: sticky; top: 100px; }
.calc-result .price { font-size: 42px; font-weight: 800; color: var(--orange); margin: 14px 0; }
.calc-result .breakdown { background: rgba(255,255,255,.08); padding: 14px 18px; border-radius: var(--radius); margin-top: 18px; font-size: 13px; line-height: 1.8; }
.calc-result .breakdown .row { display: flex; justify-content: space-between; }

/* ===== COMPARE TABLE ===== */
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.compare-table thead th { background: var(--navy); color: var(--white); font-size: 14px; }
.compare-table thead th.highlight { background: var(--orange); }
.compare-table tbody tr:nth-child(even) { background: #fafbfc; }
.compare-table .feature { font-weight: 600; color: var(--navy); width: 200px; }
.compare-table .yes { color: var(--success, #10b981); font-weight: 700; }
.compare-table .no  { color: #ef4444; font-weight: 700; }

/* ===== SEARCH RESULTS ===== */
.search-results .result-card { background: var(--white); padding: 18px 22px; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 12px; border-left: 3px solid var(--orange); }
.search-results .result-card h4 { color: var(--navy); margin-bottom: 6px; }
.search-results .result-card p { color: var(--gray-700); font-size: 14px; }
.search-empty { text-align: center; padding: 60px 20px; color: var(--gray-600); }
.search-empty i { font-size: 60px; color: var(--gray-300, #d1d5db); margin-bottom: 14px; }

/* ===== SERVICE AREA ===== */
.service-area { padding: 40px 0; }
.service-area-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 768px) { .service-area-grid { grid-template-columns: 1fr; } }
.service-area-map { background: var(--white); padding: 20px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.service-area-map svg { width: 100%; height: auto; }
.service-area-map svg .country { fill: #e2e8f0; stroke: #fff; stroke-width: .5; }
.service-area-map svg .country.served { fill: var(--orange); }
.service-area-map svg .country.served.primary { fill: #ff8c39; }
.service-countries { display: grid; gap: 10px; }
.service-country { display: flex; gap: 12px; padding: 12px 16px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); align-items: center; }
.service-country .flag { width: 32px; height: 24px; border-radius: 3px; background: #e2e8f0; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.service-country .name { font-weight: 600; color: var(--navy); }
.service-country .phone { font-size: 12px; color: var(--gray-600); }
