/* =============================================
   MAYECHA INDUSTRIES - Main Stylesheet
   Font: Poppins | Colors: Orange + Brown + Gray
   ============================================= */

:root {
  --orange:       #F47C20;
  --orange-light: #FFA94D;
  --orange-dark:  #d96a10;
  --brown:        #5A3E2B;
  --brown-dark:   #3d2a1a;
  --text-dark:    #222222;
  --text-muted:   #666666;
  --bg-light:     #F7F7F7;
  --bg-white:     #ffffff;
  --border:       #e5e5e5;
  --font:         'Poppins', sans-serif;
  --transition:   0.3s ease;
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.08);
  --shadow-md:    0 6px 30px rgba(0,0,0,0.12);
  --shadow-lg:    0 12px 50px rgba(0,0,0,0.15);
  --radius:       6px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-white);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: #222222;
  /* color: var(--brown); */
  font-weight: 700;
  line-height: 1.3;
}

a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }

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

/* ---- TOPBAR ---- */
.topbar {
  background: var(--brown-dark);
  padding: 8px 0;
  font-size: 13px;
}
.topbar a {
  color: rgba(255,255,255,0.85);
  margin-right: 20px;
  font-weight: 400;
}
.topbar a:hover { color: var(--orange-light); }
.topbar a i { margin-right: 5px; color: var(--orange); }
.topbar-social a {
  color: rgba(255,255,255,0.7);
  margin-right: 12px;
  font-size: 15px;
}
.topbar-social a:hover { color: var(--orange-light); }

/* ---- NAVBAR ---- */
.main-navbar {
  background: #ffffff;
  padding: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.main-navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.navbar-brand {
  /* padding: 14px 0; */
  padding: 8px 0;
  line-height: 1;
}
.brand-mayecha {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 2px;
  line-height: 1;
}
.brand-industries {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 2px;
}
.main-navbar .nav-link {
  /* color: var(--brown) !important; */
  color: black !important;
  font-weight: 600;
  font-size: 13px;
  /* padding: 22px 13px !important; */
  /* padding: 10px 13px !important; */

  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.main-navbar .nav-link::after {
  /* content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width var(--transition); */
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { width: 100%; }
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--orange) !important; }
.navbar-toggler { border-color: var(--brown); }
.navbar-toggler-icon { filter: none; }

/* ---- DROPDOWN MENU ---- */
.main-navbar .dropdown-menu {
  border: none;
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 8px 0;
  min-width: 230px;
  margin-top: 0;
}
.main-navbar .dropdown-item {
  font-size: 13px;
  font-weight: 500;
  color: #222222;
  padding: 9px 20px;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.main-navbar .dropdown-item:hover {
  background: rgba(244,124,32,0.08);
  color: var(--orange);
  border-left-color: var(--orange);
}
.main-navbar .dropdown-item.active {
  background: rgba(244,124,32,0.08);
  color: var(--orange);
  border-left-color: var(--orange);
  font-weight: 600;
}
.main-navbar .dropdown-toggle::after {
  margin-left: 5px;
  vertical-align: middle;
  border-top-color: var(--brown);
}
.main-navbar .nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
@media (max-width: 991px) {
  html, body { overflow-x: hidden; }
  .main-navbar .dropdown-menu {
    border-top: none;
    border-left: 3px solid var(--orange);
    box-shadow: none;
    background: var(--bg-light);
    margin-left: 12px;
    max-width: calc(100vw - 30px);
  }
}

/* ---- BUTTONS ---- */
.btn-primary-orange {
  background: var(--orange);
  color: #fff !important;
  border: none;
  /* padding: 10px 26px; */
  padding: 12px 26px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  /* box-shadow: 0 4px 15px rgba(244,124,32,0.35); */
}
.btn-primary-orange:hover {
  background: var(--orange-dark);
  /* box-shadow: 0 6px 20px rgba(244,124,32,0.5); */
  transform: translateY(-1px);
}
.btn-outline-brown {
  border: 2px solid var(--brown);
  color: var(--brown) !important;
  padding: 9px 24px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-outline-brown:hover {
  background: var(--brown);
  color: #fff !important;
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff !important;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* ---- SECTION STYLES ---- */
.section { padding: 80px 0; }
.section-alt { padding: 80px 0; background: var(--bg-light); }
.section-dark { padding: 80px 0; background: var(--brown-dark); }
.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  position: relative;
  /* padding-left: 28px; */
}
/* .section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--orange);
} */
.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: black;
  margin-bottom: 16px;
}
.section-title-white {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.title-divider {
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 0 0 30px;
}
.title-divider-center { margin: 0 auto 30px; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../images/mayechaindustries-banner.webp') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,27,10,0.7) 0%, rgba(42,28,15,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 80px;
}
.hero-label {
  display: inline-block;
  background: rgba(244,124,32,0.2);
  border: 1px solid rgba(244,124,32,0.5);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  /* max-width: 560px; */
  line-height: 1.9;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* ---- ABOUT SECTION (Home) ---- */
.about-img-wrap {
  position: relative;
  padding-bottom: 30px;
  padding-right: 30px;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 440px;
}
.about-img-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(244,124,32,0.45);
}
.about-img-badge .badge-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.about-img-badge .badge-text {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.3;
  padding: 0 10px;
}
.about-check-list { list-style: none; padding: 0; margin: 24px 0; }
.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14.5px;
  color: var(--text-dark);
}
.about-check-list li i {
  color: var(--orange);
  font-size: 16px;
  /* margin-top: 2px; */
  flex-shrink: 0;
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
  z-index: 2;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { width: 100%; }

/* Service card image on top */
.service-card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(90,62,43,0.55) 0%, transparent 60%);
}

/* Service card body */
.service-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Keep old .service-icon for About page Mission/Vision cards */
.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(244,124,32,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--orange);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: #fff;
}

