/* ====================================
   Landing Page - Main Styles
   ==================================== */

:root {
  /* Medical Theme Colors */
  --primary-color: #0066CC;
  --primary-dark: #0052A3;
  --primary-light: #3399FF;
  --secondary-color: #00A86B;
  --accent-color: #F0F8FF;
  
  /* Text Colors */
  --text-dark: #1a1a2e;
  --text-medium: #4a5568;
  --text-light: #718096;
  --text-muted: #a0aec0;
  
  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f7fafc;
  --bg-lighter: #edf2f7;
  
  /* Border & Shadows */
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  
  /* Status Colors */
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #3b82f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 130px;
}

/* ====================================
   Section Titles
   ==================================== */
.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.section-subtitle-landing {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Legacy support - eski class için de merkezle */
.landing-page .section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* ====================================
   Buttons
   ==================================== */
.btn-primary-custom {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

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

.btn-outline-custom {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-white:hover {
  transform: translateY(-3px);
  color: var(--primary-color);
}

/* ====================================
   Hero Section
   ==================================== */
.hero-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(49, 106, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Hero Badge Wrapper */
.hero-badge-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  z-index: 100;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 102, 204, 0.12) 100%);
  color: #0066CC;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid rgba(0, 102, 204, 0.15);
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-badge:hover {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.12) 0%, rgba(0, 102, 204, 0.16) 100%);
  border-color: rgba(0, 102, 204, 0.25);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.12);
  transform: translateY(-2px);
}

.hero-badge i {
  font-size: 14px;
  animation: rotate 3s linear infinite;
  color: #0066CC;
}

/* Hero Badge Tooltip */
.hero-badge-tooltip {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 320px;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2),
              0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border: 2px solid rgba(0, 102, 204, 0.1);
}

.hero-badge-tooltip::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 24px;
  width: 16px;
  height: 16px;
  background: white;
  border-left: 2px solid rgba(0, 102, 204, 0.1);
  border-top: 2px solid rgba(0, 102, 204, 0.1);
  transform: rotate(45deg);
}

.hero-badge-wrapper:hover .hero-badge-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tooltip-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 102, 204, 0.1);
}

.tooltip-header i {
  font-size: 20px;
  color: #0066CC;
}

.tooltip-header strong {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 700;
}

.hero-badge-tooltip p {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.hero-badge-tooltip ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-badge-tooltip ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
}

.hero-badge-tooltip ul li i {
  font-size: 12px;
  color: #00A86B;
  flex-shrink: 0;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 540px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-feature i {
  color: #10b981;
  font-size: 18px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-color);
  border-radius: 8px;
  border: 1px solid var(--primary-light);
}

.trust-badge-item i {
  color: var(--primary-color);
  font-size: 18px;
}

.trust-badge-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-size: 16px;
}

.trust-stars span {
  color: var(--text-dark);
  font-weight: 700;
  margin-left: 6px;
  font-size: 15px;
}

.trust-text p {
  margin: 0;
  font-size: 14px;
  color: var(--text-medium);
}

.trust-text p strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Patient Avatars */
.patient-testimonials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.patient-avatars {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 4px;
}

.patient-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  object-fit: cover;
  margin-left: -12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.patient-avatar:first-child {
  margin-left: 0;
}

.patient-avatar:hover {
  transform: translateY(-4px) scale(1.1);
  z-index: 10;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.patient-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border: 3px solid #ffffff;
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.15);
  transition: all 0.3s ease;
}

.patient-count:hover {
  transform: translateY(-4px) scale(1.1);
  background: linear-gradient(135deg, #0052A3 0%, #003D82 100%);
}

/* Hero Services Grid */
.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.hero-service-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 280px;
  text-decoration: none;
  color: inherit;
}

.hero-service-card:hover {
  text-decoration: none;
  color: inherit;
}

/* Gradient border effect (hidden by default) */
.hero-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #0066CC 0%, #0052A3 50%, #0066CC 100%);
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: borderShift 3s linear infinite;
  animation-play-state: paused;
}

/* Service Card Image */
.service-card-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  transition: none;
  pointer-events: none;
}

