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

:root {
  --primary: #1B5E20;
  --primary-light: #2E7D32;
  --primary-dark: #0D3B12;
  --accent: #FFD54F;
  --accent-dark: #FFC107;
  --dark: #0a0a0a;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --dark-4: #2a2a2a;
  --text: #f0f0f0;
  --text-muted: #a0a0a0;
  --text-dim: #707070;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.08);
  --gradient-primary: linear-gradient(135deg, #1B5E20, #2E7D32, #43A047);
  --gradient-gold: linear-gradient(135deg, #FFD54F, #FFC107, #FF8F00);
  --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.2);
  --radius: 0px;
  --radius-sm: 0px;
  --radius-full: 0px;
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  background-image: radial-gradient(circle at 50% 0%, #0D3B12 0%, #0a0a0a 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

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

/* ===== TOPBAR ===== */
.topbar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-right a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  transition: var(--transition);
}

.topbar-right a:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  /* White background as requested */
  border-bottom: 1px solid #eeeeee;
  padding: 10px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.navbar.scrolled .logo-img {
  height: 60px;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  /* Dark text for white background */
  white-space: nowrap;
}

.logo-text span {
  display: block;
  font-size: 11px;
  color: #555555;
  /* Muted dark for second line */
  opacity: 0.8;
  margin-top: -2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  /* Dark text */
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a i {
  font-size: 10px;
  opacity: 0.6;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2E7D32;
  /* Beautiful green */
  background: rgba(0, 0, 0, 0.04);
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 4px;
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eeeeee;
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
  color: #2E7D32;
}

/* Nav Contact Section */
.nav-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: #2E7D32;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(230, 126, 34, 0.2);
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-text .label {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  /* Dark text */
  line-height: 1;
  margin-bottom: 2px;
}

.contact-text .number {
  font-size: 14px;
  font-weight: 600;
  color: #555555;
  /* Dark muted text */
  padding: 0 !important;
  background: none !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #1a1a1a;
  /* Dark toggle */
  font-size: 24px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  contain: paint;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(27, 94, 32, 0.2) 100%);
  z-index: 2;
}

.hero-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  filter: brightness(0.85);
}

/* Video Showcase */
.video-showcase-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.video-player {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--glass-border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16/9;
  background: #000;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 8px 30px rgba(27, 94, 32, 0.5);
  transition: var(--transition);
}

.video-overlay:hover .play-btn-large {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(27, 94, 32, 0.6);
}

.video-overlay-text {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  flex: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 213, 79, 0.15);
  border: 1px solid rgba(255, 213, 79, 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 20px;
  animation: slideInLeft 1s ease both;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  animation: slideInRight 1s ease 0.2s both;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(27, 94, 32, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(27, 94, 32, 0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--gradient-gold);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInLeft 1s ease 0.6s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

.hero-stat .label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image {
  flex: 1;
  position: relative;
  animation: fadeInRight 1s ease 0.4s both;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.3;
}

.floating-card {
  position: absolute;
  padding: 16px 20px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  bottom: 40px;
  left: -30px;
}

.floating-card.card-2 {
  top: 40px;
  right: -20px;
}

.floating-card .fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.floating-card .fc-text .fc-num {
  font-size: 18px;
  font-weight: 700;
}

.floating-card .fc-text .fc-label {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 100px 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

.section-dark {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 125, 50, 0.08);
  border: 1.5px solid rgba(46, 125, 50, 0.25);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: #1B5E20;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-header h2 span {
  color: var(--accent);
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #f7fbf7;
  border: 1px solid #e8eee8;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #2E7D32;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}


.service-card-body {
  padding: 30px 20px;
}

.service-card-body h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #1a1a1a;
}

.service-card-body p {
  font-size: 15px;
  color: #666666;
  margin-bottom: 25px;
  line-height: 1.6;
  min-height: 70px;
}

.btn-service {
  display: block;
  width: 100%;
  background: #2E7D32;
  color: #ffffff;
  padding: 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  text-align: center;
}

.btn-service:hover {
  background: #1B5E20;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

/* Services Light Theme Overrides */
#services .section-header h2 {
  color: #1a1a1a;
}

#services .section-header p {
  color: #555555;
}

#services .service-card {
  background: #f7fbf7;
  border: 1px solid #e8eee8;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

#services .service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

#services .service-card-body h3 {
  color: #1a1a1a;
}

#services .service-card-body p {
  color: #666666;
}

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  position: relative;
}

.why-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-image .exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-primary);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.exp-badge .exp-num {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.exp-badge .exp-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 20px;
}

.why-content h2 span {
  color: var(--accent);
}

.why-content>p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.why-feature:hover {
  border-color: rgba(27, 94, 32, 0.4);
  background: var(--glass-hover);
}

.why-feature .wf-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(27, 94, 32, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.why-feature h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.why-feature p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 2px;
  transform: translateY(10px);
  transition: 0.4s ease;
}

.gallery-overlay p {
  color: var(--accent);
  font-size: 12px;
  transform: translateY(10px);
  transition: 0.5s ease;
}

.gallery-item:hover h4,
.gallery-item:hover p {
  transform: translateY(0);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(6) {
  grid-column: span 2;
}

/* ===== TESTIMONIALS ===== */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255, 213, 79, 0.3);
}

