/* ============================================
   AHUVIM LLC — Rental Management Services
   Color Palette: #006039, #B85C7A, #FFBF00, #FFFDD0
   ============================================ */

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

:root {
  --green: #006039;
  --green-dark: #004d2e;
  --green-light: #007a49;
  --fuchsia: #B85C7A;
  --fuchsia-light: #d4789a;
  --fuchsia-dark: #9a4a64;
  --gold: #FFBF00;
  --gold-light: #ffd34d;
  --cream: #FFFDD0;
  --cream-dark: #f5f0b8;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-100: #f8f8f6;
  --gray-200: #e8e8e4;
  --gray-300: #d0d0cc;
  --gray-600: #6b6b68;
  --gray-700: #4a4a48;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--green);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 56px;
  transition: var(--transition);
}

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

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

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius-sm);
  position: relative;
  letter-spacing: 0.02em;
}

.navbar.scrolled .nav-links a {
  color: var(--gray-700);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--green);
  background: var(--cream);
}

.nav-links a.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-weight: 600;
}

.nav-links a.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--green);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-video-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 96, 57, 0.85) 0%,
    rgba(0, 77, 46, 0.75) 40%,
    rgba(184, 92, 122, 0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 191, 0, 0.15);
  border: 1px solid rgba(255, 191, 0, 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 span {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 191, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fuchsia);
  margin-bottom: 12px;
}

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

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
}

.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--gray-100);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 500px; 
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg); 
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--gray-700);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--gray-200);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--fuchsia);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cream), rgba(255, 191, 0, 0.15));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--green);
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ============================================
   MISSION & VISION
   ============================================ */
.mission-vision {
  background: var(--green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.mission-vision::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 191, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.mission-vision .section-label {
  color: var(--gold);
}

.mission-vision .section-header h2 {
  color: var(--white);
}

.mission-vision .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.mv-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
}

.mv-video {
  width: 100%;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.mv-card-content {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mv-card h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 0;
}

.mv-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
  background: var(--gray-100);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--cream-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--fuchsia));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ============================================
   VISION IN MOTION
   ============================================ */
.vision-motion {
  background: var(--cream);
}

.vision-motion .section-header p {
  color: var(--gray-700);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--black);
  position: relative;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: var(--transition);
}

.video-card:hover video {
  opacity: 0.9;
}

.video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
}

.contact-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
}

.contact-motto {
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: var(--radius-md);
  color: var(--white);
  text-align: center;
}

.contact-motto p {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
}

.contact-form {
  background: var(--gray-100);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  transition: var(--transition);
  color: var(--black);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 96, 57, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  background: var(--green);
  color: var(--white);
}

.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 96, 57, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 30px;
}

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

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

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

.footer ul li a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: var(--transition);
}

.footer ul li a:hover {
  opacity: 1;
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================
   EMAIL LINK HOVER EFFECTS
   ============================================ */
.contact-item a,
.footer-contact-item a {
  transition: var(--transition);
}

.contact-item a:hover,
.footer-contact-item a:hover {
  color: var(--gold) !important;
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px 40px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    align-items: flex-start;
    gap: 4px;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--gray-700) !important;
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: var(--cream);
    color: var(--green) !important;
  }

  .nav-links a.nav-cta {
    margin-top: 16px;
    text-align: center;
  }

  .nav-toggle { display: flex; }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }

  .mobile-overlay.show { display: block; }

  .hero h1 { font-size: 2.4rem; }

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

  .about-image { order: -1; }
  .about-image::after { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }

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

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

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .why-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; text-align: center; }
}

/* ============================================
   SECTION BACKGROUND IMAGE SYSTEM
   ============================================ */

/* Position context for sections with bg images */
.about,
.services,
.mission-vision,
.why-us,
.testimonials,
.vision-motion {
  position: relative;
  overflow: hidden;
}

/* Full-bleed background image layer */
.section-bg-image,
.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

/* Overlay layers - each section tuned for readability */
.section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* About: dark green tint for text contrast */
.about-overlay,
.about-ov {
  background: linear-gradient(
    135deg,
    rgba(0, 64, 46, 0.88) 0%,
    rgba(0, 96, 57, 0.80) 50%,
    rgba(0, 64, 46, 0.88) 100%
  );
}

/* Services: cream/white overlay so cards pop */
.services-overlay,
.services-ov {
  background: linear-gradient(
    180deg,
    rgba(255, 253, 208, 0.93) 0%,
    rgba(255, 253, 208, 0.90) 100%
  );
}

/* Mission & Vision: dark green overlay (matches original green bg feel) */
.mv-overlay,
.mission-ov {
  background: linear-gradient(
    135deg,
    rgba(0, 50, 35, 0.91) 0%,
    rgba(0, 80, 48, 0.88) 100%
  );
}

/* Why Us: soft warm white overlay */
.whyus-overlay,
.whyus-ov {
  background: linear-gradient(
    180deg,
    rgba(248, 248, 246, 0.90) 0%,
    rgba(248, 248, 246, 0.88) 100%
  );
}

/* Testimonials: clean white for legibility */
.testimonials-overlay,
.testimonials-ov {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.91) 0%,
    rgba(255, 253, 208, 0.88) 100%
  );
}

/* Vision in Motion: dark cinematic overlay */
.vision-overlay,
.vision-ov {
  background: linear-gradient(
    180deg,
    rgba(10, 30, 20, 0.82) 0%,
    rgba(0, 60, 40, 0.78) 100%
  );
}

/* Override text colors where bg is dark */
.about .section-label,
.about .about-content h2,
.mission-vision .section-label,
.vision-motion .section-label {
  color: var(--gold);
}

.about .about-content h2 {
  color: var(--white);
}

.about .about-content p {
  color: rgba(255, 255, 255, 0.88);
}

.about .about-stats {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.about .stat-item p {
  color: rgba(255, 255, 255, 0.75);
}

/* Vision in Motion: make headings readable on dark overlay */
.vision-motion .section-header h2 {
  color: var(--white);
}
.vision-motion .section-header p {
  color: rgba(255, 255, 255, 0.8);
}
.vision-motion .section-label {
  color: var(--gold);
}

/* Why Us: headings stay green on light overlay */
.why-us.section-header h2,
.why-card h3 {
  color: var(--green);
}

/* ============================================
   VIDEO GRID — 4 VIDEOS (2x2 on desktop)
   ============================================ */
.video-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1100px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility: position relative with z-index for content above bg layers */
/* Contact: light warm tint for readability */
.contact-ov {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.87) 0%,
    rgba(248, 245, 235, 0.84) 100%
  );
}

.pos-rel { position: relative; z-index: 2; }
