@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  outline: none; border: none;
  text-decoration: none;
}

:root {
  --green:        #1a7a3c;
  --green-dark:   #0d5228;
  --green-light:  #e8f5ed;
  --gold:         #c8922a;
  --gold-light:   #f5e6c8;
  --white:        #ffffff;
  --off-white:    #f7f6f3;
  --dark:         #0a1a0f;
  --mid:          #2d3b32;
  --muted:        #6b7c6e;
  --border:       rgba(26,122,60,0.15);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 12px rgba(10,26,15,0.08);
  --shadow-md: 0 8px 32px rgba(10,26,15,0.12);
  --shadow-lg: 0 20px 60px rgba(10,26,15,0.18);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 62.5%;
}

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--mid);
  background: var(--white);
  overflow-x: hidden;
}

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

em {
  font-style: italic;
  color: var(--green);
  font-family: var(--font-display);
}

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 2.4rem;
}

.pre-green { color: var(--green); }
.pre-mark  { color: var(--white); }

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
  animation: fillBar 1.8s ease forwards;
}

@keyframes fillBar {
  to { width: 100%; }
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 5%;
  background: rgba(10, 26, 15, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  padding: 1.2rem 5%;
  background: rgba(10, 26, 15, 0.96);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(26,122,60,0.5));
  transition: var(--transition);
}

.logo-image:hover {
  filter: drop-shadow(0 0 12px rgba(200,146,42,0.7));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-text span {
  color: var(--green);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.navbar .nav-link {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--green);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.header-cta i { font-size: 1.6rem; color: #25d366; }

.header-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,122,60,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero Slider ---- */
.home {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.home-slid {
  width: 100%;
  height: 100%;
}

.swiper-slide.box {
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 6s ease;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,22,12,0.75) 0%,
    rgba(8,22,12,0.45) 50%,
    rgba(8,22,12,0.3) 100%
  );
}

.swiper-slide.box .content {
  position: absolute;
  bottom: 12%;
  left: 7%;
  color: var(--white);
  max-width: 70rem;
  z-index: 2;
}

.slide-tag {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,146,42,0.4);
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.2s ease, transform 0.6s 0.2s ease;
}

.swiper-slide-active .slide-tag {
  opacity: 1; transform: translateY(0);
}

.swiper-slide.box .content h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 8vw, 10rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s 0.4s ease, transform 0.7s 0.4s ease;
}

.swiper-slide-active .content h1 {
  opacity: 1; transform: translateY(0);
}

.swiper-slide.box .content p {
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.8rem;
  max-width: 50rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.6s ease, transform 0.6s 0.6s ease;
}

.swiper-slide-active .content p {
  opacity: 1; transform: translateY(0);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--green);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1.4rem 2.8rem;
  border-radius: 50px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s 0.8s ease;
}

.swiper-slide-active .hero-btn {
  opacity: 1; transform: translateY(0);
}

.hero-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,146,42,0.45);
}

.swiper-pagination {
  bottom: 3.5rem !important;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: rgba(255,255,255,0.4) !important;
  opacity: 1 !important;
  transition: var(--transition) !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  width: 28px !important;
  border-radius: 4px !important;
}

.scroll-hint {
  position: absolute;
  bottom: 3rem;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 5;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---- Stats Bar ---- */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--dark);
  padding: 2.4rem 5%;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 4rem;
  flex: 1;
  min-width: 120px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ---- Section Helpers ---- */
.section-eyebrow {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 5vw, 5.5rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
}

.title-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 3px;
  margin-top: 2rem;
}

.title-line.centered { margin: 2rem auto 0; }

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

/* ---- About ---- */
.about {
  padding: 10rem 5%;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,122,60,0.06), transparent 70%);
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 7rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--dark);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--off-white);
  box-shadow: var(--shadow-md);
}

.about-badge span {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.about-badge strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.about-content p {
  font-size: 1.65rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 3rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--mid);
}

.feature-item i {
  color: var(--green);
  font-size: 1.6rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--green);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1.4rem 3rem;
  border-radius: 50px;
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,122,60,0.4);
}

