
/* =========================
   GLOBAL THEME VARIABLES
========================= */
:root {
  --brand-green: #95c11f;
  --white: #ffffff;
  --light-grey: #f4f6f8;
  --border-grey: #e5e7eb;
  --text-dark: #1f2933;
  --text-muted: #6b7280;
}

/* =========================
   BASE STYLES
========================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  color: var(--text-dark);
}

/* =========================
   WELCOME / SPLASH SCREEN
========================= */
#welcome-screen {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: screenFadeOut 0.8s ease forwards;
  animation-delay: 3s;
}

.welcome-content {
  text-align: center;
  animation: contentFadeIn 1.2s ease forwards;
}

.welcome-logo {
  width: 200px;
  margin-bottom: 20px;
  animation: logoFloat 2.5s ease-in-out infinite;
}

#welcome-screen h2 {
  color: var(--brand-green);
  font-size: 2.2rem;
}

#welcome-screen p {
  color: var(--text-muted);
}

@keyframes screenFadeOut {
  to { opacity: 0; visibility: hidden; }
}

@keyframes contentFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =========================
   HEADER / NAVBAR
========================= */


.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-grey);
  backdrop-filter: blur(8px);
  z-index: 999;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo .sitename {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand-green);
}


.navmenu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navmenu ul li {
  margin: 0 16px;
}

.navmenu ul li a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.navmenu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: width 0.3s ease;
}

.navmenu ul li a:hover::after,
.navmenu ul li a.active::after {
  width: 100%;
}

.btn-getstarted {
  background: var(--brand-green);
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-getstarted:hover {
  background: #7fa51a;
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-nav-toggle { display: block; }

  .navmenu ul {
    position: absolute;
    top: 72px;
    right: 0;
    background: var(--white);
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }

  .navmenu.active ul {
    max-height: 400px;
    opacity: 1;
  }

  .navmenu ul li {
    margin: 15px 0;
    text-align: center;
  }

  .btn-getstarted { display: none; }
}

/* =========================
   HERO SECTION
========================= */
.hero {
  padding: 140px 20px 80px;
  text-align: center;
  background: var(--light-grey);
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.hero .btn {
  margin-top: 20px;
}

/* =========================
   HERO SLIDER
========================= */






.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
  background: var(--light-grey);
  padding-top: 72px; /* header offset */
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* Optional: dots navigation */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--border-grey);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: var(--brand-green);
}





/* ABOUT SECTION (L&Tâ€‘style) */

.about-section {
  background: var(--white);
  padding: 80px 20px;
}