.tc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.tc-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}

.tc-google {
  font-size: 12px;
  color: #fff;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tc-google i {
  color: #4285F4;
  /* Google Blue */
}

.tc-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.tc-time {
  font-size: 11px;
  color: var(--text-dim);
  opacity: 0.8;
}

.tc-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.tc-name {
  font-weight: 600;
  font-size: 14px;
}

.tc-role {
  font-size: 12px;
  color: var(--text-dim);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}

.testimonial-nav button:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ===== STATS ===== */
.stats-section {
  background: var(--gradient-primary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>') repeat;
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-num {
  font-size: 56px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: flex;
  justify-content: center;
}


.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1100px;
}

.ci-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.ci-card:hover {
  background: #1c1c1c;
  border-color: var(--primary);
  transform: translateY(-5px);
}

.ci-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(27, 94, 32, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--primary-light);
}

.ci-details h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}

.ci-details p {
  font-size: 13px;
  color: var(--text-muted);
}

.ci-details a {
  color: var(--accent);
}

.ci-details a:hover {
  text-decoration: underline;
}

.contact-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 350px;
  grid-column: 1 / -1;
  /* Span full width of grid */
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.7) brightness(0.7);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 0;
}

.footer .logo-text {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 16px 0 20px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  background-size: 30px 30px, 100% 100%;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@keyframes waRipple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonial-card {
    min-width: calc(50% - 12px);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media(max-width:768px) {
  .topbar {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-contact {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 3px solid #2E7D32;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideDown 0.4s ease forwards;
  }

  .nav-links.active a {
    font-size: 16px;
    padding: 12px 24px;
    border-bottom: 1px solid #f5f5f5;
    width: 100%;
    justify-content: flex-start;
    display: flex;
    align-items: center;
    color: #333;
  }

  .nav-links.active .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    background: #f9f9f9;
    width: 100%;
    display: block;
  }

  .nav-links.active .dropdown-menu a {
    padding-left: 40px;
    font-size: 14px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
  }

  .nav-links.active a:hover {
    padding-left: 30px;
    color: #2E7D32;
    background: #f0fdf4;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service-card,
  .service-card-img,
  .hero-stat,
  .testimonial-card,
  .pricing-image-wrapper,
  .pricing-cta-card,
  .contact-info-item,
  .contact-form,
  .footer-social-link,
  .btn {
    border-radius: 0 !important;
  }

  .service-card-body {
    padding: 15px 10px;
  }

  .service-card-body h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .service-card-body p {
    font-size: 11px;
    min-height: auto;
    margin-bottom: 12px;
  }

  .btn-service {
    font-size: 12px;
    padding: 8px;
    border-radius: 0 !important;
  }

  #services .container-fluid {
    padding: 0 10px !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat .number {
    font-size: 28px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col h4 {
    text-align: center;
  }

  .footer-brand .logo-img {
    height: 40px !important;
  }

  .footer-brand .logo-text {
    font-size: 16px !important;
  }

  .footer-brand p {
    font-size: 13px !important;
    margin-bottom: 15px !important;
    max-width: 280px;
  }

  .footer-col h4 {
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }

  .footer-col ul li {
    margin-bottom: 6px !important;
  }

  .footer-col ul li a {
    font-size: 13px !important;
  }

  .footer-bottom {
    font-size: 11px !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  .section {
    padding: 40px 0;
  }

  .testimonial-card {
    min-width: 100%;
  }

  /* Pricing Responsive Fixes */
  .pricing-content {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  .pricing-image-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    border: none !important;
    border-bottom: 1px dashed #eee !important;
  }

  .pricing-image-wrapper img {
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
  }

  .pricing-cta-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    padding: 30px 20px !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
  }

  .pricing-cta-card h3 {
    font-size: 1.5rem !important;
  }

  #pricing .container {
    padding: 0 !important;
    max-width: 100% !important;
  }

  #pricing {
    padding-top: 15px !important;
  }

  .pricing-image-container,
  .pricing-image-container img {
    border-radius: 0 !important;
  }
}

/* ===== PRICING SECTION ===== */
#pricing .section-header {
  margin-bottom: 30px;
}

#pricing .section-header h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  color: #1a1a1a;
  font-weight: 800;
}

#pricing .section-header p {
  color: #555;
  font-weight: 500;
}

.pricing-image-container {
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.pricing-image-container:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.pricing-image-container img {
  display: block;
  transition: var(--transition);
  border-radius: 18px;
}

.pricing-cta {
  margin-top: 25px !important;
}

.pricing-cta p {
  font-size: 1rem !important;
  margin-bottom: 15px !important;
}

.pricing-cta .btn {
  padding: 12px 30px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .pricing-image-container {
    padding: 8px;
    border-width: 1px;
  }

  .pricing-cta .btn {
    width: 100%;
  }

  .pricing-footer {
    flex-direction: column;
    padding: 15px !important;
    gap: 15px !important;
    text-align: center !important;
  }

  .footer-logo,
  .footer-contact {
    justify-content: center !important;
    text-align: center !important;
    gap: 10px !important;
  }

  .footer-logo img {
    height: 45px !important;
  }

  .footer-logo div {
    font-size: 1rem !important;
  }
}