/* Modern CSS Reset & Variables */
:root {
  /* Brand Colors */
  --primary-color: #093f63;
  --primary-light: #0d5082;
  --primary-dark: #062d47;
  --secondary-color: #66ac47;
  --secondary-light: #7bc157;
  --secondary-dark: #4f8235;
  --accent-color: #f59e0b;

  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1050;
  --z-tooltip: 1070;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}
p {
  margin-bottom: var(--space-4);
  color: var(--gray-600);
  line-height: 1.7;
}
a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--secondary-dark);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

input::placeholder,
textarea::placeholder {
  color: rgb(0, 0, 0, 0.5);
  font-size: 1rem;
  opacity: 1; /* default is lower, around 0.54 */
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-slow);
}
.btn:hover::before {
  left: 100%;
}
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-dark)
  );
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--white);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn-outline:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
}

/* Logo */
.woodapple-logo{
  width: 128px
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  z-index: var(--z-fixed);
  transition: all var(--transition-normal);
  padding: var(--space-2) 0;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  padding: var(--space-1) 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}
.nav-link {
  position: relative;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.875rem;
  padding: var(--space-2) 0;
  transition: var(--transition-normal);
}
.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width var(--transition-normal);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: calc(var(--z-modal) + 1);
}
.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: var(--transition-normal);
  border-radius: 2px;
}
.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gray-50);
  padding-top: 100px;
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 15% 25%,
      rgba(102, 172, 71, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(9, 63, 99, 0.03) 0%,
      transparent 40%
    );
  background-size: 800px 800px;
}
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  opacity: 0.1;
  animation: float 12s ease-in-out infinite alternate;
}
.floating-shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-duration: 12s;
}
.floating-shape:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-duration: 15s;
  animation-delay: 2s;
}
.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 30%;
  left: 20%;
  animation-duration: 10s;
  animation-delay: 4s;
}
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  100% {
    transform: translateY(-40px) rotate(360deg) scale(1.1);
  }
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
  color: var(--secondary-color);
  font-size: 0.875rem;
  font-weight: 600;
  animation: slideInUp 0.8s ease-out;
  box-shadow: var(--shadow-sm);
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-6);
  line-height: 1.1;
  animation: slideInUp 0.8s ease-out 0.2s both;
}
.gradient-text {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: var(--space-8);
  line-height: 1.7;
  animation: slideInUp 0.8s ease-out 0.4s both;
  max-width: 550px;
}
.hero-stats {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  animation: slideInUp 0.8s ease-out 0.6s both;
}
.stat-item {
  text-align: left;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  display: block;
  font-family: var(--font-display);
}
.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: var(--space-1);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  animation: slideInUp 0.8s ease-out 0.8s both;
}
.hero-visual {
  position: relative;
  animation: slideInRight 0.8s ease-out 0.4s both;
}
.hero-image-container {
  position: relative;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  transform: rotate(3deg);
}
.hero-image-container:hover {
  transform: rotate(0deg) scale(1.02);
  transition: transform var(--transition-slow);
}
.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-3xl);
}
.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.floating-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-3);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: cardFloat 6s ease-in-out infinite alternate;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.8);
}
.card-1 {
  top: 10%;
  right: 2%;
  animation-delay: 0s;
}
.card-2 {
  bottom: 10%;
  left: 2%;
  animation-delay: 1s;
}
.card-3 {
  bottom: 40%;
  right: -5%;
  animation-delay: 2s;
  display: none;
}
@keyframes cardFloat {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}
.card-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.card-content {
  display: flex;
  flex-direction: column;
}
.card-title {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin: 0;
}
.card-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-dark);
  font-family: var(--font-display);
  margin: 0;
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Section Styles */
.section {
  padding: var(--space-20) 0;
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--secondary-color);
  color: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-4);
  font-size: 0.875rem;
  font-weight: 600;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}
