/* KAM GROUP SARL — Brand Theme */
:root {
  --kam-royal: #1B4B9E;
  --kam-navy: #0D2D5E;
  --kam-sky: #4A90D9;
  --kam-light: #E8F0FA;
  --kam-silver: #A8B4C4;
  --kam-white: #FFFFFF;
  --kam-gradient: linear-gradient(135deg, var(--kam-navy) 0%, var(--kam-royal) 50%, var(--kam-sky) 100%);
  --kam-shadow: 0 10px 40px rgba(13, 45, 94, 0.15);
  --kam-shadow-lg: 0 20px 60px rgba(13, 45, 94, 0.25);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: #2c3e50;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* Top Bar */
.top-bar {
  background: var(--kam-navy);
  color: var(--kam-white);
  font-size: 0.8rem;
  padding: 6px 0;
  z-index: 1050;
}

.top-bar a {
  color: var(--kam-silver);
  text-decoration: none;
  transition: var(--transition);
}

.top-bar a:hover { color: var(--kam-white); }

#google_translate_element {
  display: inline-block;
  vertical-align: middle;
}

#google_translate_element .goog-te-gadget { font-size: 0 !important; }
#google_translate_element .goog-te-gadget .goog-te-combo {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.75rem;
}

.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

.lang-toggle .btn-lang {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 2px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle .btn-lang.active,
.lang-toggle .btn-lang:hover {
  background: var(--kam-sky);
  border-color: var(--kam-sky);
}

/* Navbar */
.navbar-kam {
  background: var(--kam-navy) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  padding: 0.5rem 0;
  transition: var(--transition);
  border-bottom: 3px solid var(--kam-sky);
  z-index: 1040;
  position: sticky;
  top: 0;
}

.navbar-kam.scrolled {
  padding: 0.35rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.navbar-kam .navbar-brand {
  background: #fff;
  border-radius: 10px;
  padding: 5px 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--kam-sky);
  transition: var(--transition);
  flex-shrink: 0;
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
}

.navbar-kam .navbar-brand:hover {
  box-shadow: 0 6px 20px rgba(74, 144, 217, 0.4);
  transform: translateY(-1px);
}

.navbar-kam .navbar-brand img {
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.navbar-kam.scrolled .navbar-brand img { height: 46px; }

/* Force menu visible on desktop */
@media (min-width: 992px) {
  .navbar-kam .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }

  .navbar-kam .navbar-nav {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
  }
}

.navbar-kam .navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 7px 11px;
  z-index: 10;
  flex-shrink: 0;
}

.navbar-kam .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.5);
}

.navbar-kam .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.6em;
  height: 1.6em;
}

.navbar-kam .nav-item {
  position: relative;
}

.navbar-kam .nav-link {
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.55rem 0.9rem !important;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
}

/* Hover background glow */
.navbar-kam .nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74, 144, 217, 0.35), rgba(74, 144, 217, 0.1));
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  z-index: -1;
}

/* Underline animation */
.navbar-kam .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--kam-sky);
  box-shadow: 0 0 8px var(--kam-sky);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-kam .nav-link:hover {
  color: #fff !important;
  transform: translateY(-3px);
  text-shadow: 0 0 12px rgba(74, 144, 217, 0.6);
}

.navbar-kam .nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.navbar-kam .nav-link:hover::after {
  width: 60%;
}

.navbar-kam .nav-link.active {
  color: var(--kam-sky) !important;
  background: rgba(74, 144, 217, 0.15);
}

.navbar-kam .nav-link.active::after {
  width: 60%;
}

.navbar-kam .nav-link:active {
  transform: translateY(0) scale(0.96);
  transition-duration: 0.1s;
}

/* Click ripple */
.nav-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: navRipple 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 0;
}

@keyframes navRipple {
  to { transform: scale(2.8); opacity: 0; }
}

/* CTA button in navbar */
.navbar-kam .btn-kam-nav {
  background: var(--kam-gradient);
  color: #fff !important;
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.82rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(27, 75, 158, 0.4);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.navbar-kam .btn-kam-nav:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 25px rgba(74, 144, 217, 0.5);
  color: #fff !important;
}

.navbar-kam .btn-kam-nav:active {
  transform: translateY(0) scale(0.97);
}

/* Mobile drawer menu — independent from Bootstrap collapse */
.kam-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  visibility: hidden;
  pointer-events: none;
}

.kam-mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
}

.kam-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.kam-mobile-menu.open .kam-mobile-backdrop {
  opacity: 1;
}