/* Service Card Content */
.service-card-content {
  padding: 20px 24px 24px;
  position: relative;
  z-index: 2;
  background: white;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 0 18px 18px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card-content h4::after {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
}

.service-card-content p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effects - No background change, just lift and glow */
.hero-service-card:hover .service-card-content h4 {
  color: var(--primary-color);
  transform: translateX(4px);
}

.hero-service-card:hover .service-card-content h4::after {
  opacity: 1;
  transform: translateX(0);
}

.hero-service-card:hover .service-card-content p {
  color: var(--text-dark);
  transform: translateX(2px);
}

.service-card-hover {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(10px, -10px) scale(0.7) rotate(-45deg);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
  z-index: 10;
}

.service-card-hover i {
  color: white;
  font-size: 18px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-service-card:hover .service-card-hover {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0deg);
}

.hero-service-card:hover .service-card-hover i {
  transform: translateX(3px) scale(1.1);
}

/* Main hover effect - Lift + Glow + Scale */
.hero-service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 102, 204, 0.2),
    0 10px 30px rgba(0, 82, 163, 0.15),
    0 0 0 1px rgba(0, 102, 204, 0.15);
  border-color: transparent;
}

/* Activate gradient border on hover */
.hero-service-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

/* Image zoom effect */
.hero-service-card:hover .service-card-image img {
  transform: scale(1.08);
}

/* Border gradient animation */
@keyframes borderShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Stagger animation effect */
.hero-service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-service-card:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-service-card:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-service-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* ====================================
   Doctors Section (Full Width with 80px padding)
   ==================================== */
.doctors-section-fullwidth {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.doctors-section-inner {
  padding: 0 80px;
  max-width: 100%;
}

.doctors-section {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.doctors-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(49, 106, 255, 0.25);
}

.doctors-section .section-badge i {
  font-size: 14px;
}

.doctors-carousel-wrapper {
  position: relative;
  padding: 30px 60px 20px;
  margin-top: 40px;
}

.doctors-carousel {
  overflow: visible;
  position: relative;
}

.doctors-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.doctor-card {
  width: 380px;
  min-width: 380px;
  max-width: 380px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.doctor-card:hover {
  transform: translateY(-5px);
  border-color: #11305D;
  box-shadow: 0 20px 40px rgba(17, 48, 93, 0.15);
}

.doctor-card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
  cursor: pointer;
}

.doctor-card-link:hover {
  text-decoration: none !important;
}

.doctor-card-link:hover .doctor-name {
  color: #11305D;
}

.doctor-card-link:hover .doctor-image img {
  transform: scale(1.08);
}

.doctor-image {
  position: relative;
  width: 100%;
  aspect-ratio: 840 / 994;
  overflow: hidden;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-image img {
  transform: scale(1.1);
}

/* Years Badge - Sol üst köşe */
.years-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
  color: white;
  padding: 8px 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
  transition: all 0.3s ease;
  cursor: default;
  z-index: 10;
}

.years-badge .years-number {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.years-badge .years-text {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.years-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}

.doctor-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #16273e;
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  z-index: 10;
}

.doctor-badge:hover {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
  color: #16273e;
  text-decoration: none;
}

.doctor-card:hover .doctor-badge {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.5);
}

.doctor-badge i {
  font-size: 14px;
}

.doctor-info {
  padding: 24px;
}

.doctor-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.doctor-specialty {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 16px;
}

