/* JDB Invisible Grills - Stylesheet */

:root {
  --primary: #2f6b1f;
  --primary-dark: #234d18;
  --primary-light: #3c8a2a;
  --dark: #16300f;
  --dark-2: #234d18;
  --gray: #6b7165;
  --light-gray: #f1f1e8;
  --white: #ffffff;
  --accent: #e88324;
  --gradient-primary: linear-gradient(135deg, #2f6b1f 0%, #234d18 100%);
  --gradient-dark: linear-gradient(135deg, #16300f 0%, #234d18 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(20, 40, 15, 0.14);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

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

/* ===== Top Bar ===== */
.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}

.top-bar a {
  color: var(--white);
  margin-right: 18px;
}

.top-bar a:hover {
  color: var(--primary-light);
}

.top-bar .social a {
  margin-left: 12px;
  margin-right: 0;
}

/* ===== Navbar ===== */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 15px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-weight: 800;
  font-size: 24px;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .brand-icon {
  width: 46px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.navbar-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar-brand span small {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.navbar-brand .brand-logo {
  height: 100px;
  width: auto;
  display: block;
}

.footer-brand .footer-logo {
  height: 70px;
  width: auto;
  background: #fff;
  padding: 8px 12px;
  border-radius: 12px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  margin: 0 8px;
  padding: 8px 14px !important;
  border-radius: 8px;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: rgba(47, 107, 31, 0.08);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 10px;
  margin-top: 10px !important;
}

.dropdown-item {
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--dark);
}

.dropdown-item:hover {
  background: rgba(47, 107, 31, 0.08);
  color: var(--primary);
}

/* ===== Nested Submenu (city-wise services) ===== */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu.submenu {
  top: -10px;
  left: 100%;
  margin-top: 0 !important;
  margin-left: 6px;
  min-width: 280px;
  display: none;
}

@media (min-width: 992px) {
  /* Hover-to-open for top-level dropdown */
  .navbar-nav .nav-item.dropdown:hover > .dropdown-menu,
  .navbar-nav .nav-item.dropdown:focus-within > .dropdown-menu {
    display: block;
  }
  /* Bridge the gap between toggle and menu so hover doesn't drop */
  .navbar-nav .nav-item.dropdown > .dropdown-menu {
    margin-top: 0 !important;
  }
  .navbar-nav .nav-item.dropdown > .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
  }
  .dropdown-submenu:hover > .dropdown-menu.submenu,
  .dropdown-submenu:focus-within > .dropdown-menu.submenu {
    display: block;
  }
}

.dropdown-submenu > .dropdown-item .fa-chevron-right {
  transition: transform 0.25s ease;
  opacity: 0.6;
}

.dropdown-submenu:hover > .dropdown-item .fa-chevron-right {
  transform: translateX(3px);
  opacity: 1;
  color: var(--primary);
}

.submenu-header {
  padding: 8px 16px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 6px;
}

/* Mobile: open nested list inline instead of flyout, collapsed by default */
@media (max-width: 991.98px) {
  .dropdown-submenu > .dropdown-menu.submenu {
    position: static;
    display: none;
    box-shadow: none;
    margin: 4px 0 8px 14px !important;
    padding: 4px 0 4px 8px;
    border-left: 2px solid rgba(47, 107, 31, 0.15);
    border-radius: 0;
    min-width: 0;
  }
  .dropdown-submenu.show > .dropdown-menu.submenu {
    display: block;
  }
  .dropdown-submenu > .dropdown-item .fa-chevron-right {
    transition: transform 0.25s ease;
  }
  .dropdown-submenu.show > .dropdown-item .fa-chevron-right {
    transform: rotate(90deg);
    color: var(--primary);
    opacity: 1;
  }
  /* Full-width tap targets inside collapsed nav */
  .navbar-nav .nav-link,
  .navbar-nav .dropdown-item {
    margin: 2px 0;
  }
  .navbar-nav .nav-link {
    padding: 10px 14px !important;
  }
  .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: none;
    padding: 6px;
    margin-top: 4px !important;
  }
}

.btn-primary-custom {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  box-shadow: 0 8px 20px rgba(47, 107, 31, 0.25);
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(47, 107, 31, 0.4);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid var(--white);
  display: inline-block;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(22, 48, 15, 0.85), rgba(35, 77, 24, 0.75)),
              url('../images/hero-bg.jpg') center/cover;
  color: var(--white);
  padding: 100px 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(47, 107, 31, 0.5), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: var(--white);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}

