/* ==============================
   ARKAPESTCONTROL - MAIN STYLES
   ============================== */

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

:root {
  --primary:     #1b4332;
  --primary-dark:#081c15;
  --primary-mid: #2d6a4f;
  --accent:      #52b788;
  --accent-light:#95d5b2;
  --cta:         #40916c;
  --cta-hover:   #2d6a4f;
  --white:       #ffffff;
  --light:       #f0faf4;
  --gray:        #6c757d;
  --dark-text:   #1a1a2e;
  --border:      #d8f3dc;
  --whatsapp:    #25D366;
  --shadow:      0 8px 32px rgba(27,67,50,0.13);
  --radius:      10px;
  --transition:  0.3s ease;
}

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

html { scroll-behavior: smooth; }

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

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

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

ul { list-style: none; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--primary-dark);
  color: #ccc;
  font-size: 0.8rem;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #ccc; transition: color var(--transition); }
.top-bar a:hover { color: var(--accent); }
.top-bar .top-info { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar .top-info span { display: flex; align-items: center; gap: 6px; }
.top-bar .top-social { display: flex; gap: 12px; }
.top-bar .top-social a { font-size: 1rem; }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 70px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  width: 46px;
  height: 46px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}
.brand-text .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
.brand-text .brand-sub {
  font-size: 0.65rem;
  color: var(--accent-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-link .arrow { font-size: 0.65rem; transition: transform var(--transition); }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  z-index: 999;
  border-top: 3px solid var(--accent);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  color: var(--dark-text);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  border-bottom: 1px solid #f0f0f0;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 24px;
}
.dropdown a i { color: var(--accent); width: 18px; font-size: 0.9rem; }

.btn-nav {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 9px 22px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(82,183,136,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--primary-dark);
  padding: 10px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 10px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--accent); background: rgba(255,255,255,0.05); padding-left: 28px; }
.mobile-submenu { padding-left: 16px; display: none; }
.mobile-submenu.open { display: block; }
.mobile-submenu a { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.mobile-parent {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.mobile-btn-wrap { padding: 12px 20px; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- HERO / CAROUSEL ---- */
.hero { position: relative; height: 92vh; min-height: 560px; overflow: hidden; }
.hero-slides { height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,28,21,0.85) 40%, rgba(8,28,21,0.35) 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6%;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(82,183,136,0.2);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  width: fit-content;
}
.hero-badge i { color: var(--accent); }
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-arrows {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  gap: 10px;
}
.hero-arrows button {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.hero-arrows button:hover { background: var(--accent); border-color: var(--accent); }
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dots span.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82,183,136,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--primary-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,67,50,0.3);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* ---- SECTIONS ---- */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--primary); color: var(--white); }
.section-light { background: var(--light); }

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.7); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- STATS ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--primary-dark);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat-box {
  background: var(--primary);
  padding: 36px 24px;
  text-align: center;
  transition: background var(--transition);
}
.stat-box:hover { background: var(--primary-mid); }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(27,67,50,0.08);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(27,67,50,0.15); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--accent); }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.service-link {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 10px; }