.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Why Woodapple Section */
.why-woodapple {
  background: var(--gray-50);
  position: relative;
}
.why-woodapple::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(102, 172, 71, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(9, 63, 99, 0.02) 0%,
      transparent 50%
    );
  background-size: 800px 800px;
  pointer-events: none;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.feature-image {
  width: 100%;
  height: 200px;
  margin-bottom: var(--space-6);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.feature-card:hover .feature-img {
  transform: scale(1.05);
}
.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

/* Digital Services Section */
.digital-services {
  background: var(--white);
  position: relative;
}
.digital-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, var(--gray-50) 25%, transparent 25%),
    linear-gradient(-45deg, var(--gray-50) 25%, transparent 25%);
  background-size: 20px 20px;
  opacity: 0.3;
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(364px, 1fr));
  gap: var(--space-8);
}
.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  transform: scaleX(0);
  transition: transform var(--transition-normal);
  transform-origin: left;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  background: var(--white);
  border-color: var(--secondary-color);
}
.service-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-light)
  );
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
  line-height: 1.3;
}
.service-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  font-size: 0.95rem;
}
.service-features {
  list-style: none;
  margin-bottom: var(--space-6);
}
.service-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
}
.check-icon {
  color: var(--secondary-color);
  font-size: 1rem;
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--secondary-color);
  font-weight: 600;
  transition: all var(--transition-normal);
}
.service-link:hover {
  gap: var(--space-3);
  color: var(--secondary-dark);
}

/* Success Numbers Section */
.success-numbers {
  background: var(--primary-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.success-texture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(102, 172, 71, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(102, 172, 71, 0.05) 0%,
      transparent 50%
    ),
    linear-gradient(
      45deg,
      transparent 49%,
      rgba(255, 255, 255, 0.02) 50%,
      transparent 51%
    );
  background-size: 600px 600px, 800px 800px, 40px 40px;
  pointer-events: none;
  opacity: 0.5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}
.stat-card {
  text-align: center;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.stat-card-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--secondary-light);
  display: block;
  font-family: var(--font-display);
  margin-bottom: var(--space-2);
}
.stat-card-label {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-200);
}

/* Testimonials Section */
.testimonials {
  background: var(--gray-50);
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 30% 70%,
      rgba(102, 172, 71, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(9, 63, 99, 0.02) 0%,
      transparent 50%
    );
  background-size: 700px 700px;
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: "“";
  font-size: 8rem;
  color: var(--secondary-color);
  position: absolute;
  top: -2rem;
  left: 1rem;
  font-family: serif;
  opacity: 0.1;
  line-height: 1;
  z-index: 0;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}
.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: var(--space-6);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: auto;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
  flex-shrink: 0;
}
.author-info {
  text-align: left;
}
.author-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}
.author-title {
  font-size: 0.875rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin: 0;
}