.hero h1 .text-accent {
  color: var(--accent);
}

.hero .lead {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-stat h3 {
  color: var(--accent);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 4px;
}

.hero-stat p {
  margin: 0;
  opacity: 0.9;
  font-size: 14px;
}

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(135deg, rgba(22, 48, 15, 0.92), rgba(35, 77, 24, 0.85)),
              url('../images/page-header-bg.jpg') center/cover;
  color: var(--white);
  padding: 110px 0 70px;
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: var(--white);
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 14px;
}

.page-header .breadcrumb {
  justify-content: center;
  margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item.active {
  color: var(--accent);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Sections ===== */
section {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle {
  display: inline-block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding: 0 30px;
}

.section-title .subtitle::before,
.section-title .subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--primary);
}

.section-title .subtitle::before { left: 0; }
.section-title .subtitle::after { right: 0; }

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-title p {
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto;
  font-size: 16px;
}

.bg-light-custom {
  background: var(--light-gray);
}

.bg-dark-custom {
  background: var(--dark);
  color: var(--white);
}

.bg-dark-custom h2,
.bg-dark-custom h3 {
  color: var(--white);
}

/* ===== Service Cards ===== */
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(47, 107, 31, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: rotate(-8deg) scale(1.05);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 18px;
}

.service-card .read-more {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .read-more:hover {
  gap: 12px;
}

/* ===== Image Card ===== */
.image-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition);
}

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

.image-card-body {
  padding: 28px;
  background: var(--white);
}

.image-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* ===== Feature Box ===== */
.feature-box {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: var(--transition);
}

.feature-box:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-box .feature-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.feature-box h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.feature-box p {
  color: var(--gray);
  margin: 0;
  font-size: 15px;
}

/* ===== About Section ===== */
.about-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 22px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.about-badge h3 {
  color: var(--white);
  font-size: 36px;
  margin: 0;
  font-weight: 800;
}

.about-content h2 {
  font-size: 40px;
  margin-bottom: 22px;
}

.about-content .lead {
  color: var(--gray);
  margin-bottom: 18px;
  font-size: 17px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.check-list li {
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
  color: var(--dark-2);
  font-weight: 500;
}

.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

.cta-section .btn-cta {
  background: var(--white);
  color: var(--primary);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.cta-section .btn-cta:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 700;
}

.footer p, .footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer a:hover {
  color: var(--primary-light);
}

.footer ul {
  list-style: none;
  padding: 0;
}

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

.footer ul li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer ul li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  font-size: 12px;
}

.footer .footer-brand {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 5px;
  width: 18px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
}

/* ===== Why Choose / Process ===== */
.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: var(--transition);
}

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

.why-card .num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 22px;
  box-shadow: 0 12px 24px rgba(47, 107, 31, 0.3);
}

.why-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--gray);
  margin: 0;
  font-size: 15px;
}

/* ===== Content Block ===== */
.content-block {
  background: var(--white);
  border-radius: 16px;
  padding: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 36px;
}

.content-block h2 {
  font-size: 34px;
  margin-bottom: 22px;
  color: var(--primary);
}

.content-block h3 {
  font-size: 24px;
  margin: 30px 0 16px;
}

.content-block p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 16px;
}

.content-block ul {
  padding-left: 0;
  list-style: none;
}

.content-block ul li {
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
  color: var(--dark-2);
}

.content-block ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  background: rgba(47, 107, 31, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* ===== Benefit / Detail Cards ===== */
.benefit-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px 26px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.benefit-card .benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.benefit-card h4 {
  font-size: 19px;
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--gray);
  margin: 0;
  font-size: 15px;
}

