/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0056b3;
  --primary-dark: #003d80;
  --primary-light: #00a8e8;
  --accent: #00a8e8;
  --text: #333333;
  --text-light: #666666;
  --bg: #ffffff;
  --bg-light: #f0f7ff;
  --bg-dark: #0a1628;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 86, 179, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 86, 179, 0.15);
  --shadow-glow: 0 0 20px rgba(0, 168, 232, 0.3);
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* ===== DARK MODE VARIABLES ===== */
body.dark-mode {
  --primary: #4da3ff;
  --primary-dark: #0056b3;
  --primary-light: #80c5ff;
  --accent: #4da3ff;
  --text: #e0e0e0;
  --text-light: #a0a0a0;
  --bg: #0a1628;
  --bg-light: #1a2744;
  --bg-dark: #050d1a;
  --white: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-full {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
}

/* ===== DARK MODE TOGGLE ===== */
.dark-mode-toggle {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  z-index: 1001;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-mode-toggle:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.toggle-sun {
  display: block;
}

.toggle-moon {
  display: none;
}

body.dark-mode .toggle-sun {
  display: none;
}

body.dark-mode .toggle-moon {
  display: block;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
  }
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--bg);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .dropdown-menu {
  border-color: rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0.5rem 0;
  list-style: none;
}

body.dark-mode .dropdown-divider {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1002; /* ensure it's above menu */
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  /* Hamburger to X animation when active */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.hero-motto {
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 2rem;
  min-height: 1.6em;
}

.typing-effect::after {
  content: "|";
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

/* ===== STATS ===== */
.stats {
  background: var(--bg-light);
  padding: 60px 0;
  transition: background 0.3s ease;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.counter {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  display: block;
}

/* ===== FOCUS AREAS ===== */
.focus-areas {
  padding: 80px 0;
  background: var(--bg);
  transition: background 0.3s ease;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.focus-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--bg-light);
  transition: var(--transition);
  border: 1px solid transparent;
}

.focus-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.focus-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.focus-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.focus-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  padding: 80px 0;
  background: var(--bg-light);
  transition: background 0.3s ease;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary-light);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-card:hover .service-link {
  color: var(--accent);
}

/* ===== WHY US ===== */
.why-us {
  padding: 80px 0;
  background: var(--bg);
  transition: background 0.3s ease;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-item {
  padding: 2rem;
  border-left: 4px solid var(--primary);
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: var(--transition);
}

.why-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.why-item h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.why-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  color: var(--white);
  position: relative;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-size: 6rem;
  line-height: 1;
  opacity: 0.3;
  display: block;
  margin-bottom: -2rem;
}

.testimonial blockquote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial cite {
  font-size: 0.95rem;
  opacity: 0.9;
  font-style: normal;
  font-weight: 500;
}

/* Testimonial Slider */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: var(--bg-light);
  text-align: center;
  transition: background 0.3s ease;
}

.cta-banner h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

.page-header p {
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* ===== CONTENT SECTIONS ===== */
.content {
  padding: 60px 0;
  background: var(--bg);
  transition: background 0.3s ease;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-brand .motto {
  font-style: italic;
  color: var(--accent);
  margin-top: 1rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links ul,
.footer-contact p {
  list-style: none;
}

.footer-links a,
.footer-contact a {
  color: #aaa;
  font-size: 0.9rem;
  display: block;
  padding: 0.3rem 0;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  text-align: center;
  color: #777;
  font-size: 0.85rem;
}

/* ===== ABOUT PAGE ===== */
.about-overview {
  padding: 80px 0;
  background: var(--bg);
  transition: background 0.3s ease;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-contact-bar {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about-stats-box {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.stat-row {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-big {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.95rem;
  opacity: 0.9;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Vision */
.vision-section {
  padding: 80px 0;
  background: var(--bg-light);
  transition: background 0.3s ease;
}

.vision-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vision-box h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.vision-text {
  font-size: 1.3rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
}

/* Values */
.values-section {
  padding: 80px 0;
  background: var(--bg);
  transition: background 0.3s ease;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Commitment */
.commitment-section {
  padding: 80px 0;
  background: var(--bg-light);
  transition: background 0.3s ease;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.commitment-item {
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.commitment-item:hover {
  transform: translateX(10px);
}

.commitment-item h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.commitment-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Why Us Section */
.why-us-section {
  padding: 80px 0;
  background: var(--bg);
  transition: background 0.3s ease;
}

.why-us-box {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  padding: 4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.why-us-box h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-us-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.why-us-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.why-us-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.why-us-item p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.why-us-cta {
  text-align: center;
}

.why-us-cta .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.why-us-cta .btn-primary:hover {
  background: var(--bg-light);
}

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail {
  max-width: 900px;
  margin: 0 auto;
}

.service-intro {
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--bg-light);
}

.service-features h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-cta {
  text-align: center;
  padding: 3rem 0;
}

.service-cta .btn {
  padding: 14px 36px;
  font-size: 1.05rem;
}

/* ===== COMMITMENT BOX ===== */
.commitment-box {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  margin: 3rem 0;
}

.commitment-box h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.commitment-list {
  list-style: none;
  padding: 0;
}

.commitment-list li {
  padding: 0.75rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.commitment-list li:last-child {
  border-bottom: none;
}

/* ===== PROCESS TIMELINE ===== */
.process-section {
  padding: 60px 0;
  background: var(--bg-light);
  margin: 3rem 0;
  border-radius: var(--radius);
  transition: background 0.3s ease;
}

.process-section .section-title {
  margin-bottom: 3rem;
}

.process-timeline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.process-step {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0.5rem;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.process-step h3 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0 0.5rem;
}

/* ===== TEAM PAGE ===== */
.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 0;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.photo-placeholder {
  width: 100px;
  height: 100px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
}

.team-info {
  padding: 2rem;
}

.team-info h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-role {
  display: block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.team-credentials {
  list-style: none;
  text-align: left;
  padding: 0;
}

.team-credentials li {
  padding: 0.5rem 0;
  color: var(--text-light);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--bg-light);
}

.team-credentials li:last-child {
  border-bottom: none;
}

/* ===== CLIENTS PAGE ===== */
.clients-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.client-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary-light);
}

.client-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.client-card:hover .client-icon {
  transform: scale(1.2);
}

.client-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.client-industry {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Testimonial on Clients Page */
.testimonial-section {
  margin: 4rem 0;
}

.testimonial-box {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-box .quote-mark {
  font-size: 5rem;
  line-height: 1;
  opacity: 0.3;
  display: block;
  margin-bottom: -1.5rem;
}

.testimonial-box blockquote {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-box cite {
  font-size: 0.95rem;
  opacity: 0.9;
  font-style: normal;
  font-weight: 500;
}

/* Partnership Section */
.partnership-section {
  margin-top: 4rem;
  text-align: center;
}

.partnership-section h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.partnership-item {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  transition: var(--transition);
}

.partnership-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.partnership-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.partnership-item h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.partnership-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2,
.contact-form-wrapper h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-item h4 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.info-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.info-item a {
  color: var(--primary);
  font-weight: 500;
}

.info-item a:hover {
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #128c7e;
}

.btn-call {
  background: var(--primary);
  color: var(--white);
}

.btn-call:hover {
  background: var(--primary-dark);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--radius);
  transition: background 0.3s ease;
}

.contact-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg);
  color: var(--text);
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
  border-color: rgba(255, 255, 255, 0.2);
}

.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(0, 86, 179, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Success & Error Messages */
.success-message {
  text-align: center;
  padding: 3rem 2rem;
}

.success-message h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.error-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

body.dark-mode .error-box {
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
}

.error-box p {
  color: #dc2626;
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

body.dark-mode .error-box p {
  color: #f87171;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    display: none;
    background: var(--bg-light);
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-contact-bar {
    flex-direction: column;
  }

  .about-contact-bar .btn {
    width: 100%;
    text-align: center;
  }

  .about-stats-box {
    padding: 1.5rem;
  }

  .why-us-box {
    padding: 2rem;
  }

  .vision-text {
    font-size: 1.1rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    max-width: 100%;
    width: 100%;
    margin: 0.5rem 0;
  }

  .process-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
    text-align: center;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-box {
    padding: 2rem;
  }

  .testimonial-box blockquote {
    font-size: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .focus-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonial blockquote {
    font-size: 1.1rem;
  }

  .quote-mark {
    font-size: 4rem;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .dark-mode-toggle {
    bottom: 100px;
    right: 15px;
    width: 45px;
    height: 45px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    display: none;
    background: var(--bg-light);
    margin-top: 0.5rem;
    border-radius: var(--radius);
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown > a::after {
    content: " ▾";
    transition: transform 0.3s ease;
  }

  .dropdown.active > a::after {
    content: " ▴";
  }
}

/* ===== TEAM PREVIEW — CARD STYLE (LARGER) ===== */
.team-preview-section {
  padding: 100px 0;
  background: var(--bg);
  transition: background 0.3s ease;
}

.team-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.team-preview-card {
  text-align: center;
  background: var(--bg-light);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid transparent;
}

.team-preview-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.team-preview-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
}

.team-preview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.team-preview-card:hover .team-preview-photo img {
  transform: scale(1.08);
}

.team-preview-info {
  padding: 2rem 1.5rem;
}

.team-preview-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.team-preview-card span {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
}

.team-preview-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ===== MOBILE TEAM PREVIEW ===== */
@media (max-width: 768px) {
  .team-preview-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .team-preview-photo {
    height: 320px;
  }
}

/* ===== MOBILE TEAM PREVIEW ===== */
@media (max-width: 768px) {
  .team-preview-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SERVICES IMAGE SLIDER ===== */
.services-slider-section {
  padding: 80px 0;
  background: var(--bg);
}

.services-slider-container {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 60px;
}

.services-slider-wrapper {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.services-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.services-slide {
  min-width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.services-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 61, 128, 0.95) 0%,
    rgba(0, 86, 179, 0.8) 50%,
    transparent 100%
  );
  color: white;
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.slide-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.slide-overlay p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
  background: white;
  color: var(--primary);
  border-radius: var(--radius);
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.btn-sm:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.slider-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.slider-dot:hover {
  background: var(--primary-light);
}

/* ===== MOBILE SLIDER ===== */
@media (max-width: 768px) {
  .services-slider-container {
    padding: 0 40px;
  }

  .services-slide {
    height: 350px;
  }

  .slide-overlay {
    padding: 3rem 1.5rem 1.5rem;
  }

  .slide-overlay h3 {
    font-size: 1.4rem;
  }

  .slide-overlay p {
    font-size: 0.95rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .slider-btn svg {
    width: 20px;
    height: 20px;
  }
}
