/* NAVBAR */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-navbar);
  padding: var(--sp-5) 0;
  transition: all var(--dur-normal) var(--ease-out);
}

.site-header .container {
  max-width: 1440px;
  padding: 0 var(--sp-6);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 12px rgba(13, 27, 42, 0.06);
  padding: var(--sp-3) 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  transition: all var(--dur-normal);
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform var(--dur-normal);
}

.site-header.scrolled .brand-logo-img {
  height: 42px;
}

.logo-aurora {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--color-white);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: color var(--dur-normal);
}

.logo-havuz {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(0.7rem, 1.3vw, 0.85rem);
  color: var(--color-accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-left: 0.5em;
  transition: color var(--dur-normal);
}

.site-header.scrolled .logo-aurora {
  color: var(--color-dark);
}

.site-header.scrolled .logo-havuz {
  color: var(--color-accent-dark);
}

.footer-logo {
  margin-bottom: var(--sp-3);
}

.footer-logo .logo-aurora {
  color: var(--color-white);
}

.footer-logo .logo-havuz {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--dur-fast);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--dur-normal) var(--ease-out);
  border-radius: var(--radius-full);
}

.nav-links a:hover::after {
  width: 100%;
}

.site-header.scrolled .nav-links a {
  color: var(--color-text);
}

.site-header.scrolled .nav-links a:hover {
  color: var(--color-dark);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
  z-index: var(--z-mobile-menu);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: all var(--dur-normal) var(--ease-out);
  transform-origin: center;
  border-radius: 2px;
}

.site-header.scrolled .hamburger span {
  background: var(--color-dark);
}

body.menu-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open .hamburger span {
  background: var(--color-white) !important;
}

/* MOBILE MENU */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: var(--z-mobile-menu);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-slow) var(--ease-out);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  text-align: center;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: var(--sp-5);
}

.mobile-nav-links a {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--dur-normal) var(--ease-out);
  display: inline-block;
}

.mobile-menu-overlay.active .mobile-nav-links a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) a { transition-delay: 100ms; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) a { transition-delay: 150ms; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) a { transition-delay: 200ms; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) a { transition-delay: 250ms; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(5) a { transition-delay: 300ms; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 14px var(--sp-5);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-out);
  border-radius: var(--radius-sm);
  text-decoration: none;
  line-height: 1;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--color-accent);
  color: white;
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 158, 175, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-dark {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-border);
}

.btn-dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-accent);
  padding: 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: var(--fs-sm);
  border: none;
  display: inline-flex;
  align-items: center;
}

.btn-ghost::after {
  content: '→';
  margin-left: 8px;
  transition: transform var(--dur-fast);
}

.btn-ghost:hover::after {
  transform: translateX(6px);
}

/* FORM */
.form-group {
  margin-bottom: var(--sp-4);
}

.form-label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--sp-1);
  letter-spacing: 0.02em;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px var(--sp-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--color-text);
  background: #FCFCFB;
  transition: all var(--dur-fast);
  outline: none;
  appearance: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  background: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px var(--color-accent-light);
}

.form-input.error, .form-textarea.error, .form-select.error {
  border-color: var(--color-error);
  background: #FDF2F2;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C3E50' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  background-size: 16px;
}

.form-error-text {
  font-size: var(--fs-xs);
  color: var(--color-error);
  margin-top: 6px;
  display: none;
  font-weight: 500;
}

.form-input.error + .form-error-text,
.form-textarea.error + .form-error-text,
.form-select.error + .form-error-text {
  display: block;
}

.required-star {
  color: #e53e3e;
  font-weight: 700;
  margin-left: 2px;
}

/* Bottom-Left Toast Notification */
.form-toast {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(10, 25, 47, 0.95);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(60px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, visibility 0.35s ease;
  max-width: 380px;
}

.form-toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toast-title {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.2;
}

.toast-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.35;
}

.toast-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  margin-left: 6px;
  transition: color 0.2s ease;
  line-height: 1;
}

.toast-close:hover {
  color: #ffffff;
}

@media (max-width: 576px) {
  .form-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

/* Success Modal Overlay */
.form-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.form-success-overlay.show {
  opacity: 1;
  visibility: visible;
}

.form-success-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,248,255,0.98) 100%);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.25),
    0 0 0 1px rgba(74, 158, 175, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transform: scale(0.8) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-success-overlay.show .form-success-card {
  transform: scale(1) translateY(0);
}

.form-success-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  color: #666;
  font-size: 18px;
  line-height: 1;
}

.form-success-close:hover {
  background: rgba(0,0,0,0.12);
  transform: scale(1.1);
}