/* ===== Tagline Banner ===== */
.tagline-banner {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 50px 40px;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.tagline-banner::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 80px;
  color: rgba(47, 107, 31, 0.15);
}

.tagline-banner h3 {
  color: var(--accent);
  font-size: 28px;
  margin-bottom: 10px;
  font-style: italic;
}

.tagline-banner p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

/* ===== Contact ===== */
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-card .icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 22px;
  box-shadow: 0 14px 28px rgba(47, 107, 31, 0.3);
}

.contact-form {
  background: var(--white);
  border-radius: 18px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-control,
.form-select {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(47, 107, 31, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

/* ===== Floating Contact Buttons ===== */
.float-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.whatsapp-float,
.phone-float {
  width: 60px;
  height: 60px;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition);
}

.whatsapp-float {
  background: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}

.phone-float {
  background: var(--primary);
  box-shadow: 0 10px 30px rgba(47, 107, 31, 0.4);
  animation: pulse-phone 2s infinite;
}

.whatsapp-float:hover,
.phone-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

@keyframes pulse-phone {
  0% { box-shadow: 0 10px 30px rgba(47, 107, 31, 0.4), 0 0 0 0 rgba(47, 107, 31, 0.7); }
  70% { box-shadow: 0 10px 30px rgba(47, 107, 31, 0.4), 0 0 0 20px rgba(47, 107, 31, 0); }
  100% { box-shadow: 0 10px 30px rgba(47, 107, 31, 0.4), 0 0 0 0 rgba(47, 107, 31, 0); }
}

@keyframes pulse {
  0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Clickable area links ===== */
.area-link {
  display: block;
  height: 100%;
}

.area-link .benefit-card {
  transition: var(--transition);
}

.area-link:hover .benefit-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.area-link:hover .fw-semibold {
  color: var(--primary);
}

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

.fade-up {
  animation: fadeUp 0.8s ease-out;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .hero h1 { font-size: 44px; }
  .section-title h2 { font-size: 32px; }
  .page-header h1 { font-size: 38px; }
  .about-content h2 { font-size: 30px; }
  .content-block { padding: 32px 24px; }
  .navbar-collapse {
    background: var(--white);
    padding: 18px;
    border-radius: 12px;
    margin-top: 12px;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .navbar-toggler {
    border: 1px solid rgba(47, 107, 31, 0.25);
    padding: 6px 10px;
  }
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(47, 107, 31, 0.15);
  }
  .navbar-brand { font-size: 20px; }
  .navbar-brand .brand-icon { width: 36px; height: 36px; font-size: 16px; }
  .navbar-brand .brand-logo { height: 100px; }
  .navbar-nav .btn-primary-custom {
    display: block;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 575px) {
  section { padding: 60px 0; }
  .hero { padding: 80px 0; min-height: auto; }
  .hero h1 { font-size: 34px; }
  .cta-section h2 { font-size: 28px; }
  .hero-stat h3 { font-size: 32px; }
  .top-bar { font-size: 12px; }
  .top-bar a { margin-right: 10px; }
}

/* ===== Our Services Slider ===== */
.services-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 20px 50px rgba(0, 0, 0, 0.12));
  background: #fff;
}

.services-slider .carousel-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.services-slider .carousel-control-prev,
.services-slider .carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(47, 107, 31, 0.85);
  border-radius: 50%;
  opacity: 1;
  transition: var(--transition, all 0.3s ease);
}

.services-slider .carousel-control-prev { left: 16px; }
.services-slider .carousel-control-next { right: 16px; }

.services-slider .carousel-control-prev:hover,
.services-slider .carousel-control-next:hover {
  background: var(--primary, #2f6b1f);
}

.services-slider .carousel-indicators {
  margin-bottom: 12px;
}

.services-slider .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.5);
}

.services-slider .carousel-indicators .active {
  background: var(--primary, #2f6b1f);
}

@media (max-width: 575px) {
  .services-slider .carousel-control-prev,
  .services-slider .carousel-control-next { width: 38px; height: 38px; }
  .services-slider .carousel-control-prev { left: 8px; }
  .services-slider .carousel-control-next { right: 8px; }
}
