/* ============================
   FONT IMPORTS & BASE
============================ */
body {
  font-family: 'Spartan', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Spartan', sans-serif;
}
html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: #ffffff;
  color: #222;
}
body { line-height: 1.5; padding-top: 85px; }
img { max-width: 100%; display: block; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}
.skip-link:focus { left: 10px; }

/* Typography */
h1 { font-size: 2.5rem; line-height: 1.2; color: #222; }
h2 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 10px; color: #222; }
h3 { font-size: 1.05rem; color: #222; }
h4 { font-size: 20px; color: #222; }
h6 { font-weight: 700; font-size: 12px; }
p  { font-size: 16px; color: #465b52; }
.section-p1 { padding: 40px 80px; }
.section-m1 { margin: 40px 0; }
.section-intro { margin: 10px 0 20px; }
.section-p1, .section-m1 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Logo */
.logo-wrapper { position: absolute; top: 10px; left: 10px; }
.logo { width: 160px; height: auto; z-index: 1000; }
@media (max-width: 600px) {
  .logo { width: 120px; height: auto; }
}

/* Header fixed at top */
#header {
  width: 100%;
  background: #E3E6F3;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

/* Navbar */
#navbar {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin-left: auto;
  padding: 0;
}
#navbar li { position: relative; }
#navbar li a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
}
#navbar li a:hover,
#navbar li a:focus {
  color: #fff;
  background: #088178;
  border-radius: 6px;
}
#navbar li a.active {
  color: #fff;                /* accessible contrast */
  background-color: #088178;  /* teal background */
  border-radius: 6px;
  font-weight: 700;
}
#navbar li a.active::after,
#navbar li a:hover::after,
#navbar li a:focus::after {
  content: none;              /* remove underline bar */
}

html { scroll-behavior: smooth; }

/* Mobile menu toggle */
#menu-toggle { display: none; }
.menu-icon {
  display: none;
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}

/* Mobile styles */
@media (max-width: 768px) {
  .menu-icon { display: block; }
  #navbar {
    display: none;
    flex-direction: column;
    background: #E3E6F3;
    position: absolute;
    top: 100%; right: 0;
    width: 220px;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  #menu-toggle:checked ~ #navbar { display: flex; }
}

/* Call button */
.call-link {
  background-color: #088178;
  color: #fff !important;
  border-radius: 999px;
  padding: 6px 12px !important;
  font-size: 13px !important;
  box-shadow: 0 3px 8px rgba(8,129,120,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}
.call-link:hover {
  background-color: #06655e;
  transform: translateY(-2px);
}
.call-link i { font-size: 12px; }

/* Call strip */
.call-strip {
  position: relative;
  margin-top: 0;
  margin-bottom: 3px;
  width: 100%;
  background-color: #ffcc00;
  color: #000;
  text-align: center;
  padding: 6px 8px;   /* slim one-liner */
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  z-index: 1;
  box-shadow: inset 0 -2px 6px rgba(0,0,0,0.08);
}
.call-strip a {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}
.call-strip a:hover { color: #088178; }


/* Hero Banner (header) */
.about-hero {
  background-color: #e3e6f3; /* soft neutral banner */
  color: #1a1a1a;
  text-align: center;
  padding: 30px 20px;        /* reduced vertical padding */
}

.about-hero h1 {
  font-size: 2.2rem;         /* slightly smaller heading */
  margin-bottom: 10px;       /* tighter spacing */
  font-weight: 700;
  color: #088178;
}

.about-hero p {
  font-size: 1rem;           /* smaller tagline */
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  color: #465b52;
}

/* About Section (compact spacing) */
#about {
  padding: 30px 20px;       /* reduced from 60px */
  background-color: #fff;
  text-align: center;
}

#about h2 {
  font-size: 2rem;
  margin: 20px 0 15px;      /* reduced top/bottom margins */
  color: #1a1a1a;
  font-weight: 600;
}

#about .about-intro {
  max-width: 850px;
  margin: 0 auto 20px;      /* reduced bottom margin */
  font-size: 1rem;
  line-height: 1.7;
  color: #465b52;
}

/* Mission List */
.about-mission {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 650px;
  text-align: left;
}
.about-mission li {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #333;
  background: #f5f5f5;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}
.about-mission li:hover {
  background: #e3e6f3;
}

/* Why Choose Us Grid (3 up, 3 down) */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}
.about-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.about-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #088178;
  font-weight: 600;
}
.about-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Story Section (centered text + right image) */
.about-story {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;   /* center the whole block */
  margin: 60px auto;
  max-width: 1200px;
}

.story-text {
  flex: 1 1 55%;
  max-width: 700px;
  text-align: center;        /* center all text */
}