/* Team Section */
.team-section {
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}
.team-member {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.team-member.hidden-member {
  display: none;
}
.team-member.visible-member {
  display: block;
}
.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}
.team-member:hover .member-photo {
  transform: scale(1.05);
}
.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(9, 63, 99, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
  padding: var(--space-4);
}
.team-member:hover .member-overlay {
  opacity: 1;
}
.member-social {
  display: flex;
  gap: var(--space-3);
  transform: translateY(10px);
  transition: transform var(--transition-normal) 0.1s;
}
.team-member:hover .member-social {
  transform: translateY(0);
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-normal);
}
.social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}
.member-info {
  padding: var(--space-6);
}
.member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-1);
}
.member-role {
  font-size: 0.875rem;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.team-actions {
  text-align: center;
  margin-top: var(--space-12);
}
#seeMoreBtn svg {
  transition: transform var(--transition-normal);
}
#seeMoreBtn.expanded svg {
  transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(102, 172, 71, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(102, 172, 71, 0.1) 0%,
      transparent 50%
    );
  background-size: 600px 600px;
}
.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(102, 172, 71, 0.1);
  animation: float 10s ease-in-out infinite alternate;
}
.cta-shape-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-duration: 12s;
}
.cta-shape-2 {
  width: 150px;
  height: 150px;
  top: 70%;
  right: 10%;
  animation-duration: 18s;
  animation-delay: 3s;
}
.cta-shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 15%;
  animation-duration: 15s;
  animation-delay: 6s;
}
.cta-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
  color: var(--secondary-light);
  font-size: 0.875rem;
  font-weight: 600;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-4);
  line-height: 1.2;
  color: var(--white);
}
.cta-description {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #fafafa;
}
.cta-trust p{
    color: #fafafa;
}
.cta-features {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--secondary-light);
  font-weight: 600;
}
.cta-actions {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.cta-btn-primary {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--secondary-dark)
  );
  box-shadow: 0 10px 30px rgba(102, 172, 71, 0.3);
}
.cta-btn-primary:hover {
  box-shadow: 0 15px 40px rgba(102, 172, 71, 0.4);
  transform: translateY(-3px);
}
.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}
.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.cta-trust {
  text-align: center;
  opacity: 0.8;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
}
.footer-main {
  padding: var(--space-16) 0 var(--space-8);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.footer-logo img{
  width: 320px;
}
.brand-description {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  font-size: 0.875rem;
}
.social-links {
  display: flex;
  gap: var(--space-3);
}
.footer .social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: var(--transition-normal);
}
.footer .social-link:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--space-6);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: var(--space-3);
}
.footer-links a {
  color: var(--gray-400);
  transition: var(--transition-normal);
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--secondary-light);
  padding-left: var(--space-2);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.contact-item svg {
  color: var(--secondary-light);
  margin-top: 4px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.contact-details a,
.contact-details span {
  color: var(--gray-400);
  transition: var(--transition-normal);
  font-size: 0.9rem;
  display: block;
}
.contact-details a:hover {
  color: var(--secondary-light);
}
.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding: var(--space-6) 0;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright {
  color: var(--gray-500);
  font-size: 0.875rem;
}
.copyright p{
    margin-bottom: 0;
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}
.footer-bottom-links a {
  color: var(--gray-500);
  font-size: 0.875rem;
  transition: var(--transition-normal);
}
.footer-bottom-links a:hover {
  color: var(--secondary-light);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: var(--z-fixed);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats,
  .hero-actions {
    justify-content: center;
  }
  .hero-image-container {
    transform: rotate(0);
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
  .brand-section,
  .contact-section {
    grid-column: 1 / -1;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    transition: right var(--transition-normal);
    z-index: var(--z-modal);
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-links {
    flex-direction: column;
    gap: var(--space-8);
  }
  .nav-link {
    font-size: 1.25rem;
  }
  .nav-menu .btn {
    margin-top: var(--space-8);
  }
  .nav-toggle {
    display: flex;
  }
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions {
    flex-direction: column;
  }
  .features-grid,
  .testimonials-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .cta-features {
    flex-direction: column;
    gap: var(--space-4);
  }
  .cta-actions {
    flex-direction: column;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: left; /* Changed from center to left */
  }
  .footer-logo,
  .social-links {
    justify-content: flex-start; /* Changed from center to flex-start */
  }
  .contact-item {
    justify-content: flex-start; /* Changed from center to flex-start */
    align-items: flex-start; /* Changed from center to flex-start */
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: var(--space-4);
    text-align: left; /* Added left alignment */
    align-items: flex-start;
  }
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  .author-info {
    text-align: center;
  }
  .stat-item {
  text-align: center;
  }
  .business-issues-cta .cta-text p{
    text-align: start;
  }

}

@media (max-width: 480px) {
  .floating-card {
    display: none;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .cta-title {
    font-size: 1.75rem;
  }
  .feature-card,
  .service-card {
    padding: var(--space-6);
  }
}

::selection {
  background: var(--secondary-color);
  color: var(--white);
}

/* --- NEW STYLES FOR SERVICES & PRODUCTS PAGES --- */
/* --- NEW STYLES FOR SERVICES & PRODUCTS PAGES (V2 - Interactive) --- */

/* Page Header */
/* --- NEW V2 PAGE HEADER --- */
.page-header-v2 {
  position: relative;
  padding: var(--space-24) 0 var(--space-16);
  background-color: var(--primary-dark);
  overflow: hidden;
  color: var(--white);
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-image: 
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%),
    radial-gradient(circle at 15% 25%, rgba(102, 172, 71, 0.08) 0%, transparent 40%), 
    radial-gradient(circle at 85% 75%, rgba(102, 172, 71, 0.05) 0%, transparent 40%);
  background-size: auto, 800px 800px, 800px 800px;
}

/* Re-using floating shapes from hero, but smaller and slower */
.page-header-v2 .floating-shapes {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.page-header-v2 .floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  opacity: 0.07;
  animation: float 20s ease-in-out infinite alternate;
}
.page-header-v2 .floating-shape:nth-child(1) { width: 60px; height: 60px; top: 15%; left: 20%; animation-duration: 20s; }
.page-header-v2 .floating-shape:nth-child(2) { width: 100px; height: 100px; top: 70%; right: 10%; animation-duration: 25s; }
.page-header-v2 .floating-shape:nth-child(3) { display: none; } /* Only two for less clutter */


.page-header-v2 .container {
  position: relative;
  z-index: 2;
}

.page-header-content {
  text-align: left;
  max-width: 800px;
}

.breadcrumbs {
  margin-bottom: var(--space-4);
  font-size: 0.9rem;
  font-weight: 500;
}
.breadcrumbs a {
  color: var(--gray-300);
  transition: color var(--transition-fast);
}
.breadcrumbs a:hover {
  color: var(--white);
}
.breadcrumb-separator {
  margin: 0 var(--space-2);
  color: var(--gray-500);
}
.breadcrumbs span {
  color: var(--secondary-light);
}

.page-header-v2 .page-title {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.page-header-v2 .page-subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  max-width: 650px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-header-v2 {
    padding: var(--space-20) 0 var(--space-12);
  }
  .page-header-content {
    text-align: center;
    margin: 0 auto;
  }
  .breadcrumbs {
    text-align: center;
  }
  .page-header-v2 .page-title {
    font-size: 2.5rem;
  }
  .page-header-v2 .page-subtitle {
    font-size: 1.1rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Services Page - Interactive Layout */
.services-page {
  background-color: var(--white);
}

.services-interactive-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16);
  align-items: flex-start;
}

.services-tabs-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 120px; /* Adjust based on navbar height */
}

.service-tabs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.service-tab-item {
  padding: var(--space-4) var(--space-5);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gray-600);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  border-left: 4px solid transparent;
}

.service-tab-item:hover {
  background-color: var(--gray-50);
  color: var(--primary-dark);
}

.service-tab-item.active {
  background-color: var(--secondary-light);
  color: var(--white);
  border-left-color: var(--secondary-dark);
  transform: translateX(10px);
}

.services-content-wrapper {
  min-height: 500px;
}

.service-visual {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-8);
  box-shadow: var(--shadow-lg);
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.service-content-pane {
  display: none;
  animation: fadeIn 0.6s ease-in-out;
}
.service-content-pane.active {
  display: block;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.service-detail-title {
  font-size: 2.25rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-4);
}
.service-detail-purpose {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: var(--space-8);
  max-width: 90%;
}
.process-steps-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: var(--space-3);
}
.process-steps {
  list-style: none;
  position: relative;
  padding-left: var(--space-8);
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--gray-200);
}
.step-item {
  position: relative;
  margin-bottom: var(--space-6);
}
.step-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary-color);
  border: 2px solid var(--white);
  z-index: 1;
}
.step-item h4 {
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--space-1);
}
.step-item p {
  color: var(--gray-600);
  margin: 0;
}
.service-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
}
.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-weight: 500;
  color: var(--gray-700);
  background: var(--gray-50);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
}
.service-features-list .check-icon {
  flex-shrink: 0;
  color: var(--secondary-color);
  margin-top: 4px;
}
.sticky-cta {
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
}
.sticky-cta h4 { font-size: 1.25rem; color: var(--primary-dark); }
.sticky-cta p { font-size: 0.9rem; margin-bottom: var(--space-6); }

