/* ============================================
   SHAYAN BIRD NETTING - MAIN STYLESHEET
   Theme: Premium Green & White
   Font: Playfair Display + DM Sans
============================================ */

/* ---- CSS Variables ---- */
:root {
  --green-dark: #1a4d2e;
  --green-main: #2d7a4f;
  --green-mid: #3a9b63;
  --green-light: #e8f5ee;
  --green-pale: #f2faf5;
  --green-accent: #56c97a;
  --gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f8fdf9;
  --text-dark: #0f2619;
  --text-muted: #5a7a65;
  --border-color: #c2dece;
  --shadow-sm: 0 2px 12px rgba(45, 122, 79, 0.08);
  --shadow-md: 0 6px 30px rgba(45, 122, 79, 0.14);
  --shadow-lg: 0 12px 50px rgba(45, 122, 79, 0.20);
  --transition: 0.3s ease;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.25;
}

/* ============================================
   TOP BAR
============================================ */
.topbar {
  background: var(--green-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 2px solid var(--green-mid);
}

.topbar-link {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
  font-size: 0.82rem;
}

.topbar-link:hover {
  color: var(--green-accent);
}

.topbar-social a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  transition: color var(--transition);
}

.topbar-social a:hover {
  color: var(--green-accent);
}

/* ============================================
   HEADER / NAVBAR
============================================ */
#mainHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

#mainHeader.scrolled {
  box-shadow: 0 4px 24px rgba(26, 77, 46, 0.18);
}

.navbar {
  padding: 14px 0;
}

/* Brand */
.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.brand-icon-sm {
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
}

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
}

.brand-sub {
  font-size: 0.7rem;
  color: var(--green-mid);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Nav Links */
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 6px 12px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--green-main);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--green-main);
}

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

/* CTA Button */
.btn-cta {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  padding: 9px 22px !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(45, 122, 79, 0.3);
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  box-shadow: 0 6px 22px rgba(45, 122, 79, 0.4);
  transform: translateY(-1px);
  color: var(--white) !important;
}

/* Toggler */
.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.18) 100%);
}

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

.hero-text {
  padding: 40px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(86, 201, 122, 0.2);
  border: 1px solid rgba(86, 201, 122, 0.4);
  color: var(--green-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
  animation: fadeInDown 0.8s ease both;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.18;
  animation: fadeInUp 0.9s ease 0.15s both;
}

.hero-heading span {
  color: var(--green-accent);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-btns {
  animation: fadeInUp 0.9s ease 0.45s both;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 13px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(45, 122, 79, 0.4);
  transition: all var(--transition);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, var(--green-accent), var(--green-main));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(45, 122, 79, 0.5);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

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

/* Carousel Controls */
.carousel-ctrl-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}

.carousel-ctrl-icon:hover {
  background: var(--green-main);
  border-color: var(--green-main);
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
}

.carousel-indicators [data-bs-target] {
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  transition: all var(--transition);
}

.carousel-indicators .active {
  background: var(--green-accent);
  width: 50px;
}

/* ============================================
   MARQUEE
============================================ */
.marquee-wrapper {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  overflow: hidden;
  position: relative;
}

.marquee-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-inner span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.marquee-inner span i {
  color: var(--green-accent);
  font-size: 0.75rem;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   SECTION UTILITIES
============================================ */
.section-pad {
  padding: 90px 0;
}

.bg-light-green {
  background: var(--green-pale);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-main);
  background: var(--green-light);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--green-main);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 600px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-img-grid {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-img-main img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

.badge-inner {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.badge-label {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.about-feat:hover {
  border-color: var(--green-main);
  box-shadow: 0 4px 20px rgba(45, 122, 79, 0.15);
  transform: translateY(-2px);
}

.about-feat i {
  color: var(--green-main);
  font-size: 1.1rem;
}

.btn-green {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 4px 18px rgba(45, 122, 79, 0.3);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-green:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 122, 79, 0.4);
}

/* ============================================
   SERVICES SECTION
============================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-img {
  position: relative;
  overflow: hidden;
  height: 190px;
  flex-shrink: 0;
}

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

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15, 38, 25, 0.6) 100%);
  transition: opacity var(--transition);
}

.service-body {
  padding: 22px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-main);
  font-size: 1.2rem;
  margin-bottom: 12px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green-main);
  color: var(--white);
  border-color: var(--green-main);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}

.service-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-main);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--green-dark);
}

/* ============================================
   WHY CHOOSE US
============================================ */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.why-item:hover {
  border-color: var(--green-main);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-item h4 {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.why-image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.why-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.why-card-float {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.why-card-float i {
  color: var(--gold);
  font-size: 1.8rem;
}

.why-card-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.why-card-float span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   COUNTER SECTION
============================================ */
.counter-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.counter-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.counter-box {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: all var(--transition);
}

.counter-box:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.counter-icon {
  font-size: 2rem;
  color: var(--green-accent);
  margin-bottom: 10px;
}

.counter-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.counter-num::after {
  content: '+';
  font-size: 2rem;
}

.counter-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 500;
  margin: 0;
}

/* ============================================
   GALLERY SECTION
============================================ */
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  border-color: var(--green-main);
  box-shadow: var(--shadow-md);
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 77, 46, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--green-main);
  border-color: var(--green-main);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-item {
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.faq-btn {
  background: var(--white) !important;
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 18px 22px !important;
  box-shadow: none !important;
  border-bottom: none;
}

.faq-btn:not(.collapsed) {
  background: var(--green-light) !important;
  color: var(--green-dark) !important;
  border-bottom: 1px solid var(--border-color);
}

.faq-btn::after {
  filter: invert(30%) sepia(70%) saturate(400%) hue-rotate(100deg);
}

.faq-body {
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  padding: 16px 22px !important;
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact-info-box {
  background: linear-gradient(145deg, var(--green-dark), var(--green-main));
  border-radius: var(--radius);
  padding: 36px 30px;
  color: var(--white);
  height: 100%;
  box-shadow: var(--shadow-lg);
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-accent);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 3px;
}

.contact-info-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.9;
}

.contact-info-item a {
  color: var(--white);
  opacity: 0.9;
  transition: opacity var(--transition);
}

.contact-info-item a:hover {
  opacity: 1;
}

.contact-social {
  display: flex;
  gap: 12px;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}

.contact-social-link:hover {
  background: var(--green-accent);
  color: var(--green-dark);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-light);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-label span {
  color: var(--green-main);
}

.cf-input {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--off-white);
}

.cf-input:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(45, 122, 79, 0.12);
  outline: none;
  background: var(--white);
}

.btn-submit {
  font-size: 1rem;
  padding: 13px;
  border-radius: var(--radius-sm);
}

#formMsg {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-success {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid var(--border-color);
}

.form-error {
  background: #fdf0f0;
  color: #c0392b;
  border: 1px solid #f5c6c6;
}

/* ============================================
   FOOTER
============================================ */
.main-footer {
  background: var(--green-dark);
}

.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-sub {
  color: rgba(255, 255, 255, 0.6);
}

.footer-brand .brand-icon {
  background: rgba(255, 255, 255, 0.12);
}

.footer-about {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--green-accent);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--green-accent);
}

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

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-contact-list li i {
  color: var(--green-accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--green-accent);
}