.story-text h2 {
  font-size: 2rem;           /* bigger heading */
  margin-bottom: 18px;
  color: #088178;
}

.story-text p {
  font-size: 1.2rem;         /* bigger paragraph */
  line-height: 1.8;
  color: #465b52;
}

.founder-caption {
  margin-top: 28px;
  font-size: 1.5rem;         /* larger founder name */
  color: #088178;
  font-weight: 700;
  text-align: center;        /* centered name */
}

.story-image {
  flex: 1 1 35%;
  text-align: right;         /* image sits on the right */
}

.owner-photo {
  width: 100%;
  max-width: 360px;          /* balanced portrait size */
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border: 4px solid #e3e6f3;
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .about-story {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .story-image {
    text-align: center;      /* center image on mobile */
  }
}

/* Contact Highlight */
.about-contact {
  background: #e3e6f3;
  color: #1a1a1a;
  padding: 25px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 25px;
  font-size: 1rem;
  line-height: 1.7;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.about-contact a {
  color: #088178;
  font-weight: bold;
  text-decoration: none;
}
.about-contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #E3E6F3;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #465b52;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-story {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================
   HERO SECTION (desktop default)
============================ */
#hero {
  position: relative;
  width: 100%;
  height: 70vh;              /* desktop banner */
  min-height: 380px;
  max-height: 520px;
  overflow: hidden;
  background-color: #E3E6F3;
}

/* Slides: only active is visible, all are stacked absolutely */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;        /* no cropping */
  object-position: center;
  background: transparent;    /* avoid visible stretch fill */
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
  display: none;              /* hide non-active */
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
  display: block;
}

/* ============================
   CTA BUTTON (desktop only)
============================ */
#hero #shopBtn {
  position: absolute;
  bottom: 12%;
  left: 8%;
  min-width: 180px;
  height: 54px;
  font-size: 16px;
  font-weight: 700;
  background-color: #088178;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
#hero #shopBtn:hover,
#hero #shopBtn:focus {
  background-color: #06655e;
}
#hero #shopBtn:active {
  box-shadow: 0 0 15px rgba(8,129,120,0.7);
  transform: scale(0.97);
}

/* Hide CTA on phones */
@media (max-width: 768px) {
  #hero #shopBtn {
    display: none;
  }
}

/* ============================
   SLIDER DOTS (desktop)
============================ */
.slider-dots {
  position: absolute;
  bottom: 20px;              /* desktop: overlay at bottom */
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
  pointer-events: auto;
}

.slider-dots .dot {
  width: 48px;               /* actual clickable area */
  height: 48px;
  background: transparent;   /* invisible button background */
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* small visible circle centered inside */
.slider-dots .dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  transition: transform 0.3s ease, background 0.3s ease;
}

.slider-dots .dot.active::after {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.2);
}

.slider-dots .dot:focus {
  outline: 2px solid #333;
  outline-offset: 2px;
}

/* ============================
   MOBILE OVERRIDES
============================ */
@media (max-width: 768px) {
  #hero {
    height: auto;
    min-height: unset;
    max-height: unset;
    aspect-ratio: 1600 / 500;   /* keeps banner proportion */
    background-color: #E3E6F3;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
    object-fit: contain;
    object-position: center;
    background: transparent;
  }
  .hero-slide.active {
    display: block;
    opacity: 1;
  }

  /* Hide dots completely on phones */
  .slider-dots {
    display: none !important;
  }
}


/* ============================
   FEATURE SECTION
============================ */
#feature {
  padding: 20px 10px;
  margin-top: 25px;
  position: relative; /* needed for fade edges */
}

#feature h2,
#feature .section-intro {
  text-align: center;
  width: 100%;
}

/* Default: one line on large screens */
#feature .section-intro {
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
}