.doctor-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.expertise-tag {
  background: var(--bg-lighter);
  color: var(--text-medium);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.expertise-tag:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.doctor-stats {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.stat-item-small {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-medium);
  font-weight: 600;
}

.stat-item-small i {
  color: var(--primary-color);
  font-size: 14px;
}

/* Doctor Rating Stars */
.doctor-rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.doctor-rating-stars i {
    color: #ffc107; /* Sarı renk */
    font-size: 14px;
}/* Doctor Actions - Buttons Container */
.doctor-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-doctor-detail {
  width: 100%;
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-doctor-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.3s ease;
  z-index: 0;
}

.btn-doctor-detail:hover::before {
  left: 0;
}

.btn-doctor-detail:hover {
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.btn-doctor-detail i {
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.btn-doctor-detail span {
  position: relative;
  z-index: 1;
}

.btn-doctor-appointment {
  width: 100%;
  background: linear-gradient(135deg, #18203C, #11305D);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-doctor-appointment:hover {
  text-decoration: none;
}

.btn-doctor-appointment::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn-doctor-appointment:hover::before {
  left: 100%;
}

.btn-doctor-appointment:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1a2545, #13356b);
}

.btn-doctor-appointment:active {
  transform: translateY(0);
}

.btn-doctor-appointment i {
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.btn-doctor-appointment span {
  position: relative;
  z-index: 1;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid var(--border-color);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-nav i {
  font-size: 16px;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.carousel-nav:hover i {
  color: white;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  width: 30px;
  border-radius: 5px;
  background: var(--primary-color);
}

/* Responsive */
@media (max-width: 1199px) {
  .doctor-card {
    min-width: 300px;
  }
}

@media (max-width: 991px) {
  .doctors-carousel-wrapper {
    padding: 20px 50px;
  }
  
  .doctor-card {
    min-width: 280px;
  }
}

@media (max-width: 767px) {
  .doctors-carousel-wrapper {
    padding: 20px 40px;
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
  
  .carousel-nav i {
    font-size: 14px;
  }
  
  .doctor-card {
    width: 340px;
    min-width: 340px;
    max-width: 340px;
  }
}

/* ====================================
   Services Section
   ==================================== */
.services-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.service-card {
  background: white;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
}

.service-icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: white;
  font-size: 40px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: var(--shadow-md);
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--primary-color);
}

.service-description {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

/* ====================================
   Services Hero Grid (New Design)
   ==================================== */
.services-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-hero-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: block;
  border: 2px solid transparent;
}

.service-hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
  border-color: var(--primary-light);
}

.service-hero-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-hero-card:hover .service-hero-image img {
  transform: scale(1.1);
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: opacity 0.4s ease;
}

.service-hero-card:hover .service-hero-overlay {
  opacity: 0.7;
}

.service-hero-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 102, 204, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-hero-badge.green {
  background: rgba(16, 185, 129, 0.95);
}

.service-hero-badge.purple {
  background: rgba(139, 92, 246, 0.95);
}

.service-hero-badge.orange {
  background: rgba(249, 115, 22, 0.95);
}

.service-hero-badge.red {
  background: rgba(239, 68, 68, 0.95);
}

.service-hero-badge.blue {
  background: rgba(59, 130, 246, 0.95);
}

.service-hero-badge i {
  font-size: 14px;
}

.service-hero-content {
  padding: 28px;
  position: relative;
}

.service-hero-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
  transition: all 0.4s ease;
}

.service-hero-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #6ee7b7 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.service-hero-icon.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.service-hero-icon.orange {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.service-hero-icon.red {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.service-hero-icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.service-hero-card:hover .service-hero-icon {
  transform: rotate(5deg) scale(1.1);
}

.service-hero-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-hero-card:hover .service-hero-content h3 {
  color: var(--primary-color);
}

.service-hero-content p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 42px;
}

.service-hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.service-hero-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-hero-arrow {
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.service-hero-card:hover .service-hero-arrow {
  background: var(--primary-color);
  color: white;
  transform: translateX(4px);
}

.service-hero-arrow i {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .services-hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .service-hero-image {
    height: 200px;
  }
  
  .service-hero-content {
    padding: 20px;
  }
  
  .service-hero-content h3 {
    font-size: 18px;
  }
  
  .service-hero-content p {
    font-size: 13px;
    min-height: auto;
  }
}

/* ====================================
   Services Section
   ==================================== */
.services-section {
  padding: 100px 0;
  background: #f8fafc;
}

.services-section .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.services-section .section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #64748b;
  line-height: 1.7;
}

/* ====================================
   Service Modern Cards (Bootstrap Grid Version)
   ==================================== */
.service-modern-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  height: 100%;
  display: block;
  text-decoration: none;
}

.service-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
  border-color: var(--primary-light);
  text-decoration: none;
}

.service-modern-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.service-modern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-modern-card:hover .service-modern-image img {
  transform: scale(1.08);
}

.service-modern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.service-modern-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.service-modern-badge i {
  font-size: 14px;
}