.about-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.about-details h2 {
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.about-details p {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.highlight {
  background: var(--light-grey);
  border-radius: 12px;
  padding: 25px;
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.highlight:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.highlight .icon {
  font-size: 2.2rem;
  color: var(--brand-green);
  margin-bottom: 12px;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.stat h3 {
  font-size: 2.4rem;
  color: var(--brand-green);
  margin-bottom: 5px;
}

.stat p {
  font-size: 1rem;
  color: var(--text-dark);
}
.counter {
  font-size: 2.4rem;
  color: var(--brand-green);
  font-weight: 700;
}
.areas-section {
  padding: 80px 20px;
  background: var(--light-grey);
  text-align: center;
}

.areas-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.area-card {
  position: relative;
  flex: 1 1 250px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.area-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s;
  padding: 15px;
  text-align: center;
}

.area-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.overlay p {
  font-size: 1rem;
}

/* ===== COMPANIES LIST ===== */
.companies {
  padding: 80px 20px;
  background: var(--white);
}

.companies-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  max-width: 900px;
}

.companies-list li {
  border-bottom: 1px solid var(--border-grey);
}

.companies-list a {
  display: grid;
  grid-template-columns: 420px 1fr 24px; /* name | desc | arrow */
 

  align-items: center;
  padding: 22px 10px;
  text-decoration: none;
  color: var(--text-dark);
  transition: background 0.3s ease, padding-left 0.3s ease;
}

/* Arrow indicator (FIXED) */
.companies-list a::after {
  content: "→";               /* ✅ correct arrow */
  font-size: 1.3rem;
  color: #95c11f;              /* brand color */
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
}

.companies-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}




@media (max-width: 600px) {
  .companies-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .companies-list a::after {
    display: none;
  }
}



/* Hover row */
.companies-list a:hover {
  background: var(--light-grey);
  padding-left: 18px;
}

/* Company name */
.company-name {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Description */
.company-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Arrow indicator */
.companies-list a::after {
   content: "→";    
  font-size: 1.3rem;
  color: #95c11f;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
}

.companies-list a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile */
@media (max-width: 600px) {
  .companies-list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}


/* =========================
   SECTIONS & CARDS
========================= */
section {
  padding: 60px 20px;
}

section > * {
  max-width: 1200px;
  margin: auto;
}

.card, .company-card {
  background: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.oud-story-section {
  background: var(--white);
  padding: 80px 20px;
}

.oud-flex, .agro-oud-flex {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.oud-text, .agro-oud-content {
  flex: 1 1 500px;
}

.oud-image, .agro-oud-image {
  flex: 1 1 400px;
}

.oud-image img, .agro-oud-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.section-tag {
  color: var(--brand-green);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--text-dark);
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 60px;
}

.process-card {
  background: var(--light-grey);
  border-radius: 12px;
  padding: 25px;
  flex: 1 1 220px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.process-card span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-green);
  display: block;
  margin-bottom: 12px;
}

.process-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: var(--text-dark);
}

/* Oud Points List */
.oud-points {
  margin: 20px 0;
  padding-left: 20px;
}

.oud-points li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-dark);
}


.icon-small {
  width: 20px;
  height: 20px;
  object-fit: contain;
}


.oud-uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.use-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.use-card:hover {
  transform: translateY(-6px);
}

.use-card img {
  width: 100%;
  max-width: 280px;
  height: 200px;        /* ðŸ‘ˆ consistent height */
  object-fit: cover;   /* ðŸ‘ˆ no distortion */
  border-radius: 10px;
  margin-bottom: 15px;
}





/* Oud Uses Grid */
.oud-uses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.use-card {
  flex: 1 1 250px;
  background: var(--light-grey);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.use-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.use-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.use-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.use-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
  .oud-flex, .agro-oud-flex {
    flex-direction: column-reverse;
    text-align: center;
  }

  .oud-image, .agro-oud-image, .oud-text, .agro-oud-content {
    flex: 1 1 100%;
  }

  .process-steps, .oud-uses-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* Timeline Container */
.sourcing-timeline {
  padding: 60px 20px;
  background: var(--light-grey);
  border-radius: 12px;
  margin-bottom: 60px;
}

.timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 4px;
  height: 100%;
  background: var(--brand-green);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  gap: 20px;
}

.timeline-icon {
  background: var(--brand-green);
  color: #fff;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.timeline-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  flex: 1;
}

.timeline-content h3 {
  margin-bottom: 8px;
  color: var(--text-dark);
  font-size: 1.2rem;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Hover Elevation */
.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline {
    padding-left: 0;
  }
  .timeline::before {
    left: 10px;
  }
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline-icon {
    margin-bottom: 10px;
  }
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  background: var(--brand-green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #7fa51a;
  transform: translateY(-2px);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===== Contact Info & List ===== */
.contact-info ul,
.contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center; /* icons align with text */
  font-size: 15px;
  line-height: 1.5;
}

.contact-list li i {
  color: #95c11f;       /* theme green */
  margin-right: 10px;
  min-width: 20px;       /* consistent icon spacing */
  text-align: center;
}

.contact-list li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-list li a:hover {
  color: #95c11f;
  text-decoration: underline;
}


.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}



/* ===== Contact Form Styling ===== */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Form Inputs */
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-form button.btn-submit {
  background: #95c11f;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.contact-form button.btn-submit:hover {
  background: #7fa817;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr; /* stack form and info */
  }
}




/* =========================
   FOOTER
========================= */
.footer {
  background: var(--light-grey);
  color: var(--text-muted);
  padding: 30px 20px;
  text-align: center;
}
/* =========================
   FOOTER
========================= */

