@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #002b8c;
  --primary-dark: #001a5e;
  --primary-light: #0d3fa6;
  --accent: #e34000;
  --accent-hover: #c23600;
  --sky: #a1e9f6;
  --sky-dark: #72d8ef;
  --dark: #0a0e24;
  --dark2: #111533;
  --text: #1a1a2e;
  --text-muted: #5a6080;
  --light: #f7f9ff;
  --white: #ffffff;
  --border: rgba(0,43,140,0.12);
  --shadow: 0 4px 24px rgba(0,43,140,0.10);
  --shadow-lg: 0 16px 48px rgba(0,43,140,0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

html,body {
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ──────────────── SCROLLBAR ──────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ──────────────── NAVBAR ──────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(0,16,60,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(161,233,246,0.08);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  background: rgba(0,10,40,0.99);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img {
  height: 44px; width: auto;
  border-radius: 6px;
  object-fit: contain;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.15;
}
.nav-logo-text .brand { font-size: 1.05rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.nav-logo-text .tagline { font-size: 0.62rem; font-weight: 400; color: var(--sky); letter-spacing: 0.06em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.8);
  transition: color var(--transition); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--sky); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--sky); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--accent); color: var(--white) !important;
  padding: 8px 20px; border-radius: 50px;
  font-weight: 600 !important; font-size: 0.85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(0,10,40,0.99); backdrop-filter: blur(16px);
  padding: 1.5rem 5%; gap: 0;
  border-bottom: 1px solid rgba(161,233,246,0.1);
  transform: translateY(-20px); opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  pointer-events: none;
  z-index: 999;
}
.mobile-menu.open {
  display: flex; transform: translateY(0); opacity: 1; pointer-events: all;
}
.mobile-menu a {
  color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 500;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu a:hover { color: var(--sky); padding-left: 8px; }
.mobile-menu .m-cta {
  margin-top: 1rem;
  background: var(--accent); color: var(--white) !important;
  text-align: center; padding: 12px 24px !important;
  border-radius: 50px; font-weight: 600 !important;
  border-bottom: none !important; transition: background var(--transition) !important;
}
.mobile-menu .m-cta:hover { background: var(--accent-hover) !important; padding-left: 0 !important; }

/* ──────────────── HERO ──────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #000e38 0%, #001a5e 40%, #003090 70%, #001a5e 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 5% 60px;
}

.hero-bg-pattern {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(161,233,246,0.08), transparent 70%);
  animation: floatCircle 8s ease-in-out infinite;
}
.hero-circle:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -100px; animation-delay: 0s; }
.hero-circle:nth-child(2) { width: 400px; height: 400px; bottom: -100px; left: -100px; animation-delay: 2s; }
.hero-circle:nth-child(3) { width: 300px; height: 300px; top: 50%; left: 40%; animation-delay: 4s; }

@keyframes floatCircle {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-waves {
  position: absolute; bottom: 0; left: 0; right: 0; overflow: hidden; line-height: 0;
}
.hero-waves svg { display: block; }

.hero-content { max-width: 700px; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(161,233,246,0.12); border: 1px solid rgba(161,233,246,0.25);
  color: var(--sky); font-size: 0.78rem; font-weight: 600;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 1.5rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-badge span { width: 6px; height: 6px; background: var(--sky); border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; color: var(--white); line-height: 1.15;
  margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.hero h1 .highlight {
  color: var(--sky);
  position: relative;
}
.hero h1 .accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.72);
  line-height: 1.7; margin-bottom: 2.5rem; max-width: 560px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(227,64,0,0.4);
}
.btn-primary:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(227,64,0,0.5);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.35);
  font-weight: 600; font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--sky); background: rgba(161,233,246,0.08);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--sky); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; font-weight: 400; }

.hero-img-side {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 40%; max-width: 500px; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-glow {
  position: relative;
  width: 300px; height: 300px;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-glow::before {
  content: ''; position: absolute; inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,233,246,0.15) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-logo-glow img {
  width: 260px; height: 260px; object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 40px rgba(161,233,246,0.3));
}

/* ──────────────── SECTION BASE ──────────────── */
section { padding: 90px 5%; }
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--primary); line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted); max-width: 600px; line-height: 1.75;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ──────────────── ABOUT ──────────────── */
.about { background: var(--light); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-logo-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px; padding: 3rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.about-logo-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(161,233,246,0.08);
}
.about-logo-card img { width: 100%; max-width: 260px; border-radius: 12px; }
.about-logo-card .founded {
  font-size: 0.8rem; color: rgba(255,255,255,0.65); text-align: center;
  font-weight: 500; letter-spacing: 0.04em;
}
.about-logo-card .founded strong { color: var(--sky); display: block; font-size: 1.4rem; font-weight: 800; }

.experience-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: var(--white);
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 800; box-shadow: 0 4px 20px rgba(227,64,0,0.4);
  text-align: center;
}
.experience-badge .num { font-size: 1.8rem; line-height: 1; }
.experience-badge .lbl { font-size: 0.55rem; letter-spacing: 0.04em; opacity: 0.9; }