.kam-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: linear-gradient(180deg, var(--kam-navy) 0%, #0a2347 100%);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
  border-left: 3px solid var(--kam-sky);
}

.kam-mobile-menu.open .kam-mobile-panel {
  transform: translateX(0);
}

.kam-mobile-menu.open .kam-mobile-link {
  animation: mobileLinkIn 0.4s ease both;
}

.kam-mobile-menu.open .kam-mobile-link:nth-child(1) { animation-delay: 0.08s; }
.kam-mobile-menu.open .kam-mobile-link:nth-child(2) { animation-delay: 0.14s; }
.kam-mobile-menu.open .kam-mobile-link:nth-child(3) { animation-delay: 0.2s; }
.kam-mobile-menu.open .kam-mobile-link:nth-child(4) { animation-delay: 0.26s; }
.kam-mobile-menu.open .kam-mobile-cta { animation: mobileLinkIn 0.4s ease 0.32s both; }

@keyframes mobileLinkIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.kam-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(74, 144, 217, 0.3);
  background: rgba(0, 0, 0, 0.15);
}

.kam-mobile-head img {
  height: 44px;
  max-width: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
}

.kam-mobile-close {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.kam-mobile-close:hover {
  background: var(--kam-sky);
  border-color: var(--kam-sky);
  transform: rotate(90deg);
}

.kam-mobile-nav {
  padding: 1rem 0;
  flex: 1;
}

.kam-mobile-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff !important;
  text-decoration: none;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.kam-mobile-link i {
  font-size: 1.2rem;
  color: var(--kam-sky);
  width: 24px;
  text-align: center;
}

.kam-mobile-link:hover,
.kam-mobile-link.active {
  background: rgba(74, 144, 217, 0.2);
  padding-left: 2rem;
  color: var(--kam-sky) !important;
}

.kam-mobile-link.active {
  border-left: 4px solid var(--kam-sky);
}

.kam-mobile-cta {
  display: block;
  margin: 1.25rem 1.5rem 1.5rem;
  padding: 1rem;
  background: var(--kam-gradient);
  color: #fff !important;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(27, 75, 158, 0.5);
  transition: var(--transition);
}

.kam-mobile-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(74, 144, 217, 0.5);
  color: #fff !important;
}

.kam-mobile-contact {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.kam-mobile-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin: 0.75rem 0 0;
}

.kam-mobile-contact a {
  color: var(--kam-sky);
  text-decoration: none;
}

/* Mobile: hide Bootstrap collapse, show custom toggler */
@media (max-width: 991px) {
  .navbar-kam .navbar-collapse {
    display: none !important;
  }

  .navbar-kam .navbar-toggler.kam-menu-open {
    border-color: var(--kam-sky);
    background: rgba(74, 144, 217, 0.2);
  }

  .navbar-kam .navbar-brand {
    margin-right: auto;
    max-width: calc(100% - 56px);
  }

  .navbar-kam .navbar-brand img {
    height: 44px;
    max-width: 125px;
  }
}

/* Desktop: hide mobile drawer trigger styling issues */
@media (min-width: 992px) {
  .kam-mobile-menu {
    display: none !important;
  }

  .navbar-kam .navbar-toggler {
    display: none !important;
  }
}

.btn-kam {
  background: var(--kam-gradient);
  color: #fff !important;
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(27, 75, 158, 0.3);
}

.btn-kam:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27, 75, 158, 0.4);
  color: #fff;
}

.btn-kam-outline {
  background: transparent;
  color: var(--kam-royal) !important;
  border: 2px solid var(--kam-royal);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-kam-outline:hover {
  background: var(--kam-royal);
  color: #fff !important;
  transform: translateY(-3px);
}

/* Hero */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--kam-gradient);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-globe {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(74, 144, 217, 0.3), rgba(13, 45, 94, 0.1));
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: globeRotate 30s linear infinite;
}

.hero-globe::before {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.hero-globe::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.3);
  animation: globeSpin 8s linear infinite;
}

@keyframes globeRotate {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

@keyframes globeSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #fff, var(--kam-silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-slogan {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
  border-left: 4px solid var(--kam-sky);
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
}

.hero-stat .label {
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 6s ease-in-out infinite;
}