/* On mobile: allow wrapping */
@media (max-width: 768px) {
  #feature .section-intro {
    white-space: normal;
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Feature row */
.feature-row {
  display: flex;
  flex-wrap: nowrap;          /* always one line */
  gap: 12px;
  justify-content: space-between;
  width: 100%;
  overflow-x: hidden;         /* desktop: no scroll */
}

.feature-row .fe-box {
  flex: 0 0 180px;            /* fixed width */
  text-align: center;
  padding: 18px 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid #cce7d0;
  border-radius: 6px;
  margin: 5px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.feature-row .fe-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.feature-row .fe-box h3 {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.feature-row .fe-box .fe-text {
  margin-top: 4px;
  font-size: 13px;
  color: #465b52;
  line-height: 1.4;
}

/* Images */
.feature-row .fe-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Mobile: keep one line, allow scroll */
@media (max-width: 768px) {
  .feature-row {
    overflow-x: auto;             /* ✅ enable horizontal scroll */
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    justify-content: flex-start;  /* align boxes left */
    scroll-snap-type: x mandatory; /* snap scrolling */
  }

  .feature-row .fe-box {
    flex: 0 0 180px;              /* keep fixed width */
    max-width: 180px;
    scroll-snap-align: start;     /* snap each box */
  }

  /* Fade edge hint for scroll */
  #feature::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, #fff, transparent);
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .feature-row {
    overflow-x: auto;
  }

  .feature-row .fe-box {
    flex: 0 0 180px;
    max-width: 180px;
  }
}

/* Optional scrollbar styling */
.feature-row::-webkit-scrollbar {
  height: 6px;
}
.feature-row::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

/* ============================
   Services Banner (Option 3)
============================ */
#services {
  text-align: center;
  padding: 40px 20px;
}

#services h2 {
  text-align: center;
  margin-bottom: 6px;
}

#services .services-sub {
  text-align: center;
  font-size: 16px;
  color: #465b52;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap; /* ✅ force one line on larger screens */
}

.services-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: none;
}

.services-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px; /* ✅ curved corners */
  display: block;      /* ✅ removes tiny gaps */
}

/* Responsive tweaks */
@media (max-width: 600px) {
  #services .services-sub {
    white-space: normal; /* ✅ allow wrapping on small screens */
  }
}

/* ============================
   HOMEPAGE PRODUCT SECTION
============================ */

#product1 {
  text-align: center;
  padding: 0 20px;
}

#product1 > h2 {
  margin-bottom: 6px;
  font-size: 2rem;
  font-weight: 700;
}

#product1 > p {
  margin-bottom: 18px;
  color: #465b52;
  font-size: 15px;
  line-height: 1.6;
}

/* Product Grid */
#product1 .pro-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(340px, 1fr)); /* 4 wide columns */
  gap: 32px;                               /* spacing between cards */
  padding-top: 20px;
  max-width: 1400px;                       /* fits 4 large cards neatly */
  margin: 0 auto; 
  justify-content: center; /* centers the entire row of boxes */ 
  justify-items: stretch; /* each box fills its column */;                   
}

/* Product Card */
#product1 .pro {
  padding: 14px;
  border: 1px solid #cce7d0;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 10px 10px 20px rgba(0,0,0,0.02);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  min-height: 480px;   /* taller cards */
  width: 100%;
}

#product1 .pro:hover {
  box-shadow: 10px 10px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* Product Image */
#product1 .pro picture,
#product1 .pro img {
  width: 100%;
  height: 280px;       /* larger image height */
  border-radius: 16px;
  object-fit: cover;   /* fills container without distortion */
  display: block;
}

/* Product Description */
#product1 .pro .des {
  text-align: start;
  padding: 14px 0;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 6px;
}

#product1 .pro .des p {
  font-size: 14px;
  color: #465b52;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Stars */
#product1 .pro .des i {
  font-size: 14px;
  color: #f3b519;
}

/* Know More Button */
.know-more {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  background-color: #088178;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.know-more:hover {
  background-color: #06655e;
  transform: translateY(-2px);
}

/* Responsive overrides */
@media (max-width: 1200px) {
  #product1 .pro-container {
    grid-template-columns: repeat(3, minmax(300px, 1fr)); /* 3 cards per row */
    max-width: 1200px;
  }
}

@media (max-width: 900px) {
  #product1 .pro-container {
    grid-template-columns: repeat(2, minmax(280px, 1fr)); /* 2 cards per row */
    max-width: 800px;
  }
}

@media (max-width: 600px) {
  #product1 .pro-container {
    grid-template-columns: 1fr; /* 1 full-width card per row */
    max-width: 100%;
  }

  #product1 .pro {
    min-height: 380px;
    width: 100%;
  }

  #product1 .pro img {
    height: 220px;
  }
}


/* ============================
   PRODUCT PAGE WRAPPER
============================ */
.product-page {
  padding-top: 20px; /* removed !important for cleaner overrides */
}

/* ============================
   TITLE + SUBTITLE
============================ */
.product-title,
.product-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.product-sub,
.product-section p.sub {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 25px;
  color: #465b52;
  line-height: 1.6;
}

/* ============================
   CATEGORY HEADER (Premium)
============================ */
.category-header {
  text-align: center;
  margin-bottom: 40px;
}

.category-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
}

.category-header .line {
  width: 80px;
  height: 4px;
  background: #088178;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ============================
   PRODUCT GALLERY GRID
============================ */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* smaller min width for phones */
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 0 20px;
}

@media (max-width: 600px) {
  .product-gallery {
    grid-template-columns: 1fr; /* single column on small screens */
    max-width: 100%;
  }
}