/* Products Page - ZigZag Layout */
.products-page {
  background: var(--white);
}

.product-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-bottom: var(--space-24);
}

.product-entry:nth-child(even) {
  direction: rtl; /* Reverses the order of grid items */
}
.product-entry:nth-child(even) > * {
  direction: ltr; /* Resets text direction for content */
}

.product-image-wrapper {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-entry:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.product-tag {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-4);
}

.product-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: var(--space-4);
}

.product-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: var(--space-6);
}

.product-features {
  list-style: none;
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.product-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 500;
}
.product-features .check-icon {
  color: var(--secondary-color);
  flex-shrink: 0;
}


/* Responsive for New Pages */
@media (max-width: 992px) {
  .services-interactive-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .services-tabs-wrapper {
    position: static;
    order: 2;
  }
  .services-content-wrapper {
    order: 1;
  }
  .service-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: var(--space-3);
    gap: var(--space-3);
    margin-bottom: var(--space-6);
  }
  .service-tab-item {
    white-space: nowrap;
    border-bottom: 4px solid transparent;
    border-left: none;
    min-width: 200px;
    text-align: center;
  }
  .service-tab-item.active {
    border-bottom-color: var(--secondary-dark);
    border-left-color: transparent;
    transform: none;
    color: var(--secondary-dark);
    background: rgba(102, 172, 71, 0.1);
  }
  .sticky-cta {
    order: 3;
  }
  .product-entry, .product-entry:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  .service-tabs {
    flex-direction: column;
    overflow-x: visible;
  }
  .service-tab-item {
    min-width: auto;
    white-space: normal;
    border-bottom: none;
    border-left: 4px solid transparent;
  }
  .service-tab-item.active {
    border-left-color: var(--secondary-dark);
    border-bottom-color: transparent;
  }
  .service-visual {
    height: 250px;
  }
  .product-image-wrapper {
    height: 250px;
  }
}

