@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #14b8a6;
  --primary-dark: #0d9488;
  --primary-light: #e6f7f5;
  --accent: #06b6d4;
  --accent2: #22d3ee;
  --dark: #1e1b2e;
  --dark2: #2d2a3e;
  --gray: #6b7280;
  --light: #f0fdfa;
  --white: #ffffff;
  --border: #d1fae5;
  --shadow: 0 4px 24px rgba(20,184,166,0.10);
  --shadow-lg: 0 20px 60px rgba(20,184,166,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f8fffe;
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-15px) rotate(1deg); }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2);   opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-15px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes gradient-shift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(20,184,166,0.3); }
  50%       { box-shadow: 0 0 30px rgba(20,184,166,0.6); }
}
@keyframes typing {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes slideInFromLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}
@keyframes slideInFromRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Utility classes ── */
.animate-fadeInUp    { animation: fadeInUp 0.8s ease-out forwards; }
.animate-fadeInLeft  { animation: fadeInLeft 0.8s ease-out forwards; }
.animate-fadeInRight { animation: fadeInRight 0.8s ease-out forwards; }
.animate-float       { animation: float 5s ease-in-out infinite; }
.animate-bounce      { animation: bounce 2s ease-in-out infinite; }
.animate-glow        { animation: glow 3s ease-in-out infinite; }
.animate-scaleIn     { animation: scaleIn 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.animate-slideInLeft { animation: slideInFromLeft 0.7s ease-out forwards; }
.animate-slideInRight{ animation: slideInFromRight 0.7s ease-out forwards; }
.animate-rotate      { animation: rotate 20s linear infinite; }
.animate-typing {
  animation: typing 3.5s steps(40,end), blink 0.75s step-end infinite;
  overflow: hidden;
  white-space: nowrap;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 15px;
  color: var(--gray);
  margin-top: 10px;
  max-width: 520px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(20,184,166,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(20,184,166,0.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* ── Background patterns ── */
.bg-dots {
  background-image: radial-gradient(circle, #d1d5db 1px, transparent 1px);
  background-size: 28px 28px;
}
.bg-grid {
  background-image:
    linear-gradient(rgba(20,184,166,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
.bg-stripes {
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 18px,
    rgba(20,184,166,0.04) 18px, rgba(20,184,166,0.04) 19px
  );
}
.bg-cross {
  background-image:
    linear-gradient(rgba(20,184,166,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,0.06) 1px, transparent 1px),
    linear-gradient(rgba(20,184,166,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,0.03) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px;
}
.bg-hex {
  background-image: radial-gradient(circle, rgba(20,184,166,0.12) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
}

/* ── Marquee ── */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  min-width: 160px;
  height: 72px;
  flex-shrink: 0;
}

/* ── Global grid overlay ── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,184,166,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 9998;
}


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner-2.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  filter: brightness(0.9);
}

/* Dark gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(92, 138, 158, 0.82) 0%,
    rgba(110, 102, 102, 0.55) 45%,
    rgba(73, 141, 168, 0.15) 100%
  );
  z-index: 1;
}

/* Bottom accent tint */
.hero__tint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(20, 184, 166, 0.25), transparent);
  z-index: 1;
  pointer-events: none;
}

/* Content block */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px 160px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d1fae5;
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: #33cfc0;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 12px rgba(20, 184, 166, 0.12);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14b8a6;
  display: inline-block;
  animation: pulse-ring 2s ease-out infinite;
}

/* Headline */
.hero__headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Animated word */
.hero__word-wrap {
  height: clamp(48px, 6.5vw, 86px);
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__word {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  background: linear-gradient(90deg, #14b8a6 0%, #22d3ee 50%, #06b6d4 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite, fadeInUp 0.5s ease-out;
  display: inline-block;
}

/* Sub-copy */
.hero__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 44px;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* CTA row */
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  justify-content: center;
}

.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #14b8a6, #06b6d4);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 28px rgba(20, 184, 166, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  cursor: pointer;
}

.hero__btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1e1b2e;
  border: 2px solid #d1fae5;
  padding: 15px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

/* Stats row */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__stat {
  padding: 0 36px;
  text-align: center;
}

.hero__stat--border {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat-value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
  font-weight: 500;
}

/* Service cards strip */
.hero__services {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  background: #fff;
  border-top: 1px solid #d1fae5;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
}

.hero__svc-link {
  flex: 1;
  text-decoration: none;
}

.hero__svc-link:not(.hero__svc-link--last) .hero__svc {
  border-right: 1px solid #f0eef8;
}

.hero__svc {
  padding: 20px 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  transition: background 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Animated top bar */
.hero__svc-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  /* colour is set inline via JS */
  background: currentColor;
}

/* Icon circle */
.hero__svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.25s ease;
}

.hero__svc-label {
  font-size: 11px;
  font-weight: 700;
  color: #374151;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero__content {
    padding: 60px 24px 180px;
  }
  .hero__stat {
    padding: 0 18px;
  }
  .hero__svc-label {
    font-size: 10px;
    white-space: normal;
  }
  .hero__svc-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero__services {
    flex-wrap: wrap;
  }
  .hero__svc-link {
    flex: 0 0 33.333%;
  }
  .hero__svc-link:not(.hero__svc-link--last) .hero__svc {
    border-right: none;
    border-bottom: 1px solid #f0eef8;
  }
  .hero__content {
    padding-bottom: 260px;
  }
  .hero__cta {
    flex-direction: column;
    align-items: center;
  }
  .hero__btn-primary,
  .hero__btn-outline {
    width: 100%;
    justify-content: center;
  }
}


/* ═══════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════════ */

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: var(--transition-smooth);
  padding: 0 24px;
  animation: fadeInDown 0.5s ease-out;
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom-color: rgba(20, 184, 166, 0.1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(20, 184, 166, 0.05);
}

/* ── Inner layout ── */
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Logo ── */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.navbar__logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── Gradient pill ── */
.navbar__pill {
  display: flex;
  align-items: stretch;
  height: 50px;
  background: linear-gradient(90deg, #0d9488, #14b8a6, #22d3ee);
  background-size: 200% 100%;
  border-radius: 12px;
  overflow: visible;          /* dropdowns must escape the pill */
  box-shadow: 0 6px 24px rgba(20, 184, 166, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: gradient-shift 3s ease infinite;
  position: relative;
  flex: 0 0 auto;
}

/* ── Nav links ── */
.navbar__link {
  display: flex;
  align-items: center;
  padding: 0 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease, transform 0.3s ease;
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 1;
  cursor: pointer;
  background: transparent;
  gap: 4px;
}

.navbar__link:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.navbar__link--active {
  background: rgba(255, 255, 255, 0.25) !important;
  font-weight: 800 !important;
  transform: none !important;
}

/* ── Dropdown wrapper ── */
.navbar__drop-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}

/* ── Chevron ── */
.navbar__chevron {
  font-size: 11px;
  transition: transform 0.25s ease;
  display: inline-block;
  line-height: 1;
}

/* ── Dropdown menu ── */
.navbar__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(20, 184, 166, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(20, 184, 166, 0.1);
  min-width: 260px;
  overflow: hidden;
  z-index: 9999;
  transform-origin: top left;
}

.navbar__dropdown--open {
  display: block;
  animation: scaleIn 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Dropdown items ── */
.navbar__drop-item {
  display: block;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-bottom: 1px solid rgba(243, 244, 246, 0.8);
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
  position: relative;
}

.navbar__drop-item:last-child {
  border-bottom: none;
}

.navbar__drop-item:hover {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.08), transparent);
  color: var(--primary);
  padding-left: 28px;
}

.navbar__drop-item--active {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.1), transparent);
  color: var(--primary);
  font-weight: 700;
  padding-left: 28px;
}

.navbar__drop-item--active::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: glow 2s ease-in-out infinite;
}

