/* ============================================
   Amaravati Developers — Global Styles
   Converted from Next.js / Tailwind CSS
   ============================================ */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a202c;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ---- Utility / Layout ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.space-x-2>*+* {
  margin-left: 0.5rem;
}

.space-x-3>*+* {
  margin-left: 0.75rem;
}

.space-x-6>*+* {
  margin-left: 1.5rem;
}

.space-y-2>*+* {
  margin-top: 0.5rem;
}

.space-y-3>*+* {
  margin-top: 0.75rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.w-full {
  width: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

/* ---- Colors ---- */
.bg-white {
  background-color: #fff;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-900 {
  background-color: #111827;
}

.bg-green-50 {
  background-color: #f0fdf4;
}

.bg-green-600 {
  background-color: #16a34a;
}

.bg-green-700 {
  background-color: #15803d;
}

.bg-green-800 {
  background-color: #166534;
}

.bg-green-900 {
  background-color: #14532d;
}

.bg-green-100 {
  background-color: #dcfce7;
}

.bg-yellow-100 {
  background-color: #fef9c3;
}

.bg-yellow-400 {
  background-color: #facc15;
}

.bg-yellow-500 {
  background-color: #eab308;
}

.text-white {
  color: #fff;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: #1f2937;
}

.text-gray-900 {
  color: #111827;
}

.text-green-400 {
  color: #4ade80;
}

.text-green-600 {
  color: #16a34a;
}

.text-green-700 {
  color: #15803d;
}

.text-green-800 {
  color: #166534;
}

.text-yellow-100 {
  color: #fef9c3;
}

.text-yellow-200 {
  color: #fef08a;
}

.text-yellow-300 {
  color: #fde047;
}

.text-yellow-400 {
  color: #facc15;
}

.text-yellow-600 {
  color: #ca8a04;
}

/* ---- Typography ---- */
.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.italic {
  font-style: italic;
}

.leading-relaxed {
  line-height: 1.75;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.uppercase {
  text-transform: uppercase;
}

/* ---- Spacing ---- */
.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-7 {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ---- Borders / Rounding ---- */
.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border {
  border: 1px solid #e5e7eb;
}

.border-2 {
  border: 2px solid;
}

.border-gray-100 {
  border-color: #f3f4f6;
}

.border-green-100 {
  border-color: #dcfce7;
}

.border-green-200 {
  border-color: #bbf7d0;
}

.border-white {
  border-color: #fff;
}

/* ---- Shadows ---- */
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ---- Transitions ---- */
.transition-colors {
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

.duration-300 {
  transition-duration: 0.3s;
}

.duration-500 {
  transition-duration: 0.5s;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: #16a34a;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.top-bar .top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.top-bar a {
  color: #fff;
}

.top-bar a:hover {
  color: #fde047;
}

.top-bar-phone {
  background: none;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  color: #fff !important;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.top-bar-phone:hover {
  color: #fde047 !important;
  transform: scale(1.02);
}

@media (max-width: 640px) {
  .top-bar .top-bar-inner {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .top-bar-phone .font-medium {
    font-size: 0.8rem;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #dcfce7;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 101px;
  width: 126px;
  object-fit: contain;
}

.nav-logo img:hover {
  opacity: 0.9;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a,
.nav-links .dropdown-toggle {
  color: #374151;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  position: relative;
  transition: color 0.3s;
  background: none;
  border: none;
  font-size: 1rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #16a34a;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links .dropdown-toggle:hover {
  color: #16a34a;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-dropdown.open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  min-width: 220px;
  display: none;
  z-index: 100;
}

.nav-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #374151;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: #f0fdf4;
  color: #16a34a;
}

.dropdown-menu a::after {
  display: none;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #374151;
  padding: 0.5rem;
}

.mobile-menu-btn:hover {
  color: #16a34a;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  padding: 1rem;
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a,
.mobile-menu .mobile-dropdown-toggle {
  display: block;
  color: #374151;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f9fafb;
  width: 100%;
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
}

.mobile-menu a:hover,
.mobile-menu .mobile-dropdown-toggle:hover {
  color: #16a34a;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.mobile-dropdown-toggle.open svg {
  transform: rotate(180deg);
}

.mobile-dropdown-items {
  display: none;
  padding: 0.5rem 0 0.5rem 1rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.mobile-dropdown-items.open {
  display: block;
}

.mobile-dropdown-items a {
  font-size: 1rem;
  font-weight: 500;
  color: #4b5563;
  border-bottom: none;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-section {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content-inner {
  text-align: center;
  color: #fff;
  max-width: 1200px;
  padding: 0 1rem;
}

.hero-icon {
  display: inline-flex;
  padding: 1.5rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-icon.green {
  background: linear-gradient(to right, #10b981, #16a34a);
}

.hero-icon.blue {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.hero-icon.purple {
  background: linear-gradient(to right, #8b5cf6, #6366f1);
}

.hero-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.hero-content h1 {
  font-size: 3.75rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-content .subtitle {
  font-size: 1.875rem;
  color: #fde047;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-content .description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 900px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
  line-height: 1.75;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #16a34a, #15803d);
  color: #fff;
  padding: 1.25rem 3.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  border: 2px solid #facc15;
  border-radius: 9999px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
  text-decoration: none;
}

.hero-cta-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #15803d, #166534);
}

.hero-cta-btn svg {
  width: 24px;
  height: 24px;
}

.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  z-index: 20;
}

.hero-dot {
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  transition: all 0.5s;
  cursor: pointer;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-dot.active {
  width: 64px;
  background: #facc15;
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.4);
}

/* Floating elements */
.hero-float {
  position: absolute;
  border-radius: 9999px;
  opacity: 0.15;
}

.hero-float-1 {
  top: 5rem;
  right: 5rem;
  width: 80px;
  height: 80px;
  background: #facc15;
  animation: bounce 2s infinite;
}

.hero-float-2 {
  bottom: 8rem;
  left: 4rem;
  width: 64px;
  height: 64px;
  background: #4ade80;
  animation: pulse 2s infinite;
}

.hero-float-3 {
  top: 10rem;
  left: 25%;
  width: 48px;
  height: 48px;
  background: #fff;
  animation: pulse 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.3;
  }
}

/* ============================================
   GRIDS
   ============================================ */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-1 {
  grid-template-columns: 1fr;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.5s;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.card-content {
  padding: 2rem;
}

.card-image {
  height: 256px;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card .icon-box {
  display: inline-flex;
  background: #16a34a;
  color: #fff;
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s;
}

.card:hover .icon-box {
  transform: scale(1.1);
}

.card .icon-box svg {
  width: 40px;
  height: 40px;
}

.card .icon-box-sm svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-green {
  background: #16a34a;
  color: #fff;
}

.btn-green:hover {
  background: #15803d;
}

.btn-yellow {
  background: #eab308;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-yellow:hover {
  background: #ca8a04;
}

.btn-yellow-dark {
  background: #eab308;
  color: #111;
}

.btn-yellow-dark:hover {
  background: #facc15;
}

.btn-outline-green {
  background: transparent;
  color: #16a34a;
  border: 2px solid #16a34a;
}

.btn-outline-green:hover {
  background: #16a34a;
  color: #fff;
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline-white:hover {
  background: #fff;
  color: #14532d;
}

.btn-lg {
  padding: 1.5rem 2.5rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.75rem 3rem;
  font-size: 1.25rem;
}

.btn-full {
  width: 100%;
}

.btn-rounded {
  border-radius: 9999px;
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 4rem 0;
}

.section-lg {
  padding: 5rem 0;
}

.section-green {
  background: #16a34a;
  color: #fff;
}

.section-green-dark {
  background: #14532d;
  color: #fff;
}

.section-gray {
  background: #f9fafb;
}

.section-green-light {
  background: #f0fdf4;
}

.section-gradient-green {
  background: linear-gradient(to right, #16a34a, #15803d);
  color: #fff;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title-green {
  color: #15803d;
}

.section-title-white {
  color: #fff;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #374151;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-subtitle-yellow {
  color: #fef08a;
}

.section-divider {
  width: 6rem;
  height: 4px;
  background: #facc15;
  margin: 1rem auto 0;
  border-radius: 9999px;
}

.section-divider-lg {
  width: 8rem;
}

.section-divider-left {
  margin-left: 0;
}

/* ============================================
   STATS SECTION (Why Choose Us)
   ============================================ */
.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.stat-card .stat-icon {
  color: #fde047;
  margin-bottom: 0.75rem;
}

.stat-card .stat-icon svg {
  width: 32px;
  height: 32px;
  margin: 0 auto;
}

.stat-card .stat-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fde047;
  margin-bottom: 0.5rem;
}

.stat-card .stat-desc {
  font-size: 1rem;
  font-weight: 500;
}

/* ============================================
   WHY CHOOSE US (features with icons)
   ============================================ */
.feature-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-row .feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #16a34a;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s;
}

.feature-row:hover .feature-icon {
  transform: scale(1.1);
}

.feature-row .feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-row p {
  color: #374151;
  transition: color 0.3s;
}

.feature-row:hover p {
  color: #111827;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: #fff;
  border: 1px solid #dcfce7;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.stars svg {
  width: 16px;
  height: 16px;
  color: #facc15;
  fill: #facc15;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: #16a34a;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  margin-right: 0.75rem;
}

/* ============================================
   IMAGE OVERLAY CARDS
   ============================================ */
.img-overlay-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.img-overlay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.img-overlay-card:hover img {
  transform: scale(1.1);
}

.img-overlay-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.img-overlay-card:hover .overlay {
  opacity: 1;
}

.img-overlay-card .overlay p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.img-overlay-card .overlay-always {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1rem;
  color: #fff;
}

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.accordion-item {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
  border: none;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.accordion-trigger:hover {
  color: #15803d;
}

.accordion-trigger svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.accordion-trigger.open svg {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding-bottom: 1.5rem;
  color: #4b5563;
  line-height: 1.75;
}

.accordion-content.open {
  display: block;
}

/* FAQ as cards (Chalivendrapalem style) */
.faq-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  margin-bottom: 1.5rem;
}

.faq-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.75rem;
}

.faq-card p {
  color: #374151;
  line-height: 1.75;
}

/* ============================================
   HERO BANNER (inner pages)
   ============================================ */
.page-hero {
  background: #16a34a;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero.with-bg {
  min-height: 500px;
  display: flex;
  align-items: center;
}

.page-hero.tall {
  min-height: 85vh;
  min-height: max(600px, 85vh);
}

.page-hero .bg-img {
  position: absolute;
  inset: 0;
}

.page-hero .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .bg-overlay {
  position: absolute;
  inset: 0;
}

.page-hero .bg-overlay.green-dark {
  background: linear-gradient(to right, rgba(20, 83, 45, 0.85), rgba(22, 101, 52, 0.8), rgba(20, 83, 45, 0.85));
}

.page-hero .bg-overlay.black-gradient {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.page-hero .bg-overlay.green-gradient {
  background: linear-gradient(to right, rgba(20, 83, 45, 0.9), rgba(22, 101, 52, 0.85), rgba(20, 83, 45, 0.9));
}

.page-hero .hero-z {
  position: relative;
  z-index: 10;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.page-hero .hero-desc {
  font-size: 1.25rem;
  color: #fef9c3;
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.page-hero .badge {
  display: inline-block;
  background: #eab308;
  color: #000;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CONTENT PROSE (article body text)
   ============================================ */
.prose {
  max-width: 100%;
}

.prose h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #15803d;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.prose p {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.prose ul li {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

.prose-img {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.prose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Float images (for article layout) */
.float-right-md {
  margin-bottom: 1.5rem;
}

.float-left-md {
  margin-bottom: 1.5rem;
}

/* Prose section – mobile reorder: Heading → Image → Content */
.prose-section {
  display: flex;
  flex-direction: column;
}

.prose-section>h2 {
  order: 1;
}

.prose-section>.prose-img {
  order: 2;
}

.prose-section>p,
.prose-section>ul,
.prose-section>ol {
  order: 3;
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.two-col .col {
  width: 100%;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.contact-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-card .contact-icon {
  background: #16a34a;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-card .contact-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.contact-form-wrapper {
  background: linear-gradient(to bottom right, #f0fdf4, #fefce8);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 2px solid #bbf7d0;
}

.contact-iframe-wrapper {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  border: 1px solid #dcfce7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #111827;
  color: #fff;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.footer-brand .brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand .brand-name .green {
  color: #4ade80;
}

.footer-brand .brand-name .yellow {
  color: #facc15;
}

.footer-brand p {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.site-footer h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer ul a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.site-footer ul a:hover {
  color: #fff;
}

.footer-contact p {
  color: #9ca3af;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-contact p svg {
  width: 12px;
  height: 12px;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

/* YouTube Thumbnail Cards */
.yt-thumb-card {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #000;
  aspect-ratio: 9 / 16;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yt-thumb-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.yt-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.yt-thumb-card:hover img {
  transform: scale(1.05);
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.yt-thumb-card:hover .yt-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Footer Social Icons */
.footer-social a:hover {
  opacity: 1 !important;
  transform: translateY(-2px);
}

/* ============================================
   BUYING GUIDE STEPS
   ============================================ */
.step-card {
  text-align: center;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 0.75rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-icon svg {
  width: 32px;
  height: 32px;
  color: #16a34a;
}

/* Roadmap steps (villas) */
.roadmap-step {
  display: flex;
  gap: 1rem;
}

.roadmap-step .step-num {
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(250, 204, 21, 0.5);
}

.roadmap-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.roadmap-step p {
  color: #dcfce7;
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ============================================
   INVESTMENT CARDS (apartments)
   ============================================ */
.invest-card {
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.invest-card .invest-icon {
  width: 40px;
  height: 40px;
  color: #16a34a;
  margin-right: 1rem;
  flex-shrink: 0;
}

.invest-card .invest-icon svg {
  width: 40px;
  height: 40px;
}

/* ============================================
   CAROUSEL (mobile image slider)
   ============================================ */
.carousel-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
}

.carousel-prev {
  left: 0.5rem;
}

.carousel-next {
  right: 0.5rem;
}

/* ============================================
   CONFIG CARDS (2BHK/3BHK)
   ============================================ */
.config-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.config-card .config-image {
  height: 256px;
  position: relative;
}

.config-card .config-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.config-card .config-image .config-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.config-card .config-image .config-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.config-card .config-image .config-overlay p {
  color: #fef9c3;
}

.config-card .config-body {
  padding: 2rem;
}

.config-card .config-body .check-list {
  margin-bottom: 2rem;
}

.config-card .config-body .check-item {
  display: flex;
  align-items: center;
  color: #374151;
  margin-bottom: 0.75rem;
}

.config-card .config-body .check-item svg {
  width: 20px;
  height: 20px;
  color: #16a34a;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* ============================================
   LOCATION CARDS (apartments)
   ============================================ */
.location-card {
  border: 1px solid #f3f4f6;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.location-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.location-card .loc-image {
  height: 192px;
  position: relative;
}

.location-card .loc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card .loc-body {
  padding: 1.5rem;
}

.location-card .loc-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 0.75rem;
}

.location-card .loc-body p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.location-check {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.location-check svg {
  width: 16px;
  height: 16px;
  color: #22c55e;
  margin-right: 0.5rem;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section.green-bg {
  background: #16a34a;
  color: #fff;
}

.cta-section.green-dark-bg {
  background: #14532d;
  color: #fff;
}

.cta-section.gradient-green-bg {
  background: linear-gradient(to right, #16a34a, #15803d);
  color: #fff;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-subtitle {
  color: #fef9c3;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
}

.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay-dark {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom right, rgba(20, 83, 45, 0.95), rgba(22, 101, 52, 0.95), rgba(20, 83, 45, 0.95));
}

.cta-z {
  position: relative;
  z-index: 2;
}

/* Related image with rotation background */
.tilted-bg {
  position: relative;
  height: 400px;
}

.tilted-bg .bg-tilt {
  position: absolute;
  inset: -1rem;
  background: #fef9c3;
  border-radius: 1.5rem;
  transform: rotate(3deg);
}

.tilted-bg img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s;
}

.tilted-bg:hover img {
  transform: scale(1.05);
}

/* ============================================
   STICKY IMAGE (villas intro)
   ============================================ */
.sticky-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s;
}

.sticky-image:hover {
  transform: scale(1.02);
}

.sticky-image .img-container {
  position: relative;
  height: 300px;
}

.sticky-image .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-image .img-overlay-text {
  display: none;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: #fff;
}

.sticky-image .mobile-text {
  display: block;
  padding: 1.5rem;
}

/* Features with check icons */
.check-list-lg .check-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.check-list-lg .check-item svg {
  width: 24px;
  height: 24px;
  color: #16a34a;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .two-col {
    flex-direction: row;
  }

  .two-col .col {
    width: 50%;
  }

  .two-col .col-1-3 {
    width: 33.333%;
  }

  .two-col .col-2-3 {
    width: 66.666%;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .float-right-md {
    float: right;
    margin-left: 2rem;
    width: 50%;
  }

  .float-left-md {
    float: left;
    margin-right: 2rem;
    width: 50%;
  }

  /* Desktop: revert to block layout for float support */
  .prose-section {
    display: block;
  }

  .hide-mobile {
    display: block;
  }

  .show-mobile-only {
    display: none;
  }

  .sticky-image .img-container {
    height: 600px;
  }

  .sticky-image .img-overlay-text {
    display: block;
  }

  .sticky-image .mobile-text {
    display: none;
  }

  .page-hero h1 {
    font-size: 3.75rem;
  }

  .md-sticky {
    position: sticky;
    top: 6rem;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .grid-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-content h1 {
    font-size: 3.75rem;
  }
}

/* Mobile specific */
@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }

  .show-mobile-only {
    display: block;
  }

  .hero-section {
    height: 500px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .subtitle {
    font-size: 1.25rem;
  }

  .hero-content .description {
    font-size: 1rem;
  }

  .hero-cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .hero-float {
    display: none;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero.tall {
    min-height: 400px;
  }

  .page-hero .hero-desc {
    font-size: 1rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .tilted-bg {
    height: 250px;
  }

  .prose h2 {
    font-size: 1.5rem;
  }

  .prose p,
  .prose ul li {
    font-size: 1rem;
  }
}

/* Nav responsive */
@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* ============================================
   SVG ICON SIZES (for inline SVGs)
   ============================================ */
.icon-xs {
  width: 12px;
  height: 12px;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-md {
  width: 20px;
  height: 20px;
}

.icon-lg {
  width: 24px;
  height: 24px;
}

.icon-xl {
  width: 32px;
  height: 32px;
}

.icon-2xl {
  width: 40px;
  height: 40px;
}

.icon-3xl {
  width: 48px;
  height: 48px;
}

/* ============================================
   MISC
   ============================================ */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-3xl {
  max-width: 48rem;
}

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.06rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.5;
  transition: color 0.2s;
}

.accordion-trigger:hover {
  color: #16a34a;
}

.accordion-trigger svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s;
  color: #6b7280;
}

.accordion-trigger.open svg {
  transform: rotate(180deg);
  color: #16a34a;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.accordion-content.open {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.accordion-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #4b5563;
}

.accordion-content a {
  color: #16a34a;
  font-weight: 500;
  text-decoration: underline;
}

/* ---- Prose Image Floats ---- */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.prose-img {
  overflow: hidden;
  border-radius: 1rem;
}

.prose-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .float-right-md {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
    width: 45%;
  }

  .float-left-md {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
    width: 45%;
  }
}

@media (max-width: 767px) {

  .float-right-md,
  .float-left-md {
    width: 100%;
    margin: 0 0 1.5rem 0;
    max-height: 280px;
  }
}

/* ============================================
   PAGESPEED: Rendering Performance
   ============================================ */

/* Hero — prevent layout shifts */
.page-hero {
  contain: layout style;
}

/* Hardware-accelerate floating/animated image wrappers */
.float-right-md,
.float-left-md {
  backface-visibility: hidden;
}

/* Below-fold sections — skip rendering until near viewport */
.section-lg,
.section-green-light,
.cta-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}
/* AEO Custom Utilities */
.bg-green-50 { background-color: #f0fdf4; }
.border-green-200 { border-color: #bbf7d0; }
.text-green-800 { color: #166534; }
.text-green-900 { color: #14532d; }
.rounded-xl { border-radius: 0.75rem; }
.p-6 { padding: 1.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.border { border-width: 1px; border-style: solid; }
.overflow-x-auto { overflow-x: auto; }
.w-full { width: 100%; }
.border-collapse { border-collapse: collapse; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.font-bold { font-weight: 700; }