/* Icon badge overlaid on image bottom-left */
.service-card-icon-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 2px 10px rgba(244,124,32,0.5);
}

.service-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
  flex: 1;
}
.service-card .read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.service-card .read-more:hover { gap: 10px; }

/* Plain padding variant for About page cards (no image) */
.service-card.no-img { padding: 32px 28px; }

/* ---- PROJECT CARDS ---- */
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 300px;
  /* cursor: pointer; */
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover img { transform: scale(1.06); }
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,27,10,0.92) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  transition: var(--transition);
  
}
.project-card-cat {
  font-size: 14px;
  color: var(--orange-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 6px;
}
.project-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  display:none;
}
.project-card-location {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display:none;

}

/* ---- COUNTER SECTION ---- */
.counter-section {  padding: 60px 0;
  background-image: 
    linear-gradient(rgba(60, 40, 20, 0.8), rgba(60, 40, 20, 0.8)), 
    url('../images/bhuj-industrial-park-sheds-peb-shed.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;}

  .awards-section-bgimg{
     background-image: 
    linear-gradient(rgba(60, 40, 20, 0.80), rgba(60, 40, 20, 0.80)), 
    url('../images/anjar-industrial-warehouse-complex-peb-shed.webp');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
  }
  .client-section-bgimg{
    background-image: 
   linear-gradient(rgba(60, 40, 20, 0.80), rgba(60, 40, 20, 0.80)), 
   url('../images/kandla-port-equipment-shelter-conventional-shed.webp');
   background-size: cover;
   background-position: top center;
   /* background-attachment: fixed; */
  }
.counter-item { text-align: center; }
.counter-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.counter-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  display: block;
}
.counter-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  height: 70px;
  margin: 0 auto;
}

/* ---- CLIENTS ---- */
.clients-strip {
   /* background: var(--brown-dark); */
    padding: 50px 0; }