/* Badge Color Variants */
.badge-blue {
  background: linear-gradient(135deg, #3b82f6, #93c5fd);
}

.badge-green {
  background: linear-gradient(135deg, #10b981, #6ee7b7);
}

.badge-purple {
  background: linear-gradient(135deg, #a855f7, #d8b4fe);
}

.badge-orange {
  background: linear-gradient(135deg, #f97316, #fdba74);
}

.badge-red {
  background: linear-gradient(135deg, #ef4444, #fca5a5);
}

.badge-cyan {
  background: linear-gradient(135deg, #06b6d4, #67e8f9);
}

.service-modern-content {
  padding: 28px;
}

.service-modern-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Icon Color Variants */
.icon-blue {
  background: linear-gradient(135deg, #3b82f6, #93c5fd);
}

.icon-green {
  background: linear-gradient(135deg, #10b981, #6ee7b7);
}

.icon-purple {
  background: linear-gradient(135deg, #a855f7, #d8b4fe);
}

.icon-orange {
  background: linear-gradient(135deg, #f97316, #fdba74);
}

.icon-red {
  background: linear-gradient(135deg, #ef4444, #fca5a5);
}

.icon-cyan {
  background: linear-gradient(135deg, #06b6d4, #67e8f9);
}

.service-modern-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  margin-top: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-modern-card:hover h3 {
  color: var(--primary-color);
}

.service-modern-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 44px;
}

.service-modern-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.service-modern-footer span {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
}

.service-modern-footer i {
  font-size: 16px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.service-modern-card:hover .service-modern-footer i {
  transform: translateX(4px);
}

/* Responsive for Service Modern Cards */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-section .section-title {
    font-size: 32px;
  }
  
  .services-section .section-subtitle {
    font-size: 16px;
  }
  
  .service-modern-image {
    height: 200px;
  }
  
  .service-modern-content {
    padding: 24px;
  }
  
  .service-modern-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  
  .service-modern-content h3 {
    font-size: 18px;
  }
  
  .service-modern-content p {
    font-size: 13px;
    min-height: auto;
  }
}

/* ====================================
   Features Section
   ==================================== */
.features-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  border-color: var(--primary-color);
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(49, 106, 255, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(49, 106, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 24px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
  padding: 100px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 5%) scale(1.1); }
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.cta-subtitle {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta-section .btn-white {
  background: white;
  color: var(--primary-color);
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.cta-section .btn-white:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  background: var(--accent-color);
}

/* ====================================
   Free Consultation Section
   ==================================== */
.free-consultation-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.free-consultation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 168, 107, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.free-consultation-section .container {
  position: relative;
  z-index: 1;
}

/* Left Content */
.consultation-content {
  color: white;
}

.consultation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 168, 107, 0.15) 100%);
  border: 1px solid rgba(0, 102, 204, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.consultation-badge i {
  font-size: 14px;
  color: #fbbf24;
}

.consultation-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}

.highlight-text {
  background: linear-gradient(135deg, #4A9FFF 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.consultation-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

/* Features List */
.consultation-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.consultation-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.consultation-features li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 102, 204, 0.3);
  transform: translateX(8px);
}

.consultation-features li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.consultation-features li div {
  flex: 1;
}

.consultation-features li strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.consultation-features li span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Countdown Timer */
.countdown-wrapper {
  background: rgba(0, 102, 204, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.countdown-header i {
  color: #fbbf24;
  font-size: 16px;
}

.countdown-header span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.countdown-box {
  background: rgba(0, 102, 204, 0.15);
  border: 1px solid rgba(0, 102, 204, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(5px);
}

.countdown-value {
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.countdown-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-separator {
  font-size: 28px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

/* Right Form Card */
.consultation-form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-header p {
  font-size: 14px;
  color: var(--text-medium);
}

/* Form Groups */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label i {
  color: var(--primary-color);
  font-size: 14px;
}

.form-control {
  width: 100%;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-control:hover {
  border-color: #cbd5e1;
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-control::placeholder {
  color: #94a3b8;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-top: 2px;
  accent-color: var(--primary-color);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 13px;
  color: var(--text-medium);
  line-height: 1.6;
  cursor: pointer;
  margin: 0;
}

.form-checkbox a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: none;
}

.btn-submit:hover {
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-submit:hover i {
  transform: translateX(4px);
}

/* Trust Badge */
.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.form-trust i {
  color: var(--accent-color);
  font-size: 16px;
}

.form-trust span {
  font-size: 12px;
  color: var(--text-medium);
}

/* ====================================
   Branches Section
   ==================================== */
.branches-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--accent-color) 100%);
  position: relative;
  overflow: hidden;
}

.branches-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

/* Branch Card */
.branch-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.branch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.branch-card:hover::before {
  transform: scaleX(0); /* Disabled glow effect */
}

.branch-card:hover {
  transform: none; /* Disabled lift effect */
  box-shadow: none; /* Disabled shadow */
  border-color: var(--border-color); /* Keep original border */
}

/* Branch Header */
.branch-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.branch-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.branch-card:hover .branch-icon {
  transform: none; /* Disabled icon rotation */
}

.branch-icon i {
  font-size: 28px;
  color: white;
}

.branch-title-group h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

/* Şube başlık linklerinde underline olmasın */
.branch-title-group h3 a {
  text-decoration: none !important;
  color: inherit;
}

.branch-title-group h3 a:hover,
.branch-title-group h3 a:focus {
  text-decoration: none !important;
  color: inherit;
}

.branch-card:hover .branch-title-group h3 {
  color: var(--text-dark); /* Keep original color */
}

/* Override for green branch finder card - always white */
.branch-finder-card .branch-title-group h3,
.branch-finder-card:hover .branch-title-group h3 {
  color: #ffffff !important;
}

.branch-code {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* Branch Info */
.branch-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.branch-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.6;
}

.branch-info-item i {
  font-size: 16px;
  color: var(--primary-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.branch-info-item strong {
  color: var(--text-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* Branch Actions */
.branch-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.branch-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.branch-btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}

.branch-btn-primary:hover {
  transform: scale(1.05);
  color: white;
}

.branch-btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.branch-btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.05);
}

/* Branch Stats Badge */
.branch-stats {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.branch-stat {
  flex: 1;
  text-align: center;
}

.branch-stat .stat-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.branch-stat .stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* Branch Modal */
.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 20px 20px 0 0;
  padding: 24px 32px;
  border: none;
}

.modal-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
}

.modal-body {
  padding: 32px;
}

.branch-detail-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.branch-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.branch-detail-item i {
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 2px;
}

.branch-detail-item .info-content h6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.branch-detail-item .info-content p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}

/* Branch Map (if we add map integration) */
.branch-map {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}

/* Branch Info Card (6th card) */
.branch-info-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 100%);
  border: 2px solid var(--secondary-color);
}

.branch-info-card .branch-icon {
  background: linear-gradient(135deg, var(--secondary-color), #00C97D);
}

.branch-info-card:hover {
  border-color: var(--secondary-color);
  box-shadow: none; /* Disabled shadow */
  transform: none; /* Disabled lift */
}

/* Branch Finder Card (Green) */
/* ===========================
   Branch Finder Card - Google Maps Style
   =========================== */
.branch-finder-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: #202124;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

/* Google Maps blue accent line on top */
.branch-finder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a73e8 0%, #4285f4 50%, #1a73e8 100%);
  background-size: 200% 100%;
  animation: blueLineShift 3s ease infinite;
}

@keyframes blueLineShift {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}

.branch-finder-card:hover {
  border-color: #dadce0;
  box-shadow: 0 4px 8px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
  transform: translateY(-4px);
}

.branch-finder-card .branch-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  z-index: 1;
}

/* Google Maps style icon */
.branch-finder-card .branch-icon {
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%) !important;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
  position: relative;
}

/* Pulse ring effect */
.branch-finder-card .branch-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #4285f4;
  border-radius: 50%;
  opacity: 0;
  animation: pulseRing 2s ease-out infinite;
}

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

.branch-finder-card .branch-icon i {
  color: #ffffff !important;
  font-size: 28px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Title styling - Google sans style */
.branch-finder-card .branch-title-group h3 {
  color: #202124 !important;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.branch-finder-card:hover .branch-title-group h3 {
  color: #202124 !important;
}

/* Google blue button */
.branch-btn-light {
  background: #1a73e8;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
  position: relative;
  z-index: 1;
  letter-spacing: 0.25px;
}

.branch-btn-light i {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.branch-btn-light:hover {
  background: #1765cc;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
  transform: translateY(-1px);
}

.branch-btn-light:active {
  background: #1557b0;
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.branch-btn-light:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  background: #dadce0;
  color: #80868b;
}

/* Location Finder Styles - Google Maps Style */
.location-finder {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.or-divider {
  text-align: center;
  margin: 16px 0;
  position: relative;
}

.or-divider::before,
.or-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: #dadce0;
}

.or-divider::before {
  left: 0;
}

.or-divider::after {
  right: 0;
}

.or-divider span {
  background: #ffffff;
  padding: 0 12px;
  color: #5f6368;
  font-size: 13px;
  font-weight: 400;
  text-transform: lowercase;
}

.address-input-group {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.address-input-group input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #dadce0;
  border-radius: 24px;
  background: #ffffff;
  color: #202124;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.1);
}

.address-input-group input::placeholder {
  color: #80868b;
  font-weight: 400;
}

.address-input-group input:focus {
  outline: none;
  border-color: #1a73e8;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.address-input-group input:hover {
  border-color: #c6c8ca;
  background: #ffffff;
}

.address-input-group button {
  padding: 12px 16px;
  background: #f1f3f4;
  border: none;
  border-radius: 50%;
  color: #5f6368;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.1);
}

.address-input-group button i {
  font-size: 18px;
}

.address-input-group button:hover {
  background: #e8eaed;
  color: #202124;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.address-input-group button:active {
  background: #dadce0;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.1);
}

/* Google Maps Badge/Logo */
.google-maps-badge {
  margin-top: 16px;
  text-align: center;
  padding: 8px 0;
}

.google-maps-logo {
  height: 20px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  display: inline-block;
}

.google-maps-logo:hover {
  opacity: 0.8;
}

/* Google Places Autocomplete Dropdown Styling */
.pac-container {
  background: #ffffff;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  border: 2px solid #10b981 !important;
  margin-top: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.pac-item {
  padding: 12px 16px !important;
  border: none !important;
  cursor: pointer;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #1f2937 !important;
}

.pac-item:hover {
  background: #ecfdf5 !important;
}

.pac-item-selected {
  background: #ecfdf5 !important;
}

.pac-icon {
  margin-top: 2px !important;
  margin-right: 12px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310b981'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") !important;
  background-size: contain !important;
  width: 20px !important;
  height: 20px !important;
}

.pac-item-query {
  font-weight: 600 !important;
  color: #059669 !important;
}

.pac-matched {
  font-weight: 700 !important;
  color: #10b981 !important;
}

.address-search-btn {
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #10b981;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.address-search-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.05);
}

/* Old inline result styles removed - now using modal */

/* ========================================
   NEAREST BRANCH MODAL STYLES
======================================== */

.nearest-branch-modal .modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.nearest-branch-modal .modal-header {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-bottom: none;
  padding: 24px 28px;
  position: relative;
}

.nearest-branch-modal .modal-header-content {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.nearest-branch-modal .modal-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nearest-branch-modal .modal-icon i {
  font-size: 26px;
  color: #10b981;
}

.nearest-branch-modal .modal-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nearest-branch-modal .modal-title i {
  font-size: 20px;
}

.nearest-branch-modal .modal-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin: 4px 0 0 0;
  font-weight: 500;
}

.nearest-branch-modal .btn-close {
  background: transparent;
  opacity: 1;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nearest-branch-modal .btn-close::before,
.nearest-branch-modal .btn-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #ffffff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nearest-branch-modal .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nearest-branch-modal .btn-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.nearest-branch-modal .modal-body {
  padding: 32px 28px;
}

.branch-result-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 24px;
}

.result-branch-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e5e7eb;
}

.result-branch-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.result-branch-icon i {
  font-size: 24px;
  color: #ffffff;
}

.result-branch-header h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 6px 0;
}

.result-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.result-distance-badge {
  background: #ecfdf5;
  border: 2px solid #10b981;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #059669;
}

.result-distance-badge i {
  font-size: 20px;
}

.result-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4b5563;
  line-height: 1.6;
}

.result-info-item i {
  font-size: 16px;
  color: #10b981;
  margin-top: 2px;
  flex-shrink: 0;
}

.result-info-item a {
  color: #1f2937;
  text-decoration: none;
  transition: color 0.2s ease;
}

.result-info-item a:hover {
  color: #10b981;
}

.nearest-branch-modal .modal-footer {
  border-top: none;
  padding: 0 28px 28px 28px;
  gap: 12px;
}

.btn-modal-action {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-modal-action i {
  font-size: 16px;
}

.btn-modal-action.btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
}

.btn-modal-action.btn-primary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
}

.btn-modal-action.btn-outline-primary {
  background: #ffffff;
  border: 2px solid #10b981;
  color: #10b981;
}

.btn-modal-action.btn-outline-primary:hover {
  background: #ecfdf5;
  border-color: #059669;
  color: #059669;
  transform: translateY(-2px);
}

/* International Branch Card (Frankfurt) */
.branch-card-international {
  border: 2px solid #FFD700;
  background: linear-gradient(135deg, #fff 0%, #FFF9E6 100%);
}

.branch-card-international .branch-icon {
  background: linear-gradient(135deg, #FFD700, #FFA500);
}

.branch-card-international .branch-code {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1f2937;
  font-weight: 600;
}

.branch-card-international:hover {
  border-color: #FFD700; /* Keep original gold border */
  box-shadow: none; /* Disabled shadow */
  transform: none; /* Disabled lift */
}

/* Responsive */
@media (max-width: 991px) {
  /* Branch Finder Card - Mobile adjustments */
  .branch-finder-card {
    min-height: auto;
  }

  /* Consultation Section */
  .free-consultation-section {
    padding: 80px 0;
  }

  .consultation-title {
    font-size: 34px;
  }

  .consultation-features li {
    padding: 14px;
  }

  .countdown-box {
    min-width: 100px;
    padding: 10px 12px;
  }

  .countdown-value {
    font-size: 30px;
  }

  .consultation-form-card {
    padding: 32px 24px;
    margin-top: 40px;
  }

  /* Branches */
  .branches-section {
    padding: 80px 0;
  }
  
  .branch-card {
    padding: 24px;
  }
  
  .branch-actions {
    flex-direction: column;
  }
  
  .branch-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  /* Consultation Section Mobile */
  .free-consultation-section {
    padding: 60px 0;
  }

  .consultation-content {
    text-align: center;
  }

  .consultation-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .consultation-title {
    font-size: 28px;
  }

  .consultation-subtitle {
    font-size: 15px;
    max-width: 100%;
  }

  .consultation-features li {
    text-align: left;
    padding: 12px;
  }

  .countdown-boxes {
    gap: 6px;
  }

  .countdown-box {
    min-width: 70px;
    padding: 10px;
    gap: 6px;
  }

  .countdown-value {
    font-size: 24px;
  }

  .countdown-label {
    font-size: 9px;
  }

  .countdown-separator {
    font-size: 20px;
  }

  .consultation-form-card {
    padding: 28px 20px;
  }

  .form-header h3 {
    font-size: 22px;
  }

  .form-group label {
    font-size: 12px;
  }

  .form-control {
    padding: 12px 14px;
    font-size: 13px;
  }

  .btn-submit {
    padding: 14px 20px;
    font-size: 14px;
  }

  /* Branches */
  .branches-section {
    padding: 60px 0;
  }
  
  .branch-header {
    flex-direction: column;
    text-align: center;
  }
  
  .branch-icon {
    margin: 0 auto;
  }
  
  .branch-stats {
    flex-direction: column;
    gap: 12px;
  }
}

/* ====================================
   Footer
   ==================================== */
.footer {
  background: var(--text-dark);
  color: #94a3b8;
  padding: 60px 0 30px;
}

.footer h5 {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 168, 107, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 102, 204, 0.3);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link i {
  position: relative;
  z-index: 1;
}

/* Facebook hover color */
.social-link:hover .fa-facebook-f {
  color: #1877f2;
}

/* Instagram hover gradient effect */
.social-link:hover .fa-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* YouTube hover color */
.social-link:hover .fa-youtube {
  color: #ff0000;
}

/* TikTok hover color */
.social-link:hover .fa-tiktok {
  color: #000000;
}

/* ====================================
   Responsive Design
   ==================================== */

/* Tablet & Small Desktop (≤991px) */
@media (max-width: 991px) {
  body {
    padding-top: 56px !important;
  }

  .hero-section {
    padding: 70px 0 60px;
    min-height: 500px;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 18px;
  }
  
  .hero-subtitle {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 28px;
  }

  .hero-badge-wrapper {
    margin-bottom: 20px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .hero-badge-tooltip {
    min-width: 280px;
    padding: 16px;
    font-size: 12px;
  }

  .tooltip-header strong {
    font-size: 14px;
  }

  .hero-badge-tooltip p {
    font-size: 12px;
  }

  .hero-badge-tooltip ul li {
    font-size: 12px;
  }

  .hero-features {
    gap: 16px;
    margin-bottom: 28px;
  }

  .hero-feature {
    font-size: 13px;
  }

  .hero-feature i {
    font-size: 16px;
  }

  .hero-buttons {
    margin-bottom: 36px;
  }

  .hero-trust {
    padding-top: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-avatars img {
    width: 36px;
    height: 36px;
  }

  .hero-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .hero-service-card {
    height: 260px;
  }

  .service-card-image {
    height: 140px;
  }

  .service-card-content {
    padding: 16px 20px 20px;
  }

  .service-card-content h4 {
    font-size: 16px;
  }

  .service-card-content p {
    font-size: 13px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .cta-title {
    font-size: 32px;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .hero-section {
    padding: 50px 0 40px;
    min-height: 450px;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  /* Trust badges mobile center */
  .hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .trust-badges {
    justify-content: center;
    width: 100%;
  }

  .trust-text {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .patient-testimonials {
    align-items: center;
    width: 100%;
  }

  .hero-badge-wrapper {
    margin-bottom: 18px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-badge-tooltip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    min-width: unset;
    width: calc(100vw - 40px);
    max-width: 340px;
    padding: 20px;
    margin: 0;
  }

  .hero-badge-tooltip::before {
    display: none;
  }

  /* Mobile backdrop */
  .hero-badge-wrapper::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
  }

  /* Active state for mobile (JavaScript controlled) */
  .hero-badge-wrapper.active::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .hero-badge-wrapper.active .hero-badge-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
  }

  .hero-badge-wrapper:hover .hero-badge-tooltip {
    z-index: 1001;
  }

  .tooltip-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-bottom: 10px;
  }

  .tooltip-header i {
    font-size: 18px;
  }

  .tooltip-header strong {
    font-size: 13px;
  }

  .hero-badge-tooltip p {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .hero-badge-tooltip ul {
    gap: 6px;
  }

  .hero-badge-tooltip ul li {
    font-size: 11px;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero-feature {
    font-size: 13px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    margin-bottom: 32px;
  }

  .hero-buttons .btn-primary-custom,
  .hero-buttons .btn-outline-custom {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 24px;
  }

  .hero-services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .hero-service-card {
    height: 240px;
  }

  .service-card-image {
    height: 120px;
  }

  .service-card-content {
    padding: 14px 16px 16px;
  }

  .service-card-content h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .service-card-content p {
    font-size: 12px;
  }

  .service-card-hover {
    width: 36px;
    height: 36px;
    top: 16px;
    right: 16px;
  }

  .service-card-hover i {
    font-size: 14px;
  }

  .hero-trust {
    padding-top: 24px;
  }

  .trust-avatars {
    flex-wrap: wrap;
  }

  .trust-avatars img {
    width: 32px;
    height: 32px;
    margin-left: -10px;
  }

  .trust-avatars img:first-child {
    margin-left: 0;
  }

  .trust-count {
    font-size: 11px;
    padding: 3px 8px;
  }

  .trust-stars {
    font-size: 13px;
  }

  .trust-text p {
    font-size: 12px;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero-image-wrapper {
    border-radius: 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .service-card {
    margin-bottom: 20px;
  }
  
  .btn-primary-custom,
  .btn-outline-custom {
    font-size: 14px;
    padding: 10px 24px;
  }
}

/* Extra Small Mobile (≤480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .hero-feature {
    font-size: 12px;
  }

  .hero-feature i {
    font-size: 14px;
  }

  .trust-avatars img {
    width: 28px;
    height: 28px;
    margin-left: -8px;
  }

  .trust-stars {
    font-size: 12px;
  }

  /* Doctors Section Responsive */
  .doctors-section-inner {
    padding: 0 40px;
  }
  
  .doctors-carousel-wrapper {
    padding: 20px 25px;
  }
  
  .doctor-card {
    width: 280px;
    min-width: 280px;
    max-width: 280px;
  }
  
  .doctor-info {
    padding: 18px;
  }
  
  .doctor-badge {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .carousel-nav {
    width: 32px;
    height: 32px;
  }
  
  .carousel-nav i {
    font-size: 12px;
  }
}

/* Mobile - Small (≤576px) */
@media (max-width: 576px) {
  .doctors-section-inner {
    padding: 0 20px;
  }
  
  .doctors-carousel-wrapper {
    padding: 20px 30px;
  }
  
  .doctor-card {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
  }
  
  .doctor-info {
    padding: 20px;
  }
  
  .doctor-name {
    font-size: 16px;
  }
  
  .doctor-specialty {
    font-size: 13px;
  }
  
  .carousel-nav {
    width: 36px;
    height: 36px;
  }
}

/* ====================================
   Appointment Modal Styles
   ==================================== */
.appointment-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.appointment-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.appointment-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: 2px solid #e2e8f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.appointment-modal-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
    transform: rotate(90deg);
}

.appointment-modal-header {
    background: linear-gradient(135deg, #0066CC 0%, #316AFF 100%);
    padding: 30px;
    border-radius: 20px 20px 0 0;
}

.doctor-modal-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.doctor-modal-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.doctor-modal-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: white;
}

.doctor-modal-info p {
    font-size: 14px;
    margin: 0 0 8px 0;
    opacity: 0.95;
}

.doctor-modal-branch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.appointment-modal-body {
    padding: 30px;
}

.btn-submit-appointment {
    width: 100%;
    background: linear-gradient(135deg, #0066CC 0%, #316AFF 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.btn-submit-appointment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .appointment-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .appointment-modal-header {
        padding: 20px;
    }
    
    .doctor-modal-photo {
        width: 60px;
        height: 60px;
    }
    
    .doctor-modal-info h3 {
        font-size: 20px;
    }
    
    .appointment-modal-body {
        padding: 20px;
    }
}
