@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ════════════════════════════════════
   1. BASE & VARIABLES
════════════════════════════════════ */
:root {
  --navy: #0b1c54;
  --navy-light: #162a75;
  --green: #5ba324;
  --green-hover: #48841a;
  --peach: #e8944e;
  --peach-light: #fdf5ef;
  --white: #ffffff;
  --light-bg: #f4f7f6;
  --text-main: #4a5568;
  --text-dark: #1a202c;
  --border-light: rgba(11, 28, 84, 0.08);
  
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(11,28,84,0.05);
  --shadow-md: 0 10px 30px rgba(11,28,84,0.08);
  --shadow-lg: 0 20px 40px rgba(11,28,84,0.12);
  
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 6rem 0;
}

/* ════════════════════════════════════
   2. BUTTONS
════════════════════════════════════ */

/* ════════════════════════════════════
   8. TESTIMONIALS
════════════════════════════════════ */
.section-bg {
  background-color: #f4f6f9;
}

.testimonials-section {
  padding: 5rem 0;
}

.testimonial-swiper {
  padding: 2rem 0 4rem 0 !important; /* Space for pagination */
}

.testimonial-swiper .swiper-slide {
  height: auto;
}

.testi-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}

.testi-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-weight: 500;
}

.testi-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testi-author-info h4 {
  margin: 0 0 0.2rem 0;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}

.testi-author-info span {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
}

.testi-quote-icon {
  color: rgba(91, 163, 36, 0.3); /* Green tinted */
}

/* Swiper Pagination Customization */
.testimonial-swiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--green);
  width: 24px;
  border-radius: 10px;
}

/* ════════════════════════════════════
   9. CTA BLOCK
════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 8px; /* Slightly less rounded than pill for clinical look */
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(91,163,36,0.3);
}

.btn-primary:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(11,28,84,0.2);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(11,28,84,0.3);
}

.btn-dark:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(91,163,36,0.3);
  transform: translateY(-2px);
}

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

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(11,28,84,0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ════════════════════════════════════
   3. TOPBAR
════════════════════════════════════ */
.topbar {
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.topbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left strong {
  color: var(--peach);
}

.topbar-right {
  display: flex;
  gap: 1rem;
}

.tb-icon-link {
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-icon-link:hover {
  color: var(--peach);
}

.tb-icon-link svg, .tb-icon-link i {
  width: 16px;
  height: 16px;
}

/* ════════════════════════════════════
   4. HEADER (SOLID NAV)
════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo {
  height: 50px;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--green);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}

.header-phone i {
  color: var(--green);
  width: 18px;
  height: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s;
}

/* ════════════════════════════════════
   5. RESQ STYLE HERO & PAGE HERO
════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 11rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 5rem 0 4rem;
  }
  .page-hero h1 {
    font-size: 2.2rem;
  }
}

.hero {
  background: var(--navy);
  position: relative;
  padding: 6rem 0 10rem 0; /* Extra padding bottom for overlapping cards */
  overflow: hidden;
}

/* Decorative background elements */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(91,163,36,0.15) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.hero-bg-anim {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: floatOrb 20s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.orb-1 {
  width: 500px; height: 500px;
  background: rgba(91, 163, 36, 0.35); /* Glowing Green */
  top: -150px; left: -100px;
  animation-duration: 25s;
}

.orb-2 {
  width: 600px; height: 600px;
  background: rgba(232, 148, 78, 0.25); /* Subtle Peach */
  bottom: -200px; right: -150px;
  animation-duration: 30s;
  animation-direction: alternate-reverse;
}

.orb-3 {
  width: 400px; height: 400px;
  background: rgba(43, 85, 204, 0.4); /* Deep vibrant blue */
  top: 40%; left: 40%;
  animation-duration: 22s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(100px, 50px) scale(1.1) rotate(120deg); }
  66% { transform: translate(-50px, 150px) scale(0.9) rotate(240deg); }
  100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
}

.hero-badge-small {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--peach);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(232, 148, 78, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title span {
  color: var(--green);
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-hero-sec {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
}

.btn-hero-sec:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.hero-image-wrapper {
  position: relative;
}

.hero-img-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 4px solid rgba(255,255,255,0.1);
}

.hero-img-box img {
  width: 100%;
  height: auto;
  transform: scale(1.05);
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  bottom: -20px;
  left: -30px;
  z-index: 10;
  border-left: 4px solid var(--peach);
  animation: float 4s ease-in-out infinite;
}

.floating-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--peach-light);
  color: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-badge-text h4 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.floating-badge-text p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* ════════════════════════════════════
   6. OVERLAPPING CARDS (Trust Section)
════════════════════════════════════ */
.overlap-cards {
  margin-top: -80px; /* Pull up into hero */
  position: relative;
  z-index: 10;
  padding-bottom: 5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.oc-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border-bottom: 3px solid transparent;
  transition: all 0.3s var(--ease);
}

.oc-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--green);
  box-shadow: var(--shadow-lg);
}