.client-item {
  text-align: center;
  padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.client-item:last-child { border-right: none; }
.client-item span {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.client-item:hover span { color: var(--orange-light); }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 80px;
  line-height: 1;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: Georgia, serif;
}
.testimonial-stars { color: var(--orange); font-size: 14px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: #222222; margin: 0; }
.testimonial-company { font-size: 12px; color: var(--text-muted); display:none }

/* ---- AWARDS ---- */
.award-card {
  /* background: rgba(255,255,255,0.05); */
  /* border: 1px solid rgba(255,255,255,0.1); */
  /* background: rgba(244,124,32,0.1); */
  /* border-color: rgba(244,124,32,0.4); */
  background-color: var(--orange-dark);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.award-card:hover {
  /* background: rgba(244,124,32,0.1); */
  /* border-color: rgba(244,124,32,0.4); */
  transform: translateY(-3px);
}
.award-icon {
  font-size: 36px;
  /* color: var(--orange); */
  color: #ffffff;
  margin-bottom: 14px;
  display: block;
}
.award-card h5 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
}
.award-card .award-issuer {
  font-size: 12px;
  /* color: rgba(255,255,255,0.5); */
  color: white;
}
.award-year {
  display: inline-block;
  background: rgba(244,124,32,0.2);
  color: var(--orange-light);
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 30px;
  margin-top: 8px;
  font-weight: 600;
}

/* ---- NEWS / BLOG CARDS ---- */
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-cat-tag {
  display: inline-block;
  background: rgba(244,124,32,0.1);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.blog-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card h5 a { color: inherit; }
.blog-card h5 a:hover { color: var(--orange); }
.blog-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
.blog-meta {
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
}

/* ---- PAGE BANNER ---- */
.page-banner {
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=70') center/cover no-repeat;
  position: relative;
  padding: 70px 0;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,27,10,0.9) 0%, rgba(90,62,43,0.8) 100%);
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.breadcrumb-item { font-size: 13px; }
.breadcrumb-item a { color: var(--orange-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ---- GALLERY GRID ---- */
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  /* height: 240px; */
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58,27,10,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 32px; color: #fff; }

/* ---- FAQ ---- */
.faq-accordion .accordion-item {
  background: var(--bg-white);
  border: 1px solid rgba(90,62,43,0.12);
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(28, 21, 16, 0.06);
  margin-bottom: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-accordion .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(28, 21, 16, 0.09);
  border-color: rgba(244,124,32,0.24);
}
.faq-accordion .accordion-button {
  background: #fff;
  color: #222222;
  box-shadow: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(180deg, rgba(244,124,32,0.08) 0%, rgba(244,124,32,0.03) 100%);
  color: #222222;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq-accordion .accordion-button::after {
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-q-no {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(244,124,32,0.1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
}
.faq-accordion .accordion-button:not(.collapsed) .faq-q-no {
  background: var(--orange);
  color: #fff;
}
.faq-q-text {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}
.faq-accordion .accordion-body {
  padding: 5px 24px 20px 80px;
}
.faq-accordion .accordion-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 14.5px;
}

/* ---- CONTACT ---- */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.contact-info-text h6 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 15px; font-weight: 500; color: var(--text-dark); margin: 0; }
.contact-form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,124,32,0.15);
}
.form-label { font-size: 13px; font-weight: 600; color: var(--brown); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
}
.whatsapp-float:hover {
  background: #1dba57;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}

/* ---- SCROLL TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  width: 42px;
  height: 42px;
  background: var(--brown);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--orange); }

/* ---- FOOTER ---- */
.site-footer { margin-top: 0; }
.footer-top {
   /* background: var(--brown);  */
   background: #3d2a1a;
  padding: 50px 0 40px; }
.footer-brand { margin-bottom: 16px; }
.footer-about {
  font-size: 13.5px;
  /* color: rgba(255, 255, 255, 1); */
  color: black;
  line-height: 1.85;
  max-width: 300px;
  margin-bottom: 20px;
  text-align: justify;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  /* background: rgba(255,255,255,0.08); */
  /* color: rgba(255,255,255,0.7); */
   background: linear-gradient(45deg, #833AB4, #E1306C, #F77737);
  color: white;
  border-radius: var(--radius);
  font-size: 16px;
  margin-right: 8px;
  transition: var(--transition);
}
.footer-social a:hover { 
  /* background: var(--orange); color: #fff; */
 }
.footer-heading {
  font-size: 14px;
  font-weight: 700;
  /* color: #fff; */
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 13.5px;
  /* color: rgba(255,255,255,1); */
  color: black;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '>';
  /* width: 6px;
  height: 1px; */
  /* background: var(--orange); */
  display: inline-block;
}
.footer-links a:hover { color: var(--orange-light); padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
  /* color: rgba(255,255,255,1); */
  color: black;
  line-height: 1.6;
}
.footer-contact-list li i { color: var(--orange); font-size: 16px; flex-shrink: 0; margin-top: 0px; }
.footer-contact-list a {
   /* color: rgba(255,255,255,1); */
   color: black;
 }
.footer-contact-list a:hover { color: var(--orange-light); }
.footer-bottom {
  background: var(--brown-dark);
  /* background: #5a3e2b; */
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---- ADMIN LINK ---- */
.admin-badge {
  display: inline-block;
  background: rgba(244,124,32,0.15);
  border: 1px solid rgba(244,124,32,0.3);
  color: var(--orange);
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- UTILITIES ---- */
.text-orange { color: var(--orange) !important; }
.text-brown { color: var(--brown) !important; }
.bg-brown { background: var(--brown) !important; }
.bg-orange { background: var(--orange) !important; }
.bg-light-custom { background: var(--bg-light) !important; }
.rounded-custom { border-radius: var(--radius) !important; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .main-navbar .nav-link { padding: 10px 15px !important; }
  .main-navbar .nav-link::after { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .about-img-main { height: 320px; }
  .counter-divider { display: none; }
  .faq-accordion .accordion-body { padding-left: 24px; }
}

@media (max-width: 767px) {
  .topbar{display:none;}
  .section, .section-alt, .section-dark { padding: 55px 0; }
  .topbar .topbar-contact a:first-child { display: none; }
  .hero { min-height: 70vh; }
  .hero-stats { display: none; }
  .contact-form-wrap { padding: 24px 18px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .scroll-top { bottom: 84px; right: 20px; }
  .navbar-collapse{padding-bottom: 20px;}
}

/* ---- SERVICES DROPDOWN CHEVRON ---- */
.services-nav-wrap {
  display: flex;
  align-items: center;
}

.services-nav-link {
  padding-right: 6px !important;
}

.services-nav-toggle {
  background: transparent;
  border: none;
  color: black;
  padding: 22px 10px 22px 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.services-nav-toggle:hover,
.services-nav-item:hover .services-nav-toggle,
.services-nav-toggle[aria-expanded="true"] {
  color: var(--orange);
}

.svc-chevron {
  font-size: 11px;
  transition: transform 0.25s ease;
  display: inline-block;
  vertical-align: middle;
}

/* Rotate chevron when dropdown is open */
.services-nav-toggle[aria-expanded="true"] .svc-chevron,
.services-nav-item:hover .svc-chevron {
  transform: rotate(180deg);
}

/* Mobile: tighten dropdown menu inside collapsed navbar */
@media (max-width: 991px) {
  .services-nav-item {
    width: 100%;
  }
  .services-nav-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: space-between;
  }
  .services-nav-link {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 15px !important;
  }
  .services-nav-toggle {
    flex: 0 0 auto;
    padding: 10px 15px 10px 0;
  }
  .services-nav-item .dropdown-menu {
    border: none;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 4px 0 8px 12px;
    margin: 0;
    box-shadow: none;
  }
  .services-nav-item .dropdown-menu .dropdown-item {
    font-size: 13px;
    padding: 7px 14px;
    color: var(--text-dark);
  }
  .services-nav-item .dropdown-menu .dropdown-item:hover {
    background: rgba(244, 124, 32, 0.08);
    color: var(--orange);
  }
  /* Chevron color on mobile */
  .services-nav-toggle .svc-chevron {
    color: var(--orange);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