/* ── CTA area ── */
.navbar__cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.navbar__quote-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 10px;
  background: linear-gradient(90deg, #14b8a6, #22d3ee);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(20, 184, 166, 0.4);
  transition: var(--transition-bounce);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  cursor: pointer;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .navbar__link {
    padding: 0 10px;
    font-size: 12.5px;
  }
}

@media (max-width: 768px) {
  .navbar__pill {
    display: none;   /* hide pill on mobile — add a hamburger menu if needed */
  }
  .navbar__inner {
    height: 68px;
  }
  .navbar__logo img {
    height: 48px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   OFFERS / PRODUCTS SECTION
════════════════════════════════════════════════════════════════ */

.offers {
  padding: 100px 60px;
  background: #f8f7ff;
  position: relative;
  overflow: hidden;
}

/* Bg pattern layer */
.offers__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Decorative blobs */
.offers__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.offers__blob--tr {
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #fff0f3, transparent 70%);
}

.offers__blob--bl {
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #fffbeb, transparent 70%);
}

/* Container */
.offers__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.offers__header {
  text-align: center;
  margin-bottom: 60px;
}

.offers__subtitle {
  margin: 12px auto 0;
  text-align: center;
}

/* Grid */
.offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* Card overrides */
.offers__card {
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.offers__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

/* Image area */
.offers__img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-color) 10%, transparent), color-mix(in srgb, var(--card-color) 5%, transparent));
  border-bottom: 2px solid color-mix(in srgb, var(--card-color) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fallback for browsers without color-mix */
@supports not (background: color-mix(in srgb, red 10%, transparent)) {
  .offers__img-wrap {
    background: rgba(20, 184, 166, 0.06);
    border-bottom-color: rgba(20, 184, 166, 0.15);
  }
}

.offers__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 12px;
  box-sizing: border-box;
  transition: transform 0.4s ease;
}