.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a9eaf 0%, #2d7a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: none;
}

.form-success-overlay.show .success-checkmark {
  animation: checkmarkPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.success-checkmark::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 158, 175, 0.3), rgba(45, 122, 138, 0.1));
  z-index: -1;
  animation: none;
}

.form-success-overlay.show .success-checkmark::before {
  animation: checkmarkRing 1.5s ease-out 0.4s both;
}

.success-checkmark svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-checkmark svg .checkmark-path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
}

.form-success-overlay.show .success-checkmark svg .checkmark-path {
  animation: drawCheck 0.5s ease-out 0.5s forwards;
}

.form-success-card h3 {
  color: #1a3a4a;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-success-card .success-subtitle {
  color: #4a9eaf;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.form-success-card .success-message {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.form-success-card .success-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4a9eaf, #6dc8d8);
  border-radius: 3px;
  margin: 0 auto 20px;
}

.form-success-card .success-contact-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(74, 158, 175, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(74, 158, 175, 0.15);
  color: #2d7a8a;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.form-success-card .success-contact-hint svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-success-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #4a9eaf 0%, #2d7a8a 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 158, 175, 0.35);
}

.form-success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 158, 175, 0.45);
}

@keyframes checkmarkPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes checkmarkRing {
  0% { transform: scale(0.8); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

/* Legacy inline success (keep hidden, replaced by overlay) */
.form-success {
  display: none !important;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: var(--z-lightbox);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-normal);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast), transform var(--dur-fast);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: var(--sp-4);
}

.lightbox-next {
  right: var(--sp-4);
}

/* BEFORE/AFTER SLIDER */
.ba-container,
.ba-container * {
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  -webkit-user-drag: none !important;
}

.ba-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
  cursor: ew-resize;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-lg);
  touch-action: none;
}

.ba-img {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  z-index: 1;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #FFFFFF;
  z-index: 10;
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  overflow: visible;
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  aspect-ratio: 1 / 1;
  background: #334155;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  z-index: 20;
  pointer-events: none;
  box-sizing: border-box;
}

.ba-container:hover .ba-handle-circle {
  transform: translate(-50%, -50%) scale(1.1);
  background: #1E293B;
}

.ba-handle-circle svg {
  width: 18px;
  height: 18px;
  color: #FFFFFF;
  display: block;
}

.ba-label {
  position: absolute;
  bottom: var(--sp-4);
  padding: 8px 18px;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.ba-label--before {
  left: var(--sp-4);
}

.ba-label--after {
  right: var(--sp-4);
}

/* TESTIMONIAL CAROUSEL */
.testimonial-carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 64px;
}

.testimonial-stage {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 0 var(--sp-4);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.65;
  color: var(--color-dark);
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-author {
  margin-top: var(--sp-4);
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--color-dark);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--sp-3);
  color: #F4B942;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
}

.testimonial-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2C3E50;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--dur-fast);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.testimonial-arrow:hover {
  background: #1B2838;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.testimonial-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF !important;
  stroke-width: 2.5px;
  display: block;
}

.testimonial-arrow--prev {
  left: 0;
}

.testimonial-arrow--next {
  right: 0;
}

.testimonial-note {
  font-size: var(--fs-xs);
  color: var(--color-muted);
  font-style: italic;
  margin-top: var(--sp-3);
  text-align: center;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-out);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--color-accent);
  width: 24px;
}

/* TEAM CARD */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-8);
}

.team-card {
  text-align: center;
  background: var(--color-white);
  padding: var(--sp-6) var(--sp-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--dur-normal) var(--ease-out);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(74, 158, 175, 0.3);
}

.team-card-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--sp-4);
  filter: grayscale(20%);
  transition: all var(--dur-normal) var(--ease-out);
  border: 3px solid var(--color-border);
}

.team-card:hover .team-card-img {
  filter: grayscale(0%);
  transform: scale(1.05);
  border-color: var(--color-accent);
}

.team-card-name {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: var(--fs-sm);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

/* MOBILE CTA BAR */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  padding: var(--sp-2) var(--sp-3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-cta-inner {
  display: flex;
  gap: var(--sp-2);
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: all var(--dur-fast);
}

.mobile-cta-btn--phone {
  background: var(--color-dark);
  color: white;
}

.mobile-cta-btn--whatsapp {
  background: #25D366;
  color: white;
}

.mobile-cta-btn svg {
  width: 18px;
  height: 18px;
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  animation: waPulse 2.5s infinite;
}

.floating-whatsapp:hover {
  background: #20BA5A;
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: #FFFFFF;
  display: block;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