.footer-bottom {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

/* ============================================
   FLOATING BUTTONS
============================================ */
.float-btn {
  position: fixed;
  bottom: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all var(--transition);
  animation: floatPulse 2.5s infinite;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.float-whatsapp {
  left: 20px;
  background: #25D366;
  color: var(--white);
}

.float-call {
  right: 20px;
  background: var(--green-main);
  color: var(--white);
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  50% {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* Delay helpers */
[data-aos-delay="50"] {
  transition-delay: 0.05s;
}

[data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos-delay="150"] {
  transition-delay: 0.15s;
}

[data-aos-delay="200"] {
  transition-delay: 0.2s;
}

[data-aos-delay="250"] {
  transition-delay: 0.25s;
}

[data-aos-delay="300"] {
  transition-delay: 0.3s;
}

/* ============================================
   SCROLL TO TOP
============================================ */
#scrollTop {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-main);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

#scrollTop:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 65px 0;
  }

  .hero-slide {
    min-height: 85vh;
  }

  .about-img-badge {
    right: 0;
    bottom: -10px;
  }

  .why-card-float {
    left: 10px;
    bottom: 16px;
  }

  .why-img {
    height: 360px;
  }

  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 16px;
    margin-top: 10px;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .cu-md-ds-nn{
	  display:none!important
  }
  .cu-jf-cntr{
	  justify-content:center!important
  }
  .section-pad {
    padding: 50px 0;
  }

  .hero-slide {
    min-height: 75vh;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .about-img-main img {
    height: 300px;
  }

  .badge-inner {
    padding: 14px 18px;
  }

  .badge-num {
    font-size: 1.8rem;
  }

  .counter-num {
    font-size: 2.2rem;
  }

  .topbar-info {
    gap: 8px;
  }

  .gallery-item img {
    height: 180px;
  }

  .contact-form-box {
    padding: 24px 18px;
  }

  .contact-info-box {
    padding: 24px 20px;
  }

  .service-img {
    height: 160px;
  }

  .why-img {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .hero-btns {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .counter-num {
    font-size: 1.8rem;
  }

  .counter-num::after {
    font-size: 1.4rem;
  }

  .gallery-item img {
    height: 150px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}