/* About Page Styles */
.page-header {
  position: relative;
  padding: var(--space-24) 0 var(--space-16);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: var(--white);
  overflow: hidden;
}

.page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.page-header-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(9, 63, 99, 0.9) 0%, rgba(13, 80, 130, 0.8) 100%);
}

.page-header-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(102, 172, 71, 0.1) 0%, transparent 50%);
  background-size: 600px 600px;
}

.page-header-content {
  position: relative;
  z-index: 2;
  /* text-align: center; */
  max-width: 800px;
  /* margin: 0 auto; */
}

.breadcrumb {
  margin-bottom: var(--space-4);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gray-300);
  text-decoration: none;
}

.breadcrumb-separator {
  margin: 0 var(--space-2);
  color: var(--gray-500);
}

.breadcrumb-current {
  color: var(--secondary-light);
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: var(--white);
}

.page-description {
  font-size: 1.25rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* Company Story Section */
.company-story {
  padding: var(--space-20) 0;
  background: var(--gray-50);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: flex-start;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--secondary-color);
  color: var(--white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-2xl);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.story-highlights {
  margin-top: var(--space-8);
}

.highlight-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.highlight-content h4 {
  margin-bottom: var(--space-2);
  color: var(--gray-900);
}

.highlight-content p {
  color: var(--gray-600);
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-8);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--secondary-color);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: var(--space-2);
}

.timeline-content h4 {
  margin-bottom: var(--space-2);
  color: var(--gray-900);
}

.timeline-content p {
  color: var(--gray-600);
  margin: 0;
}

/* Mission Vision Values */
.mission-vision-values {
  padding: var(--space-20) 0;
  background: var(--white);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.mvv-card {
  background: var(--gray-50);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid var(--gray-200);
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  background: var(--white);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--white);
  font-size: 2rem;
}

.mvv-card h3 {
  margin-bottom: var(--space-4);
  color: var(--gray-900);
}

.values-list {
  list-style: none;
  text-align: left;
}

.values-list li {
  margin-bottom: var(--space-3);
  color: var(--gray-700);
}

.values-list strong {
  color: var(--secondary-color);
}

/* Team Section Enhancements */
.team-category {
  margin-bottom: var(--space-16);
}

.category-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-8);
  text-align: center;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
}

.team-member.featured {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-8);
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin-bottom: var(--space-12);
  box-shadow: var(--shadow-lg);
}

