
/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: waFloat 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================
   FOOTER SOCIAL
   ============================================ */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-3px);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
  pointer-events: none;
}
.hero-slide.active { opacity: 1; position: relative; pointer-events: auto; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,33,55,0.92), rgba(27,58,92,0.85));
}
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dots button.active {
  background: var(--gold-400);
  border-color: var(--gold-400);
}

/* ============================================
   IMAGE AREAS / GALLERY
   ============================================ */
.img-frame {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.img-frame:hover img { transform: scale(1.04); }

.about-images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 450px;
}
.about-images .img-frame:first-child {
  grid-row: 1 / 3;
}

/* ============================================
   SERVICE PAGE — DETAIL
   ============================================ */
.service-page-hero {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.service-page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.service-page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,33,55,0.9), rgba(27,58,92,0.85));
}
.service-page-content { position: relative; z-index: 2; }
.service-page-hero h1 { color: var(--white); margin-bottom: 16px; }
.service-page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; }
.service-page-hero .breadcrumb { margin-top: 20px; }

.service-body-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 50px;
  align-items: start;
}
.service-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1rem;
}
.sidebar-nav a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 4px;
  transition: all 0.3s;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: var(--gold-100);
  color: var(--gold-600);
}

/* ============================================
   TEAM CARDS — WITH PHOTO PLACEHOLDERS
   ============================================ */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 24px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.team-photo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid var(--gold-200);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  font-size: 3rem;
}
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold-600); font-size: 0.85rem; font-weight: 600; display: block; margin-bottom: 6px; }
.team-languages { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 12px; }
.team-card p { font-size: 0.88rem; color: var(--gray-600); margin-top: 8px; }
.team-card .team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--navy-600);
  font-size: 0.85rem;
  font-weight: 600;
}
.team-card .team-linkedin:hover { color: var(--gold-600); }

/* ============================================
   SERVICE DETAIL IMAGE SECTION
   ============================================ */
.service-detail-img {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-img .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  font-size: 4rem;
}

/* Feature grid for service pages */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--off-white);
  border-radius: 10px;
  transition: all 0.3s;
}
.feature-item:hover { background: var(--gold-100); }
.feature-check {
  width: 24px;
  height: 24px;
  background: var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item span { font-size: 0.92rem; font-weight: 500; }

@media (max-width: 968px) {
  .service-body-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .about-images { height: 350px; grid-template-columns: 1fr; grid-template-rows: 200px 1fr; }
  .about-images .img-frame:first-child { grid-row: auto; }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
