/* eGeniusCare - Main Stylesheet */
:root {
  --blue: #086AD8;
  --blue-dark: #0558b5;
  --navy: #0f172a;
  --text: #334155;
  --muted: #64748b;
  --light: #eef5fe;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(8, 106, 216, .10);
  --trans: all .3s ease;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--trans)
}

ul {
  list-style: none
}

img {
  max-width: 100%;
  display: block
}

h1,
h2,
h3,
h4 {
  font-family: 'Barlow', sans-serif;
  color: var(--navy);
  line-height: 1.2
}

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

/* ── TOP BANNER ── */
.top-banner {
  background: var(--blue);
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  padding: 8px 0
}

.top-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.top-banner-left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap
}

.top-banner-left li {
  display: flex;
  align-items: center;
  gap: 6px
}

.top-banner-left i,
.top-banner-right i {
  color: var(--white);
  font-size: 12px
}

.top-banner-right {
  display: flex;
  align-items: center;
  gap: 6px
}

.top-banner a:hover {
  color: var(--white)
}

/* ── HEADER ── */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: var(--trans)
}

.main-header.shadow {
  box-shadow: var(--shadow)
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* height: 72px */
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy)
}

.site-logo .logo-text strong {
  color: var(--blue)
}

.footer-logo {
  color: var(--white)
}

.footer-logo .logo-text {
  color: rgba(255, 255, 255, .9)
}

.logo-img {
  /* height: 46px; */
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 200px
}

.footer-logo .logo-img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: .9
}

@media(max-width:768px) {
  .logo-img {
    height: 38px
  }
}

/* Nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--text);
  letter-spacing: .3px
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue)
}

.main-nav .has-dropdown {
  position: relative
}

.main-nav .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow);
  z-index: 100;
  padding: 8px 0
}

.main-nav .has-dropdown:hover .dropdown {
  display: block
}

.main-nav .dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
  color: var(--text)
}

.main-nav .dropdown li a:hover {
  color: var(--blue);
  background: var(--light)
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
  display: block
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--trans);
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(14, 165, 233, .3)
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, .4)
}

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

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

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

.btn-white:hover {
  background: var(--light)
}

/* ── SECTION COMMONS ── */
.section-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px
}

.section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted)
}

section {
  padding: 90px 0
}

/* ── HERO ── */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f0f9ff 0%, #fff 60%);
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, .07) 0%, transparent 70%);
  pointer-events: none
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(14, 165, 233, .2)
}

.hero h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px
}

.hero h1 span {
  color: var(--blue)
}

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 32px
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.hero-call {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy)
}

.hero-call-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-call-info {
  display: flex;
  flex-direction: column
}

.hero-call-info small {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px
}

.hero-img {
  position: relative;
  display: flex;
  justify-content: center
}

.hero-img img {
  width: 90%;
  filter: drop-shadow(0 24px 48px rgba(14, 165, 233, .15));
  animation: float 5s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

/* ── SERVICES ── */
.services-section {
  background: var(--white)
}

.services-header {
  text-align: center;
  margin-bottom: 56px
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: var(--trans)
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(14, 165, 233, .2)
}

.service-card:hover::before {
  transform: scaleX(1)
}

.svc-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px
}

.service-card:hover .svc-icon {
  background: var(--blue);
  color: #fff
}

.svc-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px
}

.svc-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px
}

.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue)
}

.svc-more:hover {
  gap: 10px
}

/* ── TRUSTED / ABOUT ── */
.trusted-section {
  background: var(--light)
}

.trusted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.img-stack {
  position: relative;
  height: 480px
}

.img-stack img {
  border-radius: 12px;
  object-fit: cover;
  position: absolute;
  box-shadow: var(--shadow)
}

.img-stack .img-main {
  width: 320px;
  height: 400px;
  left: 0;
  top: 0;
  border: 6px solid #fff;
  z-index: 1
}

.img-stack .img-secondary {
  width: 260px;
  height: 300px;
  right: 0;
  bottom: 0;
  border: 6px solid #fff;
  z-index: 2
}

.exp-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px
}

.exp-badge .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  font-family: 'Barlow', sans-serif;
  line-height: 1
}

.exp-badge .lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3
}

.trusted-content .section-title {
  font-size: 32px
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px
}

.check-item strong {
  font-size: 15px;
  color: var(--navy)
}

.check-item p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px
}

/* ── GET STARTED ── */
.get-started-section {
  background: var(--white)
}

.gs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.gs-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px
}

.gs-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px
}

.gs-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px
}

.gs-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px
}

.gs-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text)
}

.gs-point i {
  color: var(--blue);
  margin-top: 3px;
  flex-shrink: 0
}

.gs-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative
}

.gs-img img {
  width: 100%;
  height: 440px;
  object-fit: cover
}

.gs-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px
}

.gs-badge .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  font-family: 'Barlow', sans-serif;
  line-height: 1
}

.gs-badge .lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy)
}

/* ── PORTFOLIO ── */
.portfolio-section {
  background: var(--light)
}