.member-bio {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.member-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.expertise-tag {
  background: var(--secondary-color);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Company Stats */
.company-stats {
  padding: var(--space-20) 0;
  background: var(--primary-color);
  color: var(--white);
}

.stats-title {
  text-align: center;
  margin-bottom: var(--space-12);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.stat-card {
  text-align: center;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--secondary-light);
  margin-bottom: var(--space-4);
}

.stat-number-2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.stat-description {
  font-size: 0.875rem;
  color: var(--gray-300);
}

/* Responsive for About Page */
@media (max-width: 992px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .team-member.featured {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .timeline {
    padding-left: var(--space-6);
  }
  
  .timeline::before {
    left: 5px;
  }
  
  .timeline-item::before {
    left: -24px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: var(--space-20) 0 var(--space-12);
  }
  
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-member.featured {
    padding: var(--space-6);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

/* Contact Page Layout */
.contact-page {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Contact Information Section */
.contact-info-section {
  position: sticky;
  top: 100px;
}

/* .contact-details {
  margin: 40px 0;
} */

/* .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
} */

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-content p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-content a:hover {
  color: var(--secondary);
}

.contact-note {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* QR Code Section */
.qr-section {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  margin: 40px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.qr-content {
  display: flex;
  gap: 24px;
  align-items: center;
}

.qr-text {
  flex: 1;
}

.qr-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.qr-text p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.qr-instructions {
  background: #f8fafc;
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.qr-instructions p {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.qr-instructions ol {
  margin: 0;
  padding-left: 20px;
  color: var(--text-light);
}

.qr-instructions li {
  margin-bottom: 4px;
  font-size: 14px;
}

.qr-code {
  flex-shrink: 0;
}

.qr-image {
  width: 120px;
  height: 120px;
  border: 2px solid #e2e8f0;
}

/* Company Profile Section */
.company-profile-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 20px;
  padding: 32px;
  color: var(--white);
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}

.profile-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.profile-content p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.download-btn {
  background: var(--white);
  color: var(--primary);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

/* Contact Form Section */
.contact-form-section {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-header p {
  color: var(--text-light);
  font-size: 16px;
}

/* Form Styles */
.contact-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  /* margin-bottom: 24px; */
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: flex;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

/* Checkbox Group */
.checkbox-group {
  margin: 32px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  opacity: 0;
  position: absolute;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 18px 32px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

/* Business Issues CTA */
.business-issues-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  padding: 60px 0;
  color: #fff;
}

.business-issues-cta .cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.business-issues-cta .cta-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  text-align: start;
}

.business-issues-cta .cta-text p {
  font-size: 18px;
  opacity: 0.9;
  color: #fafafa;
}

.business-issues-cta .btn {
  color: var(--primary);
  border: none;
  white-space: nowrap;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.business-issues-cta .btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

/* Map Section */
.map-section {
  padding: 80px 0 0;
  background: var(--white);
}

.map-container {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-info-section {
    position: static;
  }
  
  .qr-content {
    flex-direction: column;
    text-align: center;
  }
  
  .company-profile-section {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 60px 0;
  }
  
  .contact-form-section {
    padding: 32px 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
/*   
  .contact-item {
    padding: 20px;
  } */
  
  .qr-section,
  .company-profile-section {
    padding: 24px;
  }
  
  .business-issues-cta .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .business-issues-cta .cta-text h2 {
    font-size: 24px;
  }
  
  .form-header h3 {
    font-size: 24px;
  }

  .qr-instructions li{
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* .contact-item {
    flex-direction: column;
    text-align: center;
  } */
  
  .contact-icon {
    align-self: center;
  }
  
  .qr-image {
    width: 100px;
    height: 100px;
  }
}

.loading-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

  .toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #323232;
    color: #fff;
    padding: 16px 24px;
    border-radius: 4px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
  }

  .toast.show {
    display: block;
    opacity: 1;
  }

  .toast.success {
    background-color: #28a745;
  }

  .toast.error {
    background-color: #dc3545;
  }

    .loader {
    border: 2px solid #ccc;
    border-top: 2px solid #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .custom-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  max-width: 90%;
  background-color: #333;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  animation: toastIn 0.4s forwards;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.custom-toast.hide {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}

.toast-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.toast-message {
  flex-grow: 1;
}

.custom-toast.success {
  background-color: #28a745;
}

.custom-toast.error {
  background-color: #dc3545;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