/* ---- Services ---- */
.services {
  padding: 10rem 5%;
  background: var(--white);
}

/* Slider wrapper: arrows + track */
.services-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Arrow buttons */
.services-arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--green);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.services-arrow:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 6px 20px rgba(26,122,60,0.35);
  transform: scale(1.08);
}

.services-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* Outer clip */
.services-track-outer {
  flex: 1;
  overflow: hidden;
}

/* The scrollable row */
.services-container {
  display: flex;
  gap: 2.4rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each card: fixed width so 3 sit side by side on desktop */
.service-card {
  flex: 0 0 calc((100% - 4.8rem) / 3);
  min-width: 0;
}

.service-card {
  position: relative;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 4.5rem 3.5rem;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.card-number {
  position: absolute;
  top: 3rem; right: 3rem;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(26,122,60,0.08);
  line-height: 1;
  transition: var(--transition);
  z-index: 1;
}

.service-card:hover .card-number {
  color: rgba(255,255,255,0.1);
}

.card-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  transition: var(--transition);
}

.card-icon i {
  font-size: 2.6rem;
  color: var(--green);
  transition: var(--transition);
}

.service-card:hover .card-icon {
  background: rgba(255,255,255,0.15);
}

.service-card:hover .card-icon i {
  color: var(--white);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.4rem;
  transition: var(--transition);
}

.service-card p {
  position: relative;
  z-index: 1;
  font-size: 1.55rem;
  color: var(--muted);
  line-height: 1.8;
  transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover p {
  color: rgba(255,255,255,0.92);
}

.card-hover-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
  z-index: 2;
}

.service-card:hover .card-hover-line {
  width: 100%;
}

/* Slider dots */
.services-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3.6rem;
}

.services-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26,122,60,0.2);
  cursor: pointer;
  transition: var(--transition);
}

.services-dot.active {
  background: var(--green);
  width: 26px;
  border-radius: 4px;
}

/* ---- Contact ---- */
.contact {
  padding: 10rem 5%;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--white);
  padding: 2.4rem 2.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 2rem;
  color: var(--green);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-details h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-details a {
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}

.contact-details a:hover { color: var(--green); }

.contact-details span {
  font-size: 1.35rem;
  color: var(--muted);
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding: 7rem 5% 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.footer-brand h3 span { color: var(--green); }

.footer-brand p {
  font-size: 1.45rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 30rem;
  margin-bottom: 2.4rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links-col ul li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.45rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links-col ul li a i {
  font-size: 0.9rem;
  color: var(--green);
}

.footer-links-col ul li a:hover { color: var(--white); }

.footer-contact-col p {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

.footer-contact-col p i {
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-col a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-contact-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.3);
}

/* ---- Scroll Top Button ---- */
#scrollTopBtn {
  position: fixed;
  bottom: 100px;
  right: 2.4rem;
  width: 46px;
  height: 46px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

#scrollTopBtn:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-3px);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 3rem;
  right: 2.4rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
}

.whatsapp-float .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--dark);
  color: var(--white);
  font-size: 1.3rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .service-card {
    flex: 0 0 calc((100% - 2.4rem) / 2);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .header-cta { display: none; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-image-wrap img {
    height: 360px;
  }

  .about-badge {
    bottom: -1.5rem;
    right: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html { font-size: 55%; }

  .hamburger { display: flex; }

  .navbar {
    position: fixed;
    top: 0; right: -100%;
    width: 28rem;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 8rem 3rem 3rem;
    gap: 0.4rem;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.3);
  }

  .navbar.active { right: 0; }

  .navbar .nav-link {
    font-size: 1.8rem;
    width: 100%;
    padding: 1.2rem 1rem;
  }

  .service-card {
    flex: 0 0 85%;
  }

  .services-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .stats-bar {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider { display: none; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 5% 4rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .swiper-slide.box .content {
    left: 5%;
    bottom: 15%;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  html { font-size: 50%; }
  .about-features { grid-template-columns: 1fr; }
}