/* ---- WHY CHOOSE US ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
}
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-badge-float .badge-icon { font-size: 2rem; color: var(--accent); }
.why-badge-float .badge-info .num { font-weight: 800; font-size: 1.5rem; color: var(--primary); }
.why-badge-float .badge-info .txt { font-size: 0.78rem; color: var(--gray); }
.why-points { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 10px;
  transition: background var(--transition);
}
.why-point:hover { background: var(--light); }
.why-point-icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.why-point:hover .why-point-icon { background: var(--primary); color: var(--accent); }
.why-point h4 { font-size: 0.95rem; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.why-point p { font-size: 0.83rem; color: var(--gray); line-height: 1.5; }

/* ---- TESTIMONIALS ---- */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; }
.testimonial-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.author-location { font-size: 0.8rem; color: var(--gray); }
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.testimonials-nav button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.testimonials-nav button.active { background: var(--accent); width: 28px; border-radius: 5px; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(82,183,136,0.1);
  border-radius: 50%;
  top: -100px; right: -100px;
}
.cta-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 30px; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- BLOG CARDS ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,67,50,0.08);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(27,67,50,0.14); }
.blog-img {
  height: 200px;
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 22px; }
.blog-cat {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-body p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { font-size: 0.78rem; color: var(--gray); display: flex; gap: 14px; }
.blog-meta i { color: var(--accent); }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 220px;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,67,50,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 2rem; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(27,67,50,0.1); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  background: var(--white);
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--light); }
.faq-question i { font-size: 0.85rem; transition: transform var(--transition); flex-shrink: 0; color: var(--accent); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding-top: 14px;
}
.faq-item.open .faq-answer { display: block; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--primary);
  border-radius: 16px;
  padding: 40px 32px;
  color: var(--white);
}
.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-info-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-item-txt h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 3px; }
.contact-item-txt p, .contact-item-txt a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.contact-social { display: flex; gap: 10px; margin-top: 28px; }
.contact-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}
.contact-social a:hover { background: var(--accent); transform: translateY(-2px); }
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-card h3 { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--dark-text);
  transition: border-color var(--transition);
  outline: none;
  background: var(--white);
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(82,183,136,0.12); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(82,183,136,0.07);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 580px; margin: 0 auto 20px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.breadcrumb a { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.35); }

/* ---- ABOUT CARDS ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 4px 16px rgba(27,67,50,0.08);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(27,67,50,0.12); }
.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin: 0 auto 14px;
}
.team-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-card p { font-size: 0.8rem; color: var(--gray); }

/* ---- FOOTER ---- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .brand-name { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin: 12px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-mid);
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--accent); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item i { color: var(--accent); margin-top: 3px; font-size: 0.9rem; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.newsletter-form { display: flex; gap: 0; margin-top: 14px; }
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.83rem;
  border-radius: 6px 0 0 6px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--cta-hover); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--accent); }

/* ---- FLOATING BUTTONS ---- */
.fab-wrap {
  position: fixed;
  bottom: 28px;
  left: 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  z-index: 9999;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  text-decoration: none;
}
.fab-wa { background: var(--whatsapp); animation: fabPulse 2s infinite; }
.fab-call { background: var(--primary); }
.fab:hover { transform: scale(1.12); }
.fab-tooltip {
  position: absolute;
  left: 60px;
  background: var(--dark-text);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.fab:hover .fab-tooltip { opacity: 1; }

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-head {
  background: var(--primary);
  padding: 28px 30px 20px;
  position: relative;
}
.modal-head h3 { font-size: 1.3rem; font-weight: 800; color: white; margin-bottom: 4px; }
.modal-head p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-body { padding: 28px 30px; }

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.process-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(27,67,50,0.08);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.process-step:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(27,67,50,0.12); }
.step-num {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 14px;
}
.process-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }

/* ---- MISC ---- */
.divider { width: 60px; height: 4px; background: var(--accent); border-radius: 2px; margin: 16px 0; }
.text-center .divider { margin: 16px auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.img-rounded { border-radius: 14px; overflow: hidden; }
.img-rounded img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #444; }
.check-list li i { color: var(--accent); font-size: 0.9rem; flex-shrink: 0; }
.feature-boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 28px; }
.feature-box {
  background: var(--light);
  border-radius: 12px;
  padding: 22px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-box:hover { background: var(--white); box-shadow: 0 4px 16px rgba(27,67,50,0.1); transform: translateY(-2px); }
.feature-box i { font-size: 1.6rem; color: var(--primary); margin-bottom: 10px; }
.feature-box h4 { font-size: 0.92rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.feature-box p { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }
.badge-green {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
}
.highlight-box {
  background: var(--light);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { font-size: 0.9rem; color: #444; line-height: 1.7; }
.page-content { max-width: 820px; margin: 0 auto; }
.page-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin: 32px 0 12px; }
.page-content p { font-size: 0.92rem; color: #444; line-height: 1.8; margin-bottom: 16px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--accent); transform: translateY(-2px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .two-col { grid-template-columns: 1fr; }
  .why-img-wrap { height: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .section, .cta-banner { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { height: 80vh; min-height: 480px; }
  .hero-content { max-width: 100%; }
  .top-bar .top-social { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 0 4%; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}
