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

/* CSS Variables / Design System */
:root {
  /* Colors */
  --primary: hsl(165, 45%, 28%);
  --primary-light: hsl(165, 35%, 40%);
  --primary-foreground: hsl(45, 30%, 98%);
  --forest-green: hsl(160, 40%, 22%);
  --turmeric: hsl(38, 70%, 50%);
  --copper: hsl(25, 60%, 45%);
  --background: hsl(45, 30%, 97%);
  --foreground: hsl(200, 50%, 15%);
  --secondary: hsl(42, 35%, 92%);
  --muted: hsl(200, 25%, 40%);
  --border: hsl(45, 20%, 85%);
  --card: hsl(45, 25%, 95%);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -4px rgba(46, 95, 87, 0.15);
  --shadow-card: 0 8px 30px -8px rgba(23, 51, 61, 0.1);
  --shadow-hover: 0 12px 40px -8px rgba(46, 95, 87, 0.2);
  
  /* Radius */
  --radius: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top:78px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Section Padding */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  box-shadow: var(--shadow-hover);
}

.btn-accent {
  background: linear-gradient(135deg, var(--turmeric), var(--copper));
  color: var(--primary-foreground);
}

.btn-accent:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.btn-outline-light {
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-enquiry {
  background-color: var(--turmeric);
  color: var(--primary-foreground);
  width: 100%;
}

.btn-enquiry:hover {
  background-color: var(--copper);
  box-shadow: var(--shadow-soft);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* =====================
   HEADER
   ===================== */
.header{
  position: fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;

  background:#ffffff;
  box-shadow:0 4px 18px rgba(0,0,0,.08);

  padding:0;   /* IMPORTANT */
}

/* container ko height do */
.header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;

  height:78px;      /* navbar height fix */
}

/* logo normal rakho */
.logo img{
  height:55px;
  width:auto;
  display:block;
}

/* scroll par same look */
.header.scrolled{
  background:#ffffff;
  box-shadow:0 6px 22px rgba(0,0,0,.12);
  padding:0;
}


.logo img {
  height: 55px;
  width: auto;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
  
}

.nav-link {
  font-weight: 500;
  color: var(--foreground);
  opacity: 0.8;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
  /* color: var(--primary); */
  opacity: 1;
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(250, 249, 246, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}

.mobile-menu.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.mobile-menu .nav-link {
  display: block;
  padding: 0.75rem 0;
}

/* =====================
   HERO SLIDER
   ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(31, 61, 55, 0.9), rgba(31, 61, 55, 0.7), transparent);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 42rem;
  color: var(--primary-foreground);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-title span {
  display: block;
  color: var(--turmeric);
}

.hero-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: none;
  color: var(--primary-foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-nav.prev {
  left: 1rem;
}

.hero-nav.next {
  right: 1rem;
}

@media (min-width: 768px) {
  .hero-nav.prev {
    left: 2rem;
  }
  .hero-nav.next {
    right: 2rem;
  }
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--turmeric);
  width: 2rem;
  border-radius: var(--radius-full);
}

/* =====================
   FEATURES SECTION
   ===================== */
.features {
  background-color: var(--secondary);
}

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

.section-label {
  color: var(--turmeric);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.section-title {
  font-size: 2rem;
  color: var(--foreground);
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  color: var(--muted);
  max-width: 42rem;
  margin: 1rem auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius);
  background: rgba(46, 95, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  color: var(--primary-foreground);
}

.feature-title {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* =====================
   PRODUCTS
   ===================== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.product-content {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* =====================
   CTA SECTION
   ===================== */
.cta {
  background-color: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(201, 157, 66, 0.2);
  border-radius: 50%;
  filter: blur(60px);
  transform: translate(-50%, -50%);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(31, 61, 55, 0.3);
  border-radius: 50%;
  filter: blur(60px);
  transform: translate(50%, 50%);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background-color: var(--forest-green);
  color: var(--primary-foreground);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-logo {
  height: 60px;
  /* filter: brightness(0) invert(1); */
}

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

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-link svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--turmeric);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact span,
.footer-contact a {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  opacity: 0.6;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom-links a {
  opacity: 0.6;
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* =====================
   PAGE HERO (INNER PAGES)
   ===================== */
.page-hero {
  padding: 8rem 0 5rem;
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(46, 95, 87, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
}

.page-hero.centered .page-hero-content {
  margin: 0 auto;
  text-align: center;
}

.page-hero-title {
  font-size: 2.5rem;
  color: var(--foreground);
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .page-hero-title {
    font-size: 4rem;
  }
}

.page-hero-title span {
  color: var(--primary);
}

.page-hero-description {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* =====================
   ABOUT PAGE
   ===================== */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  display: none;
}

@media (min-width: 768px) {
  .about-badge {
    display: block;
  }
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.about-badge-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.about-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: rgba(46, 95, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.about-feature-title {
  font-weight: 600;
  color: var(--foreground);
}

.about-feature-text {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Approach Cards */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.approach-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.approach-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-icon.green {
  background: linear-gradient(135deg, var(--primary), var(--forest-green));
}

.approach-icon.gold {
  background: linear-gradient(135deg, var(--turmeric), var(--copper));
}

.approach-icon.sage {
  background: linear-gradient(135deg, hsl(120, 15%, 65%), var(--primary));
}

.approach-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

.approach-title {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.approach-description {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Mission & Vision */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.mission-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--primary-foreground);
}

.mission-card.primary {
  background: var(--primary);
}

.mission-card.gold {
  background: linear-gradient(135deg, var(--turmeric), var(--copper));
}

.mission-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.mission-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mission-description {
  opacity: 0.9;
  line-height: 1.7;
}

/* =====================
   PRODUCTS PAGE
   ===================== */
.quality-section {
  background: var(--primary);
  padding: 5rem 0;
}

.quality-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  color: var(--primary-foreground);
}

.quality-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .quality-title {
    font-size: 2.5rem;
  }
}

.quality-description {
  opacity: 0.8;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.quality-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .quality-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quality-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--turmeric);
}

.quality-stat-text {
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .contact-form-card {
    padding: 2.5rem;
  }
}

.contact-form-title {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 95, 87, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: none;
}

/* Contact Info */
.contact-info-title {
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--secondary);
  border-radius: var(--radius);
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: rgba(46, 95, 87, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--primary);
}

.contact-info-label {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-info-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

/* WhatsApp CTA */
.whatsapp-cta {
  background: linear-gradient(135deg, var(--primary), var(--forest-green));
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--primary-foreground);
  margin-top: 2rem;
}

.whatsapp-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.whatsapp-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.whatsapp-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.whatsapp-subtitle {
  font-size: 0.875rem;
  opacity: 0.8;
}

.whatsapp-description {
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* =====================
   ANIMATIONS
   ===================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

/* =====================
   UTILITIES
   ===================== */
.text-center {
  text-align: center;
}

.mt-12 {
  margin-top: 3rem;
}


/* map css */
.map-container{
  margin-top: 20px;
  width:100%;
  height:350px;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.map-container iframe{
  width:100%;
  height:100%;
  border:0;
}
[data-aos]{
  transition-duration: 1s !important;
}


.whatsapp-float{
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: all 0.3s ease;
}

.whatsapp-float:hover{
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

.opportunity-float{
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 90px;          
  right: 20px;
  background: #dc3545;   /* PDF red */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: all 0.3s ease;
}

.opportunity-float:hover{
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

.top-bar {
          background: #222;
          color: #fff;
          font-size: 14px;
          padding: 6px 0;
      }

      .top-content {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 20px;
          flex-wrap: wrap;
          justify-content: space-around;
      }

          .top-content a {
              color: #fff;
              margin: 0 6px;
              text-decoration: none;
              font-size: 14px;
          }

              .top-content a:hover {
                  color: #0d6efd;
              }

@media (max-width: 576px) {

    .top-content {
        flex-direction: column;   /* vertical stack */
        gap: 0px;
        justify-content: center;
    }
}

