/* 
=========================================
   Ecova Digital - Custom Theme Stylesheet
=========================================
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;500;600;700;800;900&display=swap');

/* --- Design Tokens / Root Variables --- */
:root {
  /* Colors */
  --primary-rgb: 105, 181, 68;
  /* Custom Green (#69B544) */
  --primary: rgb(var(--primary-rgb));
  --secondary-rgb: 4, 55, 70;
  /* Custom Navy (#043746) */
  --secondary: rgb(var(--secondary-rgb));
  --accent-rgb: 16, 185, 129;
  /* Emerald */
  --accent: rgb(var(--accent-rgb));
  --dark-rgb: 15, 23, 42;
  /* Slate 900 */
  --dark: rgb(var(--dark-rgb));
  --dark-accent-rgb: 30, 41, 59;
  /* Slate 800 */
  --dark-accent: rgb(var(--dark-accent-rgb));
  --light-rgb: 248, 250, 252;
  /* Slate 50 */
  --light: rgb(var(--light-rgb));
  --gray-rgb: 100, 116, 139;
  /* Slate 500 */
  --gray: rgb(var(--gray-rgb));
  --light-gray: #e2e8f0;

  /* Glassmorphism Elements */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);

  /* Fonts */
  --font-headings: 'League Spartan', sans-serif;
  --font-body: 'League Spartan', sans-serif;

  /* Timing */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Document Defaults & Structure --- */
body {
  font-family: var(--font-body);
  color: #334155;
  overflow-x: hidden;
  line-height: 1.6;
}

p {
  font-size: 1.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h-font {
  font-family: var(--font-headings);
  color: var(--dark);
  font-weight: 700;
}

h1 {
  font-weight: 600;
  font-size: 3.7rem !important;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem !important;
  }
}

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

a:hover {
  color: var(--secondary);
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* --- Utilities & Gradient Typography --- */
.bg-gradient-hero {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.bg-dark-premium {
  background: radial-gradient(circle at top right, rgba(4, 55, 70, 0.15), transparent 30%),
    radial-gradient(circle at bottom left, rgba(105, 181, 68, 0.15), transparent 30%),
    var(--dark);
  color: #e2e8f0;
}

.bg-dark-premium h2,
.bg-dark-premium h3,
.bg-dark-premium h4,
.bg-dark-premium .h-font {
  color: #ffffff;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(135deg, #ffffff 30%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-custom {
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.badge-custom-light {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* --- Custom Premium Components --- */

/* Glassmorphism Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 16px;
  padding: 30px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(var(--primary-rgb), 0.2);
}

/* Nav Bar Customizations */
.navbar-custom {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--transition-smooth);
  padding: 15px 0;
}

.navbar-custom.navbar-scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(226, 232, 240, 0.8);
}

.navbar-brand-img {
  height: 35px;
  width: auto;
}

.navbar-custom .nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  color: var(--dark);
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary);
  background-color: rgba(var(--primary-rgb), 0.05);
}

/* Premium Buttons */
.btn-primary-glow {
  background: var(--primary);
  color: #ffffff;
  border: 2px solid var(--primary);
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.25);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.btn-primary-glow:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.4);
}

.btn-outline-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-light-custom {
  background-color: #ffffff;
  color: var(--dark);
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 12px;
  border: 1px solid var(--light-gray);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.btn-light-custom:hover {
  background-color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

/* --- Section Specific Styling --- */

/* Hero Animation Elements */
.hero-wrapper {
  position: relative;
  padding-top: 150px;
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .hero-wrapper {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}

.hero-shape-1 {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
  animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-2 {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
  animation: floatShape 12s ease-in-out infinite alternate;
}

@keyframes floatShape {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(30px) rotate(15deg) scale(1.1);
  }

  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
}

.hero-mockup-wrapper {
  position: relative;
  z-index: 1;
}

.hero-mockup-main {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
  max-width: 100%;
  height: auto;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite alternate;
}

.hero-card-1 {
  bottom: 15%;
  left: -30px;
}

.hero-card-2 {
  top: 15%;
  right: -20px;
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-15px);
  }
}

.hero-floating-card i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.hero-floating-card span {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

/* About Us list checks */
.about-features {
  list-style: none;
  padding: 0;
}

.about-features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 15px;
  font-weight: 500;
}

.about-features li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--accent);
  font-size: 1.2rem;
}