.about-text { }
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.about-feat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 1rem 1.25rem; background: var(--white);
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-feat:hover { border-color: var(--sky); box-shadow: 0 4px 16px rgba(0,43,140,0.08); }
.feat-icon {
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.feat-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.feat-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ──────────────── SERVICES ──────────────── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--sky));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px); border-color: rgba(0,43,140,0.25);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-size: 2.5rem; font-weight: 800;
  color: rgba(0,43,140,0.07); line-height: 1;
  margin-bottom: 0.75rem;
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(0,43,140,0.25);
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ──────────────── WHY CHOOSE US ──────────────── */
.why { background: linear-gradient(160deg, #000e38 0%, #001a5e 50%, #003090 100%); }
.why .section-title { color: var(--white); }
.why .section-label { color: var(--sky); }
.why .section-sub { color: rgba(255,255,255,0.65); }

.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(161,233,246,0.12);
  border-radius: var(--radius); padding: 2rem 1.75rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(161,233,246,0.08); border-color: rgba(161,233,246,0.3);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(161,233,246,0.12);
  border: 1px solid rgba(161,233,246,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.58); line-height: 1.65; }

/* ──────────────── PROCESS ──────────────── */
.process { background: var(--light); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--primary), var(--sky));
  z-index: 0;
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px rgba(0,43,140,0.3);
  position: relative; z-index: 1;
  border: 3px solid var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0,43,140,0.4);
}
.step-num {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  font-size: 0.65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.process-step h4 { font-size: 0.88rem; font-weight: 700; color: var(--primary); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }

/* ──────────────── COVERAGE MAP ──────────────── */
.coverage { background: var(--white); }
.coverage-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; }
.coverage-info { }
.coverage-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.coverage-areas { display: flex; flex-direction: column; gap: 0.75rem; }
.coverage-area {
  display: flex; align-items: center; gap: 12px;
  padding: 0.75rem 1rem; background: var(--light);
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  font-size: 0.88rem; font-weight: 500; color: var(--text);
}
.coverage-area span.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.coverage-area span.dot.accent { background: var(--accent); }
.map-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  aspect-ratio: 4/3;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ──────────────── CONTACT ──────────────── */
.contact { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem; background: var(--white);
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateX(4px); }
.contact-card a { color: var(--text); transition: color var(--transition); }
.contact-card:hover a { color: var(--primary); }
.contact-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-icon.blue { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.contact-icon.orange { background: linear-gradient(135deg, var(--accent), #ff6a2f); }
.contact-icon.green { background: linear-gradient(135deg, #25d366, #128c7e); }
.contact-icon.fb { background: linear-gradient(135deg, #1877f2, #0a5bc4); }
.contact-icon.mail { background: linear-gradient(135deg, #5b33f1, #3d1faa); }

.contact-details strong { display: block; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-details span, .contact-details a { font-size: 0.95rem; font-weight: 600; }

.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.35rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: var(--text);
  background: var(--light); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,43,140,0.08);
  background: var(--white);
}
textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); border: none; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,43,140,0.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,43,140,0.4); }

/* ──────────────── FOOTER ──────────────── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.65);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-logo img { height: 48px; width: auto; border-radius: 6px; object-fit: contain; background: var(--primary-light); padding: 4px; }
.footer-logo .brand { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; margin-bottom: 1.5rem; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: rgba(255,255,255,0.6);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--sky); padding-left: 5px; }

.footer-contact-items { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
.footer-contact-item span:first-child { font-size: 1rem; }

.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom .heart { color: var(--accent); }

/* ──────────────── FLOATING BUTTONS ──────────────── */
.float-btns { position: fixed; bottom: 28px; z-index: 900; }
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 50px;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700;
  text-decoration: none; color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.float-whatsapp { right: 24px; bottom: 28px; position: fixed; background: #25d366; }
.float-call { left: 24px; bottom: 28px; position: fixed; background: var(--primary); }
.float-btn .fb-icon { font-size: 1.2rem; }

/* ──────────────── ANIMATIONS ──────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

.designer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  column-gap: 0px;
}
.designer p {margin-bottom: 0%;}
.designer img {
  width: 200px;
  max-width: 500px;
  height: auto;
  margin-top: 0%;
}

.designer a:hover {transform: scale(1.03);}
/* ──────────────── FORM SUCCESS ──────────────── */
.form-success {
  display: none; text-align: center; padding: 2rem;
  color: #1a7c4a; background: #e7faf0; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 1rem; margin-top: 1rem;
}
.form-success.show { display: block; }

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 400px; }
  .coverage-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .hero-img-side { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  section { padding: 70px 5%; }
  .process-steps { grid-template-columns: 1fr; }
  .float-btn {bottom: 100px;}
  .designer a {margin-bottom: 100px;}
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .float-btn span:not(.fb-icon) { display: none; }
  .float-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}
