/* ============================================================
   CUSTOMER CARE HELPLINE SERVICE CENTRE
   Professional Corporate Design — Desktop / Laptop / Mobile
   ============================================================ */

:root {
  --primary: #0a4d9c;
  --primary-dark: #073a7a;
  --primary-darker: #052b5c;
  --primary-light: #eaf2fc;
  --accent: #ff7a00;
  --accent-dark: #e56700;
  --green: #16a34a;
  --green-dark: #15803d;
  --ink: #10233b;
  --muted: #5a6f89;
  --line: #dfe7f2;
  --bg-soft: #f5f8fd;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(10, 60, 130, 0.10);
  --shadow-lg: 0 22px 55px rgba(10, 60, 130, 0.18);
  --radius: 18px;
  --header-h: 86px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }

/* ============ 1. TOP INFO BAR ============ */
.topbar {
  background: var(--primary-darker);
  color: #cfe0f5;
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.topbar .tb-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-item svg { width: 14px; height: 14px; fill: #6ea9ff; flex-shrink: 0; }
.topbar .tb-right { display: flex; gap: 10px; }
.chip-open {
  background: rgba(22, 163, 74, 0.18);
  color: #7ff0ac; border: 1px solid rgba(22, 163, 74, 0.45);
  padding: 2px 12px; border-radius: 999px; font-weight: 600; letter-spacing: 0.4px;
}

/* ============ 2. HEADER (sticky) ============ */
.header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.header.scrolled { box-shadow: 0 6px 24px rgba(10, 60, 130, 0.12); }
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.brand-logo svg { width: 30px; height: 30px; fill: #fff; }
.brand-text .brand-name {
  font-size: 1.22rem; font-weight: 800; color: var(--primary-dark);
  line-height: 1.15; letter-spacing: 0.2px;
}
.brand-text .brand-sub {
  font-size: 0.66rem; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.6px;
}

/* desktop menu */
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 0.95rem; font-weight: 600; color: #2b4568;
  padding: 8px 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 3px; border-radius: 3px;
  background: var(--accent); transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

/* ============ CALL BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 700; cursor: pointer;
  border: none; border-radius: 999px; transition: all 0.25s ease;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.btn-call {
  background: linear-gradient(135deg, #1fbf59, var(--green));
  color: #fff; padding: 13px 26px; font-size: 1rem;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
}
.btn-call:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.5);
}
.btn-call .num { font-size: 0.95rem; letter-spacing: 0.4px; }
.btn-accent {
  background: linear-gradient(135deg, #ff9432, var(--accent));
  color: #fff; padding: 13px 26px; font-size: 1rem;
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.38);
}
.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--primary); color: var(--primary);
  padding: 11px 24px; background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.header-call { flex-shrink: 0; }

/* pulse ring on header call icon */
.pulse-dot { position: relative; }
.pulse-dot::before {
  content: ""; position: absolute; inset: -4px; border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { opacity: 0; }
}

/* ============ 3. HERO ============ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(255, 122, 0, 0.10), transparent 60%),
    linear-gradient(160deg, #f2f7ff 0%, #e6f0fd 55%, #ffffff 100%);
  padding: 70px 0 90px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  padding: 8px 18px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600; color: var(--primary);
  box-shadow: var(--shadow); margin-bottom: 20px;
}
.hero-badge svg { width: 16px; height: 16px; fill: var(--green); }
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.18; font-weight: 800; color: var(--primary-darker);
  margin-bottom: 18px; letter-spacing: -0.5px;
}
.hero h1 .hl { color: var(--primary); position: relative; white-space: nowrap; }
.hero h1 .hl-underline {
  position: absolute; left: 0; right: 0; bottom: -6px; height: 10px;
  background: rgba(255, 122, 0, 0.28); border-radius: 8px; z-index: -1;
}
.hero p.lead {
  font-size: 1.08rem; color: var(--muted); max-width: 540px; margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.hero-note {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--muted); font-weight: 500;
}
.hero-note svg { width: 17px; height: 17px; fill: var(--green); flex-shrink: 0; }

/* hero stats */
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 38px; }
.stat .stat-num {
  font-size: 1.9rem; font-weight: 800; color: var(--primary);
  display: flex; align-items: baseline; gap: 2px;
}
.stat .stat-num span.plus { color: var(--accent); font-size: 1.4rem; }
.stat .stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 38px; }
.hero-content-center { text-align: center; margin-inline: auto; }
.hero-content-center .lead { margin-inline: auto; }
.hero-content-center .hero-cta { justify-content: center; }
.hero-content-center .hero-note { justify-content: center; }
.hero-content-center .hero-stats { justify-content: center; gap: 34px 56px; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* wave divider */
.wave { display: block; width: 100%; margin-top: -1px; }

/* ============ 4. TRUST STRIP ============ */
.trust-strip { background: var(--primary-darker); padding: 26px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item {
  display: flex; align-items: center; gap: 13px; justify-content: center;
}
.trust-item .t-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid; place-items: center; flex-shrink: 0;
}
.trust-item .t-icon svg { width: 23px; height: 23px; fill: #7ff0ac; }
.trust-item .t-txt { color: #dce9fb; }
.trust-item .t-txt strong { display: block; font-size: 1rem; color: #fff; }
.trust-item .t-txt span { font-size: 0.78rem; opacity: 0.75; }

/* ============ 5. SECTION COMMON ============ */
.section { padding: 86px 0; }
.section.alt { background: var(--bg-soft); }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-light); color: var(--primary);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; padding: 7px 18px; border-radius: 999px; margin-bottom: 14px;
}
.sec-tag svg { width: 15px; height: 15px; fill: var(--accent); }
.sec-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800;
  color: var(--primary-darker); line-height: 1.25; margin-bottom: 14px;
}
.sec-head p { color: var(--muted); font-size: 1.02rem; }

/* ============ 6. SERVICES GRID ============ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative; overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: #bcd4f3;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 62px; height: 62px; border-radius: 16px;
  background: var(--primary-light); display: grid; place-items: center; margin-bottom: 18px;
  transition: background 0.28s ease;
}
.service-card:hover .service-icon { background: #dbeafe; }
.service-icon svg { width: 32px; height: 32px; fill: var(--primary); }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.service-card p { font-size: 0.92rem; color: var(--muted); margin-bottom: 14px; }
.service-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.87rem; color: #33507a; margin-bottom: 7px; font-weight: 500;
}
.service-list svg { width: 17px; height: 17px; fill: var(--green); flex-shrink: 0; margin-top: 3px; }
.service-card .card-call {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 700; font-size: 0.9rem;
}
.service-card .card-call svg { width: 17px; height: 17px; fill: var(--green); }
.service-card .card-call:hover { color: var(--green-dark); }

/* ============ 7. TWO CALL CTA BLOCK ============ */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(800px 300px at 12% 0%, rgba(255, 122, 0, 0.25), transparent 55%),
    linear-gradient(135deg, var(--primary-dark), var(--primary-darker) 70%);
  padding: 64px 0;
}
.cta-band .container {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
}
.cta-band h2 {
  color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 800; margin-bottom: 12px;
}
.cta-band p { color: #c6dbf7; font-size: 1rem; margin-bottom: 26px; }
.cta-btns { display: flex; flex-direction: column; gap: 14px; }
.cta-btns .btn { width: 100%; padding: 16px 26px; font-size: 1.05rem; }
.btn-call-big {
  background: linear-gradient(135deg, #1fbf59, var(--green));
  color: #fff; box-shadow: 0 10px 30px rgba(22, 163, 74, 0.45);
}
.btn-call-big:hover { background: linear-gradient(135deg, var(--green), var(--green-dark)); transform: translateY(-2px); }
.btn-accent-big {
  background: linear-gradient(135deg, #ff9432, var(--accent));
  color: #fff; box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
}
.btn-accent-big:hover { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); transform: translateY(-2px); }
.cta-btns .btn .b-label { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; text-align: left; }
.cta-btns .btn .b-small { font-size: 0.72rem; font-weight: 600; opacity: 0.85; letter-spacing: 0.6px; text-transform: uppercase; }
.cta-btns .btn .b-num { font-size: 1.25rem; font-weight: 800; letter-spacing: 0.5px; }

/* ============ 8. HOW IT WORKS ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 24px; text-align: center; position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-weight: 800; font-size: 1.05rem;
  display: grid; place-items: center; border: 4px solid var(--bg-soft);
  box-shadow: var(--shadow);
}
.step .step-icon {
  width: 66px; height: 66px; margin: 8px auto 16px; border-radius: 18px;
  background: var(--primary-light); display: grid; place-items: center;
}
.step .step-icon svg { width: 34px; height: 34px; fill: var(--primary); }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--muted); }

/* ============ 9. ISSUES / PROBLEMS ============ */
.issues-wrap { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 50px; align-items: center; }
.issues-media .frame {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff;
}
.issue-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.issue-group {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.issue-group:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.issue-group h4 {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.98rem; font-weight: 700; margin-bottom: 12px; color: var(--primary-darker);
}
.issue-group h4 svg { width: 20px; height: 20px; fill: var(--primary); flex-shrink: 0; }
.issue-group li {
  font-size: 0.85rem; color: var(--muted); margin-bottom: 6px;
  padding-left: 16px; position: relative; font-weight: 500;
}
.issue-group li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 2px; background: var(--accent);
}
.issues-note {
  margin-top: 22px; background: #fffbe8; border: 1px solid #ffe9a8;
  border-radius: 14px; padding: 16px 20px; display: flex; gap: 12px; align-items: flex-start;
}
.issues-note svg { width: 20px; height: 20px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }
.issues-note p { font-size: 0.85rem; color: #7a5b12; }

/* ============ 10. WHY US ============ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid var(--line); text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
  display: grid; place-items: center;
}
.why-icon svg { width: 34px; height: 34px; fill: var(--primary); }
.why-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--muted); }

/* ============ 11. TEAM / ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media .frame { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.about-content .sec-tag { margin-bottom: 16px; }
.about-content h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800;
  color: var(--primary-darker); margin-bottom: 16px; line-height: 1.3;
}
.about-content > p { color: var(--muted); margin-bottom: 22px; font-size: 0.98rem; }
.about-points li {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 15px;
}
.about-points .ap-icon {
  width: 26px; height: 26px; border-radius: 8px; background: #e7f8ee;
  display: grid; place-items: center; flex-shrink: 0; margin-top: 3px;
}
.about-points .ap-icon svg { width: 15px; height: 15px; fill: var(--green); }
.about-points strong { display: block; font-size: 0.95rem; color: var(--ink); }
.about-points span { font-size: 0.87rem; color: var(--muted); }

/* ============ 12. TESTIMONIALS ============ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative; transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.quote-mark {
  position: absolute; top: 18px; right: 24px; font-size: 4rem;
  color: var(--primary-light); font-family: Georgia, serif; line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 18px; height: 18px; fill: #ffb400; }
.testi-card p { font-size: 0.92rem; color: #33507a; margin-bottom: 18px; }
.testi-user { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-weight: 800; font-size: 1rem;
  display: grid; place-items: center; flex-shrink: 0;
}
.testi-user strong { display: block; font-size: 0.92rem; }
.testi-user span { font-size: 0.78rem; color: var(--muted); }

/* ============ 13. FAQ ============ */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: 14px; overflow: hidden; transition: box-shadow 0.25s ease;
}
.faq-item.open { box-shadow: var(--shadow); border-color: #bcd4f3; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--ink); text-align: left;
}
.faq-q .chev {
  width: 30px; height: 30px; border-radius: 50%; background: var(--primary-light);
  display: grid; place-items: center; flex-shrink: 0; transition: transform 0.3s ease;
}
.faq-q .chev svg { width: 15px; height: 15px; fill: var(--primary); }
.faq-item.open .chev { transform: rotate(180deg); background: var(--primary); }
.faq-item.open .chev svg { fill: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); font-size: 0.93rem; }

/* ============ 14. CONTACT / VISIT ============ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; text-align: center; transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.contact-icon {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 18px;
  background: var(--primary-light); display: grid; place-items: center;
}
.contact-icon svg { width: 30px; height: 30px; fill: var(--primary); }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 6px; }
.contact-card .c-link {
  color: var(--primary); font-weight: 700; font-size: 0.92rem;
}
.contact-card .c-link:hover { color: var(--green-dark); }

/* ============ 15. FINAL CTA ============ */
.final-cta {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background:
    radial-gradient(700px 320px at 90% 10%, rgba(255, 122, 0, 0.22), transparent 60%),
    linear-gradient(135deg, var(--primary), var(--primary-darker));
  padding: 88px 0;
}
.final-cta h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: 14px; }
.final-cta p { color: #cfe0f5; max-width: 620px; margin: 0 auto 34px; font-size: 1.05rem; }
.final-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn { padding: 17px 34px; font-size: 1.08rem; }

/* ============ 16. FOOTER ============ */
.footer { background: #041d3d; color: #a9c3e6; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer .brand-logo { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); margin-bottom: 14px; }
.footer-about p { font-size: 0.88rem; margin: 12px 0 18px; }
.footer h4 {
  color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 18px;
  position: relative; padding-bottom: 10px;
}
.footer h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 38px; height: 3px; border-radius: 3px; background: var(--accent);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem; display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover { color: #fff; padding-left: 5px; }
.footer-links svg { width: 13px; height: 13px; fill: var(--accent); }
.footer-contact li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.88rem; margin-bottom: 14px;
}
.footer-contact svg { width: 18px; height: 18px; fill: #7ff0ac; flex-shrink: 0; margin-top: 3px; }
.footer-contact strong { color: #fff; font-weight: 600; }
.footer-call {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #1fbf59, var(--green));
  color: #fff; font-weight: 700; padding: 12px 22px; border-radius: 999px;
  font-size: 0.95rem; box-shadow: 0 8px 22px rgba(22, 163, 74, 0.35);
}
.footer-call:hover { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.footer-call svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.8rem;
}

/* ============ 17. FLOATING DESKTOP CALL BUTTON (2nd call button) ============ */
.float-call {
  position: fixed; right: 28px; bottom: 28px; z-index: 950;
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #1fbf59, var(--green));
  color: #fff; border-radius: 999px; padding: 15px 24px;
  font-weight: 800; font-size: 1rem; box-shadow: 0 14px 38px rgba(22, 163, 74, 0.5);
  animation: floaty 3.2s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.85);
}
.float-call:hover { background: linear-gradient(135deg, var(--green), var(--green-dark)); transform: scale(1.04); }
.float-call svg { width: 24px; height: 24px; fill: #fff; }

/* ============ 18. iPHONE BLOCK SCREEN ============ */
.iphone-block {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: radial-gradient(600px 400px at 50% 0%, #0f3f7d, var(--primary-darker) 55%, #031634);
  color: #fff; text-align: center; padding: 40px 28px;
  overflow-y: auto; align-items: center; justify-content: center;
}
.iphone-block.show { display: flex; }
.iphone-block .inner { max-width: 420px; margin: auto; }
.iphone-block .ib-icon {
  width: 92px; height: 92px; margin: 0 auto 26px; border-radius: 26px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid; place-items: center;
  animation: floaty 3s ease-in-out infinite;
}
.iphone-block .ib-icon svg { width: 52px; height: 52px; fill: #ff5a5a; }
.iphone-block h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; color: #fff; }
.iphone-block p { color: #c6dbf7; font-size: 0.95rem; margin-bottom: 10px; }
.iphone-block .device-hint {
  margin-top: 22px; background: rgba(255, 255, 255, 0.07);
  border: 1px dashed rgba(255, 255, 255, 0.3); border-radius: 16px;
  padding: 18px 20px; text-align: left;
}
.iphone-block .device-hint li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.85rem; color: #dce9fb; margin-bottom: 8px;
}
.iphone-block .device-hint svg { width: 17px; height: 17px; fill: #7ff0ac; flex-shrink: 0; margin-top: 2px; }

/* ============ 19. BACK TO TOP ============ */
.to-top {
  position: fixed; left: 26px; bottom: 28px; z-index: 940;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all 0.3s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--primary-dark); }
.to-top svg { width: 20px; height: 20px; fill: #fff; }

/* ============ 20. REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
body.blocked .topbar, body.blocked .header { display: none; }

/* ============ RESPONSIVE — LAPTOP / DESKTOP / TABLET / MOBILE ============ */
@media (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .services-grid, .why-grid, .testi-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-num { border-color: #fff; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero-grid, .issues-wrap, .about-grid, .cta-band .container { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: row; }
  .cta-btns .btn { width: auto; flex: 1; }
}

@media (max-width: 720px) {
  :root { --header-h: 72px; }
  .topbar .tb-left { justify-content: center; }
  .topbar .tb-right { display: none; }
  .brand-text .brand-name { font-size: 1.02rem; }
  .header .btn-call .num { display: none; }
  .header .btn-call { padding: 12px 16px; }
  .section { padding: 60px 0; }
  .hero { padding: 46px 0 64px; }
  .hero-stats { gap: 22px; }
  .stat .stat-num { font-size: 1.5rem; }
  .services-grid, .why-grid, .testi-grid, .contact-grid,
  .issue-groups, .steps { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; }
  .float-call { right: 16px; bottom: 16px; padding: 14px 20px; font-size: 0.92rem; }
  .to-top { left: 16px; bottom: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