.portfolio-header {
  text-align: center;
  margin-bottom: 56px
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

@media(max-width:1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 280px;
  box-shadow: var(--shadow);
  cursor: pointer
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--trans)
}

.portfolio-card:hover img {
  transform: scale(1.06)
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--trans)
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1
}

.portfolio-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 4px
}

.portfolio-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff
}

/* ── STATS ── */
.stats-section {
  background: var(--blue);
  padding: 60px 0
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center
}

.stat-item .num {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  line-height: 1
}

.stat-item .lbl {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  margin-top: 6px
}

/* ── FAQ ── */
.faq-section {
  background: var(--white)
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start
}

.faq-left .section-title {
  font-size: 30px
}

.faq-left .section-desc {
  font-size: 14px;
  margin: 16px 0 28px
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans)
}

.accordion-item.open {
  border-color: rgba(14, 165, 233, .3);
  box-shadow: 0 4px 16px rgba(14, 165, 233, .08)
}

.accordion-btn {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: 'Barlow', sans-serif
}

.accordion-btn span {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy)
}

.accordion-item.open .accordion-btn span {
  color: var(--blue)
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: var(--trans)
}

.accordion-item.open .accordion-icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(180deg)
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.accordion-body p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted)
}

/* ── ABOUT PAGE ── */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  text-align: center
}

.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .6)
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .6)
}

.page-hero .breadcrumb a:hover {
  color: #fff
}

.page-hero .breadcrumb .sep {
  color: var(--blue)
}

.about-story {
  background: var(--white)
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-story-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.about-story-img img {
  width: 100%;
  height: 420px;
  object-fit: cover
}

.founded-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  border: 1px solid rgba(14, 165, 233, .2)
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px
}

.mv-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(14, 165, 233, .15)
}

.mv-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px
}

.mv-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted)
}

.how-it-works {
  background: var(--light)
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px
}

.process-step {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--trans)
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(14, 165, 233, .2)
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Barlow', sans-serif
}

.process-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px
}

.process-step p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted)
}

.why-us-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px
}

.why-card {
  background: var(--light);
  border-radius: 12px;
  padding: 36px;
  border: 1px solid rgba(14, 165, 233, .15)
}

.why-card i {
  font-size: 36px;
  color: var(--blue);
  margin-bottom: 16px
}

.why-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted)
}

/* ── CONTACT PAGE ── */
.contact-section {
  background: var(--white)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--light);
  border-radius: 12px;
  border: 1px solid rgba(14, 165, 233, .15)
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0
}

.contact-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px
}

.contact-card-body a,
.contact-card-body p {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy)
}

.contact-card-body a:hover {
  color: var(--blue)
}

.contact-form-wrap {
  background: var(--light);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(14, 165, 233, .1)
}

.contact-form-wrap h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px
}

.contact-form-wrap p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  transition: var(--trans)
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, .12)
}

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

.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 12px;
  display: none
}

.form-alert.success {
  display: block;
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .25);
  color: #065f46
}

.form-alert.error {
  display: block;
  background: rgba(239, 68, 68, .08);
  border: 1px solid rgba(239, 68, 68, .2);
  color: #b91c1c
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 48px
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .65);
  font-size: 14px
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px
}

.footer-about p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .5);
  margin-top: 16px
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--blue)
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col ul a:hover {
  color: #fff;
  padding-left: 4px
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans)
}

.footer-social a:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px)
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px
}

.footer-contact-list i {
  color: var(--blue);
  margin-top: 3px;
  flex-shrink: 0
}

.footer-contact-list a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .35)
}

.footer-bottom-links {
  display: flex;
  gap: 20px
}

.footer-bottom-links a:hover {
  color: #fff
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  z-index: 999;
  transition: var(--trans)
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .55)
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--blue);
  padding: 60px 0
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap
}

.cta-inner h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff
}

.cta-inner p {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  margin-top: 6px
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {

  .hero-grid,
  .trusted-grid,
  .gs-grid,
  .contact-grid,
  .about-story-grid,
  .faq-grid,
  .gs-grid {
    grid-template-columns: 1fr
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-us-cards {
    grid-template-columns: 1fr
  }

  .img-stack {
    height: 360px
  }

  .img-stack .img-main {
    width: 260px;
    height: 320px
  }

  .img-stack .img-secondary {
    width: 200px;
    height: 240px
  }

  .hero h1 {
    font-size: 38px
  }

  .section-title {
    font-size: 28px
  }

  .hero-img {
    display: none
  }
}

@media(max-width:768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    flex-direction: column
  }

  .main-nav.open {
    display: flex
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px
  }

  .nav-toggle {
    display: flex
  }

  .top-banner-left li:nth-child(2),
  .top-banner-left li:nth-child(3) {
    display: none
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .mission-vision,
  .form-row {
    grid-template-columns: 1fr
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }

  .cta-inner {
    flex-direction: column;
    text-align: center
  }

  .process-grid {
    grid-template-columns: 1fr
  }
}