.about-stats-mini {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin-top: 30px;
}

/* Services Interactive Grids */
.service-card {
  position: relative;
  height: 480px;
  border-radius: 15px !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 !important;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.2);
}

.service-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(4, 7, 4, 0.88) 85%);
  z-index: 2;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.service-card:hover .service-gradient-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.95) 90%);
}

.service-content-overlay {
  position: relative;
  z-index: 3;
  padding: 30px;
  color: #ffffff;
}

.service-title {
  color: #ffffff !important;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 1.55rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-desc {
  color: #ffffff !important;
  /* Pure white description text */
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.55;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.service-hover-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 4;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.service-card:hover .service-hover-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.service-includes-title {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 18px;
}

.service-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-includes-list li {
  font-size: 0.95rem;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #e2e8f0;
}

.service-includes-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #ffffff;
  font-size: 1rem;
}

/* Horizontal Process Section (Left-to-Right Step Cards) */
.process-step-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--primary-rgb), 0.25);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.process-step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.process-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-weight: 800;
  font-family: var(--font-headings);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.process-step-card:hover .process-step-number {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0.15);
}

.process-step-card h3 {
  font-family: var(--font-headings);
  font-weight: 700;
  margin-bottom: 0;
}

/* Industries Badges Grid */
.industry-card {
  background: #ffffff;
  border: 1px solid var(--light-gray);
  border-radius: 16px;
  padding: 24px 15px;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.industry-card i {
  font-size: 2.2rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.industry-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
  font-weight: 600;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
  background: linear-gradient(180deg, #ffffff 90%, rgba(var(--primary-rgb), 0.02) 100%);
}

/* Portfolio Filters & Grid */
.filter-btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid var(--light-gray);
  color: var(--gray);
  font-family: var(--font-headings);
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.2);
}

.portfolio-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.portfolio-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 12;
  background-color: #f1f5f9;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: var(--transition-smooth);
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-tech {
  color: #ffffff;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 4px 10px;
  border-radius: 4px;
}

.portfolio-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-industry {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-family: var(--font-headings);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.portfolio-result {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.portfolio-result i {
  font-size: 1.1rem;
}

/* Swiper Portfolio Slider overrides */
.portfolio-swiper {
  padding: 20px 10px 60px 10px;
  margin: -20px -10px 0 -10px;
}

.portfolio-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.portfolio-swiper .portfolio-card {
  height: 100%;
}

/* Premium Navigation Arrows */
.portfolio-swiper .swiper-button-prev,
.portfolio-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 50%;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: var(--transition-smooth);
  top: 50%;
  transform: translateY(-50%);
  margin-top: -20px;
  /* offset pagination space */
}

.portfolio-swiper .swiper-button-prev {
  left: 20px;
}

.portfolio-swiper .swiper-button-next {
  right: 20px;
}

.portfolio-swiper .swiper-button-prev:after,
.portfolio-swiper .swiper-button-next:after {
  font-size: 1.2rem;
  font-weight: 700;
}

.portfolio-swiper .swiper-button-prev:hover,
.portfolio-swiper .swiper-button-next:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.35);
  transform: translateY(-50%) scale(1.08);
}

@media (max-width: 991px) {

  .portfolio-swiper .swiper-button-prev,
  .portfolio-swiper .swiper-button-next {
    display: none !important;
  }
}

/* Premium Pagination dots */
.portfolio-swiper .swiper-pagination-bullets {
  bottom: 15px !important;
}