.shape-1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
.shape-2 { width: 120px; height: 120px; bottom: 15%; left: 25%; animation-delay: 2s; }
.shape-3 { width: 60px; height: 60px; top: 40%; right: 30%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Page Hero (inner pages) */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  background: var(--kam-gradient);
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.page-hero .breadcrumb-item.active { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* Sections */
.section-padding { padding: 100px 0; }

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle {
  color: var(--kam-sky);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  color: var(--kam-navy);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 15px;
}

.section-title .divider {
  width: 60px;
  height: 4px;
  background: var(--kam-gradient);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-title p {
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(27, 75, 158, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--kam-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--kam-shadow-lg);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--kam-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}

.service-icon i {
  font-size: 2rem;
  color: var(--kam-royal);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--kam-gradient);
  transform: rotateY(180deg);
}

.service-card:hover .service-icon i {
  color: #fff;
  transform: rotateY(-180deg);
}

.service-card h3 {
  font-size: 1rem;
  color: var(--kam-navy);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Hexagon service icons (logo style) */
.hex-icon {
  width: 70px;
  height: 80px;
  margin: 0 auto 1.5rem;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--kam-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hex-icon i {
  color: #fff;
  font-size: 1.6rem;
}

.service-card:hover .hex-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--kam-shadow);
}

/* About */
.about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  border-radius: 20px;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--kam-gradient);
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--kam-shadow-lg);
}

.about-badge .year {
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.feature-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border-radius: 12px;
  transition: var(--transition);
}

.feature-box:hover {
  background: var(--kam-light);
  transform: translateX(10px);
}

.feature-box .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--kam-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

/* Values */
.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--kam-shadow);
  transition: var(--transition);
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--kam-shadow-lg);
}

.value-card .value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--kam-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card .value-icon i {
  font-size: 1.8rem;
  color: var(--kam-royal);
}

/* CTA */
.cta-section {
  background: var(--kam-gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section h2 { color: #fff; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.85); position: relative; z-index: 1; }

/* Counter */
.counter-section {
  background: var(--kam-navy);
  padding: 60px 0;
}

.counter-item {
  text-align: center;
  color: #fff;
}

.counter-item .counter {
  font-size: 3rem;
  font-weight: 800;
  color: var(--kam-sky);
  display: block;
}

.counter-item .counter-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Contact */
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--kam-shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(27, 75, 158, 0.08);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--kam-shadow-lg);
}

.contact-card .contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

.contact-card .contact-icon.phone { background: linear-gradient(135deg, #1B4B9E, #4A90D9); }
.contact-card .contact-icon.email { background: linear-gradient(135deg, #E74C3C, #C0392B); }
.contact-card .contact-icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.contact-card .contact-icon.location { background: linear-gradient(135deg, #F39C12, #E67E22); }

.contact-card h3 {
  color: var(--kam-navy);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--kam-royal);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-card a:hover { color: var(--kam-sky); }

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--kam-shadow-lg);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Service Detail */
.service-detail-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--kam-shadow);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.service-detail-card:hover { box-shadow: var(--kam-shadow-lg); }

.service-detail-header {
  background: var(--kam-gradient);
  padding: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.service-detail-header .hex-icon {
  margin: 0;
  flex-shrink: 0;
}

.service-detail-body {
  padding: 2rem;
}

.service-detail-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-body ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.service-detail-body ul li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--kam-sky);
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--kam-light);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
  padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--kam-royal);
  border: 4px solid var(--kam-light);
  border-radius: 50%;
  top: 0;
}

.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

.timeline-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--kam-shadow);
}

/* Team / Expertise */
.expertise-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--kam-shadow);
  transition: var(--transition);
  height: 100%;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--kam-shadow-lg);
}

.expertise-card .expertise-years {
  font-size: 3rem;
  font-weight: 800;
  background: var(--kam-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer */
.footer-kam {
  background: var(--kam-navy);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-kam h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-kam h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--kam-sky);
  border-radius: 2px;
}

.footer-kam a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: block;
  padding: 4px 0;
}

.footer-kam a:hover { color: var(--kam-sky); padding-left: 5px; }

.footer-kam .social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--transition);
  padding: 0;
}

.footer-kam .social-links a:hover {
  background: var(--kam-sky);
  color: #fff;
  padding-left: 0;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.85rem;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--kam-gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--kam-shadow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--kam-shadow-lg);
}

/* Partners marquee */
.marquee-section {
  background: var(--kam-light);
  padding: 40px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 3rem;
}

.marquee-item {
  white-space: nowrap;
  font-weight: 700;
  color: var(--kam-royal);
  opacity: 0.4;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--kam-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top-color: var(--kam-sky);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-globe { display: none; }
  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 50px; }
  .timeline-item .timeline-dot { left: 10px !important; right: auto !important; }
  .about-badge { right: 10px; bottom: -10px; }
}

@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  .hero-stats { gap: 1rem; }
}