.oc-icon {
  width: 56px;
  height: 56px;
  background: rgba(91,163,36,0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.oc-icon i {
  width: 24px;
  height: 24px;
}

.oc-card h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.oc-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* ════════════════════════════════════
   6.5 SCROLLING TICKER
════════════════════════════════════ */
.scrolling-ticker {
  background: var(--navy);
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.ticker-item {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  color: var(--white);
  white-space: nowrap;
}

.ticker-item span {
  color: var(--green);
  margin-right: 3rem;
  font-size: 1.5rem;
  line-height: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}

/* ════════════════════════════════════
   7. ABOUT BLOCK (ResQ Style)
════════════════════════════════════ */
.about-section {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  border-radius: 16px;
  overflow: hidden;
}

.about-stat-badge {
  position: absolute;
  top: 30px;
  right: -30px;
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border-bottom: 4px solid var(--green);
  box-shadow: var(--shadow-md);
}

.about-stat-badge h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.about-stat-badge p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.section-label {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-heading {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-list {
  margin-bottom: 2rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-weight: 600;
}

.about-list i {
  color: var(--green);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.af-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
}

.af-icon {
  width: 48px;
  height: 48px;
  background: rgba(91,163,36,0.1);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ════════════════════════════════════
   8. SERVICES / PRODUCTS BLOCK
════════════════════════════════════ */
.services-section {
  padding: 6rem 0;
  background: var(--light-bg);
}

.section-header-center,
.section-header.center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.sc-icon {
  width: 64px;
  height: 64px;
  background: rgba(91,163,36,0.1);
  color: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .sc-icon {
  background: var(--green);
  color: var(--white);
}

.sc-icon i {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link i {
  width: 16px;
  height: 16px;
  color: var(--green);
  transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ════════════════════════════════════
   9. CTA BLOCK
════════════════════════════════════ */
.cta-block {
  background: var(--peach-light);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -20%;
  width: 300px;
  height: 300px;
  background: rgba(232, 148, 78, 0.1); /* Peach with opacity */
  border-radius: 50%;
}

.cta-block h2 {
  color: var(--navy);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-block p {
  color: var(--text-main);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════
   10. FOOTER
════════════════════════════════════ */
.footer {
  background: #061030;
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer .container {
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════
   10.5 FOOTER BACKGROUND ANIMATIONS
════════════════════════════════════ */
.footer-anim-elements {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ft-anim-icon {
  position: absolute;
  color: rgba(255,255,255,0.03); /* Extremely faint watermark effect */
}

.ft-dna {
  width: 250px; height: 250px;
  top: 10%; left: -5%;
  animation: float-rotate 35s infinite linear;
}

.ft-atom {
  width: 300px; height: 300px;
  bottom: -10%; right: -5%;
  animation: float-rotate-reverse 40s infinite linear;
}

.ft-leaf {
  width: 150px; height: 150px;
  top: 30%; right: 15%;
  animation: float-up-down 20s infinite ease-in-out;
}

.ft-flask {
  width: 120px; height: 120px;
  bottom: 20%; left: 25%;
  animation: float-up-down 25s infinite ease-in-out reverse;
  color: rgba(91, 163, 36, 0.05); /* Faint green tint for flask */
}

@keyframes float-rotate {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

@keyframes float-rotate-reverse {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-40px) rotate(-180deg); }
  100% { transform: translateY(0) rotate(-360deg); }
}

@keyframes float-up-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.ft-heading {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.ft-links li {
  margin-bottom: 0.75rem;
}

.ft-links a {
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.ft-links a:hover {
  color: var(--green);
}

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ════════════════════════════════════
   11. ANIMATIONS (Scroll Reveals)
════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ════════════════════════════════════
   10. QUALITY PAGE
════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(11,28,84,0.06);
  border: 1px solid rgba(11,28,84,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(11,28,84,0.1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.stat-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(11,28,84,0.06);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(11,28,84,0.12);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.process-step h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.process-step p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.certifications {
  background: var(--light-bg);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.cert-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(11,28,84,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(11,28,84,0.12);
}

.cert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(91,163,36,0.1);
  color: var(--green);
  margin-bottom: 1.25rem;
}

.cert-icon svg,
.cert-icon i {
  width: 32px;
  height: 32px;
}

.cert-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.cert-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.cta-section {
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.cta-section p {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ════════════════════════════════════
   11. PRODUCTS PAGE
════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(11,28,84,0.06);
  border: 1px solid rgba(11,28,84,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(11,28,84,0.1);
}

.pc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(91,163,36,0.1);
  color: var(--green);
  margin-bottom: 1.5rem;
}

.pc-icon svg,
.pc-icon i {
  width: 32px;
  height: 32px;
}

.product-card h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.product-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-card .card-link:hover {
  color: var(--navy);
}

.product-img-banner {
  margin-top: 5rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11,28,84,0.15);
}

.product-img-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ════════════════════════════════════
   12. CONTACT PAGE
════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2, .contact-form h2 {
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-detail-icon {
  width: 54px;
  height: 54px;
  background: rgba(91, 163, 36, 0.1);
  color: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-detail-item p {
  margin-bottom: 0;
  color: #666;
  font-size: 0.95rem;
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.contact-form {
  background: var(--white);
  padding: 3.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(11, 28, 84, 0.08);
  border: 1px solid rgba(11, 28, 84, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #e1e5ee;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  background: #f8fafc;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(91, 163, 36, 0.1);
}

.contact-form .btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.map-section {
  line-height: 0;
  display: block;
}

/* ════════════════════════════════════
   12. RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.8rem; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar-wrap { flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
  .topbar-left { flex-wrap: wrap; justify-content: center; }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 1.5rem;
  }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .header-phone { display: none; }

  .hero-wrap { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-buttons { justify-content: center; }
  .hero { padding: 4rem 0 8rem 0; }
  
  .floating-badge { left: 10px; bottom: 10px; padding: 1rem; }
  
  .overlap-cards { margin-top: -40px; }
  .cards-grid { grid-template-columns: 1fr; }
  
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-stat-badge { right: 10px; top: 10px; padding: 1.5rem; }
  .about-stat-badge h3 { font-size: 2rem; }
  
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* ════════════════════════════════════
   13. FLOATING CONTACT BUTTONS
════════════════════════════════════ */
.floating-contact-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.fc-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.fc-tooltip {
  position: absolute;
  right: 75px;
  background: var(--white);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem; /* Small title */
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s var(--ease);
  pointer-events: none;
}

.fc-item:hover .fc-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.fc-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s var(--ease);
}

.fc-btn:hover {
  transform: scale(1.1);
}

.fc-call {
  background: var(--navy);
  box-shadow: 0 4px 12px rgba(11,28,84,0.3);
}

.fc-call i {
  width: 24px;
  height: 24px;
}

.fc-whatsapp {
  background-color: #25D366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 1024px) {
  .floating-contact-wrap {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .fc-btn {
    width: 50px;
    height: 50px;
  }
  .fc-whatsapp svg {
    width: 26px;
    height: 26px;
  }
  .fc-call i {
    width: 20px;
    height: 20px;
  }
  .fc-tooltip {
    right: 65px;
  }
}