.portfolio-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--gray);
  opacity: 0.3;
  margin: 0 6px !important;
  transition: var(--transition-smooth);
}

.portfolio-swiper .swiper-pagination-bullet-active {
  background-color: var(--primary) !important;
  width: 26px;
  border-radius: 10px;
  opacity: 1;
}

/* Statistics Counters */
.stat-box {
  text-align: center;
  padding: 15px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-headings);
  margin-bottom: 5px;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 40%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 500;
  margin-bottom: 0;
}

/* Testimonials Carousel Styling */
.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--light-gray);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  margin: 15px auto;
  max-width: 680px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 30px;
  font-size: 8rem;
  line-height: 1;
  font-family: var(--font-headings);
  color: rgba(var(--primary-rgb), 0.05);
  font-weight: 900;
  pointer-events: none;
}

.testimonial-quote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: #475569;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.testimonial-client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-client-info {
  text-align: left;
}

.testimonial-client-name {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.testimonial-client-role {
  font-size: 0.8rem;
  color: var(--gray);
}

.carousel-indicators-custom {
  position: static;
  margin-top: 30px;
  margin-bottom: 0;
}

.carousel-indicators-custom button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: var(--gray) !important;
  border: none !important;
  margin: 0 5px !important;
  opacity: 0.3 !important;
  transition: var(--transition-smooth);
}

.carousel-indicators-custom button.active {
  background-color: var(--primary) !important;
  width: 25px !important;
  border-radius: 10px !important;
  opacity: 1 !important;
}

/* FAQ Accordion Styling overrides */
.faq-accordion .accordion-item {
  border: 1px solid var(--light-gray);
  border-radius: 12px !important;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #ffffff;
  transition: var(--transition-smooth);
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.faq-accordion .accordion-header {
  margin: 0;
}

.faq-accordion .accordion-button {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--dark);
  font-size: 1.05rem;
  padding: 20px 24px;
  background-color: #ffffff;
  box-shadow: none;
  transition: var(--transition-smooth);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: rgba(var(--primary-rgb), 0.02);
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230f172a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.25s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2369B544'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
  padding: 20px 24px;
  color: #475569;
  line-height: 1.7;
}

/* Contact Info & Forms */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-text p {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--dark);
  font-size: 1.05rem;
}

.contact-form-card {
  padding: 40px;
}

.form-control-custom {
  background-color: #ffffff;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
  outline: none;
}

select.form-control-custom {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364748b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px 12px;
}

.form-label-custom {
  font-family: var(--font-headings);
  font-weight: 500;
  color: var(--dark);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* Footer Section */
.footer {
  background-color: var(--dark);
  color: #94a3b8;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

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

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

.footer-links a {
  color: #94a3b8;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  font-size: 0.85rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

/* Inner Page Hero Banner */
.inner-hero {
  padding: 140px 0 80px 0;
  background: radial-gradient(circle at top right, rgba(4, 55, 70, 0.08), transparent 40%),
    radial-gradient(circle at bottom left, rgba(105, 181, 68, 0.08), transparent 40%),
    var(--light);
  border-bottom: 1px solid var(--light-gray);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-hero h1 {
  margin-bottom: 15px;
}

.inner-hero .breadcrumb {
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 500;
  margin-bottom: 0;
}

.inner-hero .breadcrumb-item a {
  color: var(--gray);
}

.inner-hero .breadcrumb-item a:hover {
  color: var(--primary);
}

.inner-hero .breadcrumb-item.active {
  color: var(--primary);
}

/* About Image Graphic Wrapper */
.about-image-wrapper {
  position: relative;
  display: inline-block;
  padding: 0 30px 30px 0;
}

.about-image-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, rgba(105, 181, 68, 0.1) 0%, rgba(4, 55, 70, 0.1) 100%);
  border-radius: 24px;
  z-index: 0;
}

.about-image-wrapper img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  transition: var(--transition-smooth);
}

.about-image-wrapper img:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18);
}