.site-footer {
  background: var(--light-grey);
  color: var(--text-dark);
  font-size: 0.95rem;
}

.footer-top {
  padding: 60px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h3.footer-logo {
  color: var(--brand-green);
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.footer-col p {
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.footer-col ul li a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--brand-green);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border-grey);
  text-align: center;
  padding: 15px 20px;
  background: #ffffff;
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }/* Footer Social Icons */
.footer-contact .social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.footer-contact .social-icons a {
  width: 36px;
  height: 36px;
  border: 2px solid #95c11f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #95c11f;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.footer-contact .social-icons a:hover {
  background: #95c11f;
  color: #fff;
  transform: translateY(-4px);
}

/* Mobile Center */
@media (max-width: 991px) {
  .footer-contact .social-icons {
    justify-content: center;
  }
}


  .footer-links h4::after,
  .footer-contact h4::after {
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons a {
    margin-right: 12px;
  }
}
.footer-map {
  margin-top: 8px;
  width: 100%;
  height: 140px;   /* ultra-minimal */
  border-radius: 5px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%); /* subtle, professional */
}

@media (max-width: 768px) {
  .footer-map {
    height: 100px;
  }
}

.footer-map-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: #95c11f;
  text-decoration: none;
  font-weight: 500;
}

.footer-map-link:hover {
  text-decoration: underline;
}
.footer-map-static {
  margin-top: 8px;
  width: 100%;
  height: 100px;   /* very compact */
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}



/* ===== SITE FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #e3e3e3, #d6d6d6);
  color: #333;
  padding: 60px 0 0;
  font-family: 'Poppins', sans-serif;
}

/* Footer Grid */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Footer Columns (NO cards) */
.footer-grid > div {
  padding: 10px 0;
  flex: 1;
  min-width: 220px;
}

/* Logo Section */
.footer-logo img {
  width: 150px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Headings with Theme Color */
.footer-links h4,
.footer-contact h4 {
  color: #95c11f;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

/* Theme underline */
.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #95c11f;
  margin-top: 6px;
}

/* Footer Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links ul li a:hover {
  color: #95c11f;
  padding-left: 6px;
}

/* Footer Social Icons */
.footer-contact .social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.footer-contact .social-icons a {
  width: 36px;
  height: 36px;
  border: 2px solid #95c11f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #95c11f;
  font-size: 16px;
  text-decoration: none; /* <-- removes underline */
  transition: all 0.3s ease;
}

/* Hover Effect */
.footer-contact .social-icons a:hover {
  background: #95c11f;
  color: #fff;
  transform: translateY(-4px);
}

/* Mobile Center */
@media (max-width: 991px) {
  .footer-contact .social-icons {
    justify-content: center;
  }
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 40px;
  background: #cfcfcf;
  text-align: center;
  padding: 15px 10px;
  border-top: 2px solid #95c11f;
  font-size: 14px;
  color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }/* Footer Social Icons */
.footer-contact .social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.footer-contact .social-icons a {
  width: 36px;
  height: 36px;
  border: 2px solid #95c11f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #95c11f;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.footer-contact .social-icons a:hover {
  background: #95c11f;
  color: #fff;
  transform: translateY(-4px);
}

/* Mobile Center */
@media (max-width: 991px) {
  .footer-contact .social-icons {
    justify-content: center;
  }
}


  .footer-links h4::after,
  .footer-contact h4::after {
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons a {
    margin-right: 12px;
  }
}
.footer-map {
  margin-top: 8px;
  width: 100%;
  height: 130px;   /* ultra-minimal */
  border-radius: 5px;
  overflow: hidden;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%); /* subtle, professional */
}

@media (max-width: 768px) {
  .footer-map {
    height: 100px;
  }
}

.footer-map-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: #95c11f;
  text-decoration: none;
  font-weight: 500;
}

.footer-map-link:hover {
  text-decoration: underline;
}
.footer-map-static {
  margin-top: 8px;
  width: 100%;
  height: 100px;   /* very compact */
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
