/* ========== GLOBAL RESET & VARIABLES ========== */
:root {
  --gold: #2ea85c;
  --gold-light: #4cba70;
  --gold-dark: #1a7a3f;
  --dark: #0a143a;
  --dark-2: #f0faf4;
  --dark-3: #ffffff;
  --dark-4: #e8f5ee;
  --text-light: #0a143a;
  --text-muted: #6b7280;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--white);
  color: var(--text-light);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.gold { color: var(--gold); }
.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-title span { color: var(--gold); }
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.divider {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 0.8rem auto 1.5rem;
  border-radius: 2px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,168,92,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(46,168,92,0.18);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar.scrolled {
  padding: 0.6rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-icon {
  height: 50px;
  /* background: var(--gold); */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.logo-text {font-size: 1.3rem;font-weight: 700;color: #0a143a;margin-top: 16px;margin-left: -31px;}
.logo-text span { color: #2ea85c; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--text-light); transition: 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); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}
.hero-slider {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  opacity: 0;
  transition: opacity 1.4s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(10,20,58,0.80) 0%, rgba(10,20,58,0.60) 50%, rgba(26,122,63,0.50) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  animation: heroFadeUp 1s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(46,168,92,0.18);
  border: 1px solid rgba(46,168,92,0.55);
  color: #7ee8a2;
  padding: 0.4rem 1.2rem; border-radius: 30px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.hero-content h1 { margin-bottom: 1.4rem; color: #ffffff; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.15; }
.hero-content > p { font-size: 1.15rem; color: rgba(255,255,255,0.82); margin-bottom: 2.2rem; max-width: 620px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center;
  margin-bottom: 3rem;
}
.hero-chips span {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 0.35rem 0.9rem; border-radius: 20px;
  font-size: 0.82rem; font-weight: 500;
  backdrop-filter: blur(6px);
}
.hero-chips span i { color: var(--gold); }
.hero-stats {
  display: flex; gap: 0; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 1.2rem 2rem;
  backdrop-filter: blur(10px);
  width: 100%;
}
.stat { text-align: center; flex: 1; min-width: 100px; padding: 0 1rem; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 15%; height: 70%;
  width: 1px; background: rgba(255,255,255,0.2);
}
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--gold); display: block; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.7); font-size: 1.3rem;
  animation: bounce 2s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.hero-scroll:hover { color: var(--gold); border-color: var(--gold); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.elevator-animation {
  position: relative; width: 260px; height: 380px;
  background: var(--white);
  border: 2px solid rgba(46,168,92,0.25); border-radius: 12px;
  overflow: hidden; box-shadow: 0 0 60px rgba(46,168,92,0.1), var(--shadow);
}
.elevator-shaft {
  position: absolute; left: 50%; top: 10%; transform: translateX(-50%);
  width: 120px; height: 80%;
  background: var(--dark-4);
  border: 1px solid rgba(46,168,92,0.2); border-radius: 4px;
}
.elevator-car {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 100px; height: 70px;
  background: linear-gradient(135deg, #e8f5ee, #c8ead5);
  border: 2px solid var(--gold); border-radius: 4px;
  animation: elevate 4s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.elevator-car::after {
  content: ''; position: absolute; left: 50%; top: -10px;
  transform: translateX(-50%); width: 2px; height: 10px; background: var(--gold);
}
@keyframes elevate { 0%, 100% { bottom: 10%; } 50% { bottom: 65%; } }
.floor-indicators {
  position: absolute; right: 16px; top: 10%; height: 80%;
  display: flex; flex-direction: column; justify-content: space-between;
}
.floor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--dark-4); border: 1px solid rgba(46,168,92,0.35);
  transition: background var(--transition);
}
.floor-dot.active { background: var(--gold); box-shadow: 0 0 6px var(--gold); }

/* ========== SECTIONS ========== */
.section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 5rem 2rem; background: var(--dark-2); }
.section-full .section { padding: 0; }

/* ========== FEATURES ========== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--white); border: 1px solid rgba(46,168,92,0.14);
  border-radius: var(--radius); padding: 2rem; transition: var(--transition);
  position: relative; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold); transition: height 0.4s ease;
}
.feature-card:hover { border-color: rgba(46,168,92,0.35); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(46,168,92,0.12); }
.feature-card:hover::before { height: 100%; }
.feature-icon {
  font-size: 2.2rem; margin-bottom: 1rem; color: var(--gold);
  width: 58px; height: 58px; background: rgba(46,168,92,0.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.feature-card h3 { margin-bottom: 0.5rem; color: var(--dark); }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ========== PRODUCTS ========== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.product-card {
  background: var(--white); border: 1px solid rgba(46,168,92,0.14);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(46,168,92,0.15); border-color: rgba(46,168,92,0.4); }
.product-image {
  height: 200px; background: var(--dark-4);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.product-image::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: linear-gradient(transparent, var(--white));
}
.product-image svg { pointer-events: none; }
.product-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--white);
  padding: 0.2rem 0.7rem; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}
.product-info { padding: 1.5rem; }
.product-info h3 { margin-bottom: 0.5rem; color: var(--dark); }
.product-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.product-specs { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.spec-tag {
  background: rgba(46,168,92,0.08); border: 1px solid rgba(46,168,92,0.25);
  color: var(--gold-dark); padding: 0.2rem 0.65rem; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600;
}

/* ========== SERVICES ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card {
  background: var(--white); border: 1px solid rgba(46,168,92,0.14);
  border-radius: var(--radius); padding: 2rem; transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.service-card:hover { border-color: rgba(46,168,92,0.4); box-shadow: 0 12px 30px rgba(46,168,92,0.12); }
.service-icon {
  width: 60px; height: 60px;
  background: rgba(46,168,92,0.1); border: 1px solid rgba(46,168,92,0.28);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.2rem; color: var(--gold);
}
.service-card h3 { margin-bottom: 0.5rem; color: var(--dark); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.service-list { padding-left: 0; }
.service-list li { color: var(--text-muted); font-size: 0.9rem; padding: 0.3rem 0 0.3rem 1.2rem; position: relative; }
.service-list li::before { content: '›'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ========== GALLERY ========== */
.gallery-tabs { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab-btn {
  padding: 0.6rem 1.8rem; border-radius: 4px;
  border: 2px solid rgba(46,168,92,0.3); background: transparent;
  color: var(--text-muted); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--dark-4); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(46,168,92,0.15); transition: var(--transition); cursor: pointer;
}
.gallery-item:hover { border-color: rgba(46,168,92,0.5); transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 3rem; }
.gallery-placeholder i { font-size: 2.5rem; color: var(--gold); }
.gallery-placeholder span { font-size: 0.85rem; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(46,168,92,0.15);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition); font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.video-card {
  background: var(--white); border: 1px solid rgba(46,168,92,0.15);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.video-card:hover { border-color: rgba(46,168,92,0.4); }
.video-thumb {
  position: relative; aspect-ratio: 16/9; background: var(--dark-4);
  display: flex; align-items: center; justify-content: center;
}
.video-thumb iframe { width: 100%; height: 100%; border: none; }
.video-thumb-placeholder { display: flex; flex-direction: column; align-items: center; gap: 1rem; color: var(--text-muted); font-size: 3.5rem; }
.video-thumb-placeholder i { font-size: 3.5rem; color: var(--gold); }
.play-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(46,168,92,0.12); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; cursor: pointer; transition: var(--transition);
}
.play-btn:hover { background: var(--gold); color: var(--white); }
.video-info { padding: 1rem; }
.video-info h4 { font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--dark); }
.video-info p { color: var(--text-muted); font-size: 0.82rem; }

/* ========== MAP ========== */
.map-container {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(46,168,92,0.25); box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 420px; border: none; }

/* ========== CONTACT ========== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info h2 { margin-bottom: 0.5rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(46,168,92,0.1); border: 1px solid rgba(46,168,92,0.28);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-icon i { color: var(--gold); font-size: 1.1rem; }
.contact-item h4 { font-size: 0.88rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.contact-item p { color: var(--text-muted); font-size: 0.95rem; }
.contact-form {
  background: var(--white); border: 1px solid rgba(46,168,92,0.15);
  border-radius: var(--radius); padding: 2rem;
  box-shadow: 0 4px 20px rgba(46,168,92,0.06);
}
.contact-form h3 { margin-bottom: 1.5rem; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--dark-4); border: 1px solid rgba(46,168,92,0.22);
  border-radius: 4px; color: var(--text-light); font-size: 0.95rem;
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--white); color: var(--dark); }
.form-success { display: none; text-align: center; padding: 1.5rem; color: var(--gold-dark); font-size: 1.1rem; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 4rem 2rem; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(255,255,255,0.88); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-banner .btn-outline { border-color: var(--white); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--gold-dark); }

/* ========== FOOTER ========== */
footer { background: var(--dark-2); border-top: 1px solid rgba(46,168,92,0.15); padding: 4rem 2rem 1.5rem; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 6px;
  background: var(--white); border: 1px solid rgba(46,168,92,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.social-link i { font-size: 0.88rem; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h4 { color: var(--gold-dark); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 0.6rem; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.8rem; }
.footer-contact-item i { color: var(--gold); min-width: 16px; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom a { color: var(--gold); }

/* ========== PAGE HEADER ========== */
.page-header {
  padding: 7rem 2rem 3rem;
  background: linear-gradient(180deg, rgba(46,168,92,0.07) 0%, transparent 100%);
  text-align: center; border-bottom: 1px solid rgba(46,168,92,0.12);
}
.page-header h1 span { color: var(--gold); }
.page-header p { color: var(--text-muted); max-width: 600px; margin: 0.8rem auto 0; font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.88rem; color: var(--text-muted); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span::before { content: '›'; margin-right: 0.5rem; }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--white);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; opacity: 0; pointer-events: none;
  transition: var(--transition); z-index: 999;
  box-shadow: 0 4px 15px rgba(46,168,92,0.4);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ========== ICON HELPERS ========== */
.quick-contact-item i { font-size: 1.4rem; color: var(--gold); }
.office-flag i { font-size: 1.8rem; color: var(--gold); margin-bottom: 0.8rem; display: block; }
.upload-icon i { font-size: 2.8rem; color: var(--gold); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-content { padding: 0 1rem; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: 270px;
    background: var(--white); flex-direction: column;
    justify-content: center; gap: 2.5rem; font-size: 1.1rem;
    border-left: 1px solid rgba(46,168,92,0.15);
    transition: right var(--transition); padding: 2rem;
  }
  .nav-links.open { right: 0; box-shadow: -10px 0 40px rgba(0,0,0,0.1); }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats { gap: 0; padding: 1rem; }
  .hero-chips { gap: 0.5rem; }
}
@media (max-width: 480px) {
  .navbar { padding: 1rem; }
  .section, .section-full { padding: 3.5rem 1rem; }
}

/* ========== ANIMATIONS ========== */
.fade-in { opacity: 0; transform: translateY(30px); 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; }

/* ========== TESTIMONIALS ========== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--white); border: 1px solid rgba(46,168,92,0.14);
  border-radius: var(--radius); padding: 1.8rem; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 4rem; color: rgba(46,168,92,0.15); font-family: serif; line-height: 1;
}
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.8rem; }
.testimonial-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 1.1rem;
}
.author-name { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.author-role { font-size: 0.8rem; color: var(--text-muted); }