.offers__card:hover .offers__img {
  transform: scale(1.08);
}

/* Tag badge */
.offers__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* Body */
.offers__body {
  padding: 22px 24px 24px;
}

.offers__title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.offers__desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Footer row */
.offers__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offers__price {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.offers__btn {
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.offers__btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .offers {
    padding: 70px 24px;
  }

  .offers__grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .offers__grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════════════════════════════ */

.services {
  padding: 100px 60px;
  background: #f8f7ff;
  position: relative;
  overflow: hidden;
}

/* Bg pattern */
.services__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Blobs */
.services__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.services__blob--tl {
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #e6f7f5, transparent 70%);
}

.services__blob--br {
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #ccfbf1, transparent 70%);
}

/* Circle outlines */
.services__ring {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}

.services__ring--lg {
  right: -200px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(20, 184, 166, 0.08);
}

.services__ring--sm {
  right: -160px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(20, 184, 166, 0.06);
}

/* Container */
.services__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.services__header {
  text-align: center;
  margin-bottom: 60px;
}

.services__subtitle {
  margin: 12px auto 0;
  text-align: center;
}

/* Grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* Card */
.services__card {
  padding: 32px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Top accent bar */
.services__card-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Icon */
.services__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Title */
.services__card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

/* Description */
.services__card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Learn more link */
.services__learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .services {
    padding: 70px 24px;
  }

  .services__grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
  }

  .services__ring {
    display: none;
  }
}

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════════
   CLIENT MARQUEE SECTION
════════════════════════════════════════════════════════════════ */

.marquee-section {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.marquee-label {
  text-align: center;
  padding: 18px 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.marquee-spacer {
  height: 12px;
}

/* Logo items */
.marquee-logo {
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(20%);
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

/* Text items */
.marquee-text {
  white-space: nowrap;
  opacity: 0.85;
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT US SECTION
════════════════════════════════════════════════════════════════ */

/* ── Scroll-reveal utility ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section wrapper ── */
.about {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Dot grid */
.about__bg-dots {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

/* Blobs */
.about__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.about__blob--tr {
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #e6f7f5, transparent 70%);
}
.about__blob--bl {
  bottom: 0;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #ccfbf1, transparent 70%);
}

/* ── Main block ── */
.about__main {
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}

/* Image column */
.about__img-col {
  position: relative;
}

.about__img-frame {
  border-radius: 24px;
  height: 380px;
  background: linear-gradient(135deg, #eef2ff 0%, #f0fdfa 50%, #eff6ff 100%);
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 60px rgba(20, 184, 166, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

/* Floating stat cards */
.about__stat-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #f0f0f0;
  animation: float 4s ease-in-out infinite;
}
.about__stat-card--bl {
  bottom: -20px;
  left: -20px;
}
.about__stat-card--tr {
  top: -16px;
  right: -16px;
  animation-delay: 1s;
}
.about__stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
}
.about__stat-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

/* Text column */
.about__heading {
  margin-bottom: 20px;
}
.about__para {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.about__para--mb {
  margin-bottom: 32px;
}
.about__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Info cards strip ── */
.about__cards-strip {
  background: #f8f7ff;
  padding: 70px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about__cards-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.about__cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Info column card */
.about__info-col {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #d1fae5;
  box-shadow: 0 4px 24px rgba(20, 184, 166, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Info item inside column */
.about__info-item {
  padding: 28px;
}
.about__info-item--border {
  border-top: 1px solid #e6f7f5;
}

.about__info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.about__info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.about__info-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0;
}

/* Animated accent bar */
.about__info-bar {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 14px;
  animation: shimmer 2s ease infinite;
  background-size: 200% 100%;
}

.about__info-text {
  color: #6b7280;
  font-size: 13.5px;
  line-height: 1.8;
  margin: 0;
}

/* Bullet list */
.about__info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about__info-li {
  color: #6b7280;
  font-size: 13.5px;
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about__info-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__img-frame {
    height: 280px;
  }
  .about__stat-card--bl { bottom: -10px; left: 0; }
  .about__stat-card--tr { top: -10px;   right: 0; }
}

@media (max-width: 768px) {
  .about__main,
  .about__cards-strip {
    padding: 60px 24px;
  }
  .about__cards-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════════
   BANNER SLIDER
════════════════════════════════════════════════════════════════ */

.banner {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #f0fdfa;
}

.banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30,27,46,0.88) 0%, rgba(30,27,46,0.55) 55%, rgba(30,27,46,0.15) 100%);
  z-index: 1;
}

.banner__glow {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transition: background 0.5s ease;
}

.banner__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Tag */
.banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  width: fit-content;
  font-family: 'Inter', sans-serif;
}

.banner__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-ring 2s ease-out infinite;
}

/* Title */
.banner__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  white-space: pre-line;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  max-width: 600px;
}

/* Sub */
.banner__sub {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  font-family: 'Inter', sans-serif;
}

/* CTA row */
.banner__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.banner__btn-primary {
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.banner__btn-ghost {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Arrows */
.banner__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.banner__arrow--prev { left: 20px; }
.banner__arrow--next { right: 20px; }

/* Dots */
.banner__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.banner__dot {
  height: 8px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

/* Counter */
.banner__counter {
  position: absolute;
  bottom: 24px;
  right: 60px;
  z-index: 3;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

@media (max-width: 768px) {
  .banner { height: 420px; }
  .banner__content { padding: 0 24px; }
  .banner__counter { right: 24px; }
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════════════════ */

.contact {
  padding: 100px 60px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contact__blob--tl {
  top: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, #e6f7f5, transparent 70%);
}
.contact__blob--br {
  bottom: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, #ccfbf1, transparent 70%);
}

.contact__ring {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
}
.contact__ring--lg { right: -180px; width: 450px; height: 450px; border: 1px solid rgba(20,184,166,0.08); }
.contact__ring--sm { right: -130px; width: 340px; height: 340px; border: 1px solid rgba(20,184,166,0.05); }

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Info side */
.contact__heading { margin-bottom: 16px; }

.contact__sub {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact__items { display: flex; flex-direction: column; gap: 0; }

.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact__item-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.contact__item-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

/* Form side */
.contact__form-wrap {
  background: var(--light);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border);
}

.contact__form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__field { display: flex; flex-direction: column; }

.contact__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact__input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
}

.contact__textarea { resize: vertical; }

.contact__submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__ring { display: none; }
}

@media (max-width: 768px) {
  .contact { padding: 70px 24px; }
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */

/* Floating WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: #fff;
  padding: 13px 22px 13px 16px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.footer {
  background: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #d1fae5;
}

.footer__bg-dots {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

.footer__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.footer__blob--tr {
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, #e6f7f5, transparent 70%);
}
.footer__blob--bl {
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, #ccfbf1, transparent 70%);
}

/* CTA banner */
.footer__cta-banner {
  background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
  padding: 64px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.footer__cta-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.footer__cta-deco--1 { top: -60px; right: 15%; width: 200px; height: 200px; background: rgba(255,255,255,0.08); }
.footer__cta-deco--2 { bottom: -40px; right: 5%; width: 140px; height: 140px; background: rgba(255,255,255,0.06); }

.footer__cta-text { position: relative; z-index: 1; }

.footer__cta-title {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.2;
}

.footer__cta-sub {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  max-width: 480px;
}

.footer__cta-btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: #14b8a6;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

/* Main body */
.footer__body {
  padding: 56px 60px 0;
  position: relative;
  z-index: 1;
}

/* Top row */
.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #d1fae5;
}

.footer__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

.footer__brand-text {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 240px;
}

.footer__socials { display: flex; gap: 8px; }

.footer__social {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #f0fdfa;
  border: 1px solid #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #9ca3af;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer__links-title {
  color: #1e1b2e;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}

.footer__link {
  display: block;
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 10px;
  transition: color 0.2s ease, padding-left 0.2s ease;
  text-decoration: none;
}

/* Contact row */
.footer__contact-row {
  padding: 36px 0 48px;
}

.footer__contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer__contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer__contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.footer__contact-label {
  color: #1e1b2e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer__contact-val {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
}

.footer__contact-link {
  display: block;
  color: #6b7280;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-bottom: 4px;
}

/* Bottom bar */
.footer__bottom {
  padding: 16px 60px;
  border-top: 1px solid #d1fae5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.footer__copy { color: #9ca3af; font-size: 14px; }

.footer__bottom-links { display: flex; gap: 20px; }

.footer__bottom-link {
  color: #9ca3af;
  font-size: 14px;
  transition: color 0.2s ease;
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer__cta-banner { padding: 48px 24px; flex-direction: column; align-items: flex-start; }
  .footer__body { padding: 40px 24px 0; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__contact-grid { grid-template-columns: 1fr; }
  .footer__bottom { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
  .whatsapp-fab { bottom: 20px; right: 20px; padding: 12px 16px; font-size: 0; gap: 0; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════
   GALLERY SECTION
════════════════════════════════════════════════════════════════ */

.gallery {
  padding: 100px 60px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.gallery__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.gallery__blob--tr {
  top: -60px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #f0fdf4, transparent 70%);
}
.gallery__blob--bl {
  bottom: -60px;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #fffbeb, transparent 70%);
}

.gallery__ring {
  position: absolute;
  top: 50%;
  left: -150px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(20, 184, 166, 0.07);
  pointer-events: none;
}

.gallery__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header row */
.gallery__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  gap: 28px;
}

.gallery__header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Filter tabs */
.gallery__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--light);
  padding: 6px;
  border-radius: 12px;
}

.gallery__filter {
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--gray);
  box-shadow: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.gallery__filter--active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Grid — fixed 4 equal columns */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card — uniform height, no large/small difference */
.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery__item--large {
  height: 240px; /* same height — keeps rows even */
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay */
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.gallery__item-label {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.gallery__item-cat {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 2px 10px;
  border-radius: 100px;
  display: inline-block;
}

/* View all */
.gallery__view-all {
  text-align: center;
  margin-top: 48px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .gallery {
    padding: 70px 24px;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .gallery__item,
  .gallery__item--large {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery__item,
  .gallery__item--large { height: 150px; }
}