/* ============================
   IMAGE CARD (Equal Height)
============================ */
.img-card {
  width: 100%;
  height: 420px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(20px);
}

.img-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.img-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, opacity 0.6s ease;
  opacity: 0; /* lazy load fade */
}

.img-card img.loaded {
  opacity: 1 !important;
}

.img-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

/* Mobile tweak: flexible height */
@media (max-width: 600px) {
  .img-card {
    height: auto;
    min-height: 280px;
  }
}

/* ============================
   LOAD MORE BUTTON
============================ */
#loadMoreBtn {
  display: block;
  margin: 30px auto 0;
  padding: 12px 28px;
  background: #088178;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

#loadMoreBtn:hover {
  background: #06655e;
  transform: translateY(-3px);
}

/* ============================
   CTA BOX
============================ */
.cta-box {
  text-align: center;
  background: #E3E6F3;
  padding: 20px;
  border-radius: 12px;
  margin-top: 30px;
}

.call-btn,
.whatsapp-btn {
  display: inline-block;
  margin: 10px 8px 0;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
}

.call-btn {
  background: #088178;
}

.call-btn:hover {
  background: #06655e;
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #1ebd59;
}

/* ============================
   FEATURES LIST
============================ */
.product-features ul {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 20px;
  line-height: 1.7;
}

/* ============================
   BENEFITS SECTION
============================ */
.benefits-section {
  margin-top: 60px;
}

/* ============================
   SERVICE AREAS
============================ */
.service-areas {
  margin-top: 40px;
  padding-top: 10px;
}

/* ============================
   FAQ SECTION
============================ */
.faq-section {
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 18px;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #1a1a1a;
}

/* ============================
   ZOOM OVERLAY
============================ */
.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: zoom-out;
}

.zoomed-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* ============================
   SCROLL TO TOP BUTTON
============================ */
#scrollTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #088178;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
}

#scrollTopBtn:hover {
  background: #06655e;
}

/* ============================
   CONTACT / CTA SECTION (Refined)
============================ */
.contact-section {
  text-align: center;
  background: #f9f9f9;
  padding: 50px 25px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
  color: #1a1a1a;
  font-weight: 700;
}

.contact-section p {
  max-width: 720px;
  margin: 0 auto 25px;
  color: #465b52;
  line-height: 1.7;
  font-size: 15px;
}

.contact-section p {
  white-space: nowrap;
}

/* Shared button base */
.call-button,
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
  margin: 8px;
}

/* Call button */
.call-button {
  background: #088178;
  color: #fff;
}

.call-button:hover,
.call-button:focus {
  background: #06655e;
  transform: translateY(-2px);
}

.call-button i {
  font-size: 14px;
}

/* WhatsApp button */
.whatsapp-btn {
  background: #25D366;
  color: #000; /* dark text for contrast */
}

.whatsapp-btn:hover,
.whatsapp-btn:focus {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .call-button,
  .whatsapp-btn {
    font-size: 14px;
    padding: 11px 20px;
    display: block;
    margin: 10px auto;
    width: 90%;
  }
}

/* ============================
   MAP SECTION 
============================ */
.map-section {
  text-align: center;
  background: #f9f9f9;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  max-width: 100%;   /* allow full stretch */
  margin: 40px auto 0;
}

.map-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 700;
}

.map-container {
  position: relative;
  width: 100%;       /* full width */
  height: 400px;     /* keep height fixed */
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .map-section {
    padding: 30px 15px;
  }
  .map-container {
    height: 300px; /* smaller height on tablets */
  }
}

@media (max-width: 480px) {
  .map-section h2 {
    font-size: 1.4rem;
  }
  .map-container {
    height: 220px; /* compact height on mobile */
  }
}

/* ============================
   FOOTER (Refined)
============================ */
footer {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c); /* Subtle gradient for depth */
  color: #eaeaea;
  padding: 25px 0;
  text-align: center;
  font-family: "Segoe UI", Arial, sans-serif;
  border-top: 2px solid #444; /* Clean separation line */
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-inner p {
  margin: 6px 0;
  font-size: 15px;
  line-height: 1.5;
  color: #ccc; /* Softer text tone */
}

.footer-inner p:first-child {
  font-weight: 700;
  font-size: 16px;
  color: #fff; /* Business name stands out */
  letter-spacing: 0.5px;
}

footer a {
  color: #ffcc00; /* Accent brand color */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}

footer a:hover {
  color: #fff;
  border-bottom: 1px solid #ffcc00;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  footer {
    padding: 20px 10px;
  }
  .footer-inner p {
    font-size: 13px;
    line-height: 1.4;
  }
}







