/* ============================================
   MODERN SERVICES PAGE STYLES - 2025 Edition
   ============================================ */

/* CSS Variables for Modern Design System */
:root {
  /* Modern Color Palette */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --accent-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  
  /* Service Colors */
  --admission-color: #667eea;
  --visa-color: #f093fb;
  --scholarship-color: #4facfe;
  --accommodation-color: #fa709a;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Shadows */
  --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);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */
.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 6rem var(--space-lg) 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* Animated gradient mesh background */
.services-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.services-hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -30px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 32px 0 rgba(31, 38, 135, 0.37),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

.hero-icon i {
  font-size: 3.5rem;
  color: white;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 48px 0 rgba(31, 38, 135, 0.5);
  }
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
  animation: fadeInUp 1s ease;
}

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

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  z-index: 20;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.breadcrumb a:hover {
  color: #ffd700;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CONTAINER & SECTION TITLES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.75rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: #4a5568;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SERVICES OVERVIEW - Modern Grid Cards
   ============================================ */
.services-overview {
  padding: 5rem var(--space-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.service-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

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

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(102, 126, 234, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.service-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-weight: 700;
}

.service-card p {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #667eea;
  font-size: 1.25rem;
  opacity: 0.6;
  transition: all var(--transition-normal);
}

.service-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */
.service-detail-section {
  padding: 5rem var(--space-lg);
  position: relative;
  overflow: hidden;
}

.service-detail-section:nth-child(odd) {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.service-detail-section:nth-child(even) {
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-content.reverse {
  direction: rtl;
}

.service-detail-content.reverse > * {
  direction: ltr;
}

.service-detail-text {
  animation: fadeInLeft 0.8s ease;
}

.service-detail-visual {
  animation: fadeInRight 0.8s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 50px;
  color: #667eea;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-badge i {
  font-size: 1rem;
}

.service-detail-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  font-weight: 800;
  line-height: 1.2;
}

.lead-text {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ============================================
   FEATURES LIST
   ============================================ */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.feature-icon i {
  font-size: 1.25rem;
  color: white;
}

.feature-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-weight: 700;
}

.feature-content p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: var(--font-primary);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
  filter: brightness(1.1);
}

.cta-button i {
  transition: transform var(--transition-normal);
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* ============================================
   VISUAL CARDS - Stats
   ============================================ */
.visual-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(102, 126, 234, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #4a5568;
  font-weight: 600;
}

/* ============================================
   PROCESS VISUAL
   ============================================ */
.process-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.process-step-visual {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
  position: relative;
  z-index: 2;
}

.process-connector {
  width: 3px;
  height: 40px;
  background: linear-gradient(180deg, #667eea, #764ba2);
  margin: -0.5rem auto;
  position: relative;
  z-index: 1;
}

.process-step-visual h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-weight: 700;
}

.process-step-visual p {
  font-size: 0.9rem;
  color: #4a5568;
  margin: 0;
}

/* ============================================
   SCHOLARSHIP VISUAL
   ============================================ */
.scholarship-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.scholarship-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  text-align: center;
}

.scholarship-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(102, 126, 234, 0.2);
}

.scholarship-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
}

.scholarship-icon i {
  font-size: 2rem;
  color: white;
}

.scholarship-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
  font-weight: 700;
}

.scholarship-card p {
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 1rem;
}

.scholarship-amount {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
  border: 2px solid rgba(79, 172, 254, 0.3);
  border-radius: 50px;
  color: #4facfe;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ============================================
   ACCOMMODATION VISUAL
   ============================================ */
.accommodation-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.accommodation-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  text-align: center;
}

.accommodation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(250, 112, 154, 0.2);
}

.accommodation-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(250, 112, 154, 0.3);
}

.accommodation-image i {
  font-size: 2.5rem;
  color: white;
}

.accommodation-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
  font-weight: 700;
}

.accommodation-card p {
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 1.25rem;
}

.accommodation-features {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.accommodation-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.875rem;
  background: linear-gradient(135deg, rgba(250, 112, 154, 0.1), rgba(254, 225, 64, 0.1));
  border: 1px solid rgba(250, 112, 154, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: #fa709a;
  font-weight: 600;
}

.accommodation-features i {
  font-size: 0.75rem;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
  padding: 5rem var(--space-lg);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.why-choose-section .section-title {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
}

.why-choose-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  transition: all var(--transition-normal);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 48px rgba(31, 38, 135, 0.5);
}

.why-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-normal);
}

.why-card:hover .why-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.why-icon i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
}

.why-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
  padding: 5rem var(--space-lg);
  background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  padding: 4rem 3rem;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(102, 126, 234, 0.1);
}

.cta-content h2 {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: var(--font-primary);
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
  filter: brightness(1.1);
}

.btn-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.3);
}

/* ============================================
   FLOATING SOCIAL SIDEBAR
   ============================================ */
.social-sidebar {
  position: fixed;
  left: 1.5rem;
  top: 95%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  z-index: 9999;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition-normal);
  filter: blur(8px);
  z-index: -1;
}

.social-icon:hover {
  transform: scale(1.2) translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.social-icon:hover::before {
  opacity: 0.6;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram::before {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.youtube {
  background: #ff0000;
}

.social-icon.youtube::before {
  background: #ff0000;
}

.social-icon.whatsapp {
  background: #25d366;
}

.social-icon.whatsapp::before {
  background: #25d366;
}

/* ============================================
   INTEREST MODAL - Modern Form Design
   ============================================ */
.interest-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.interest-modal.show {
  display: flex;
}

.interest-modal-box {
  background: white;
  width: 90%;
  max-width: 480px;
  padding: 2.5rem;
  border-radius: 24px;
  position: relative;
  animation: modalSlideIn 0.3s ease;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.interest-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: #667eea;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
  transition: all var(--transition-fast);
}

.interest-close:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: rotate(90deg);
}

.hero-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-form-header h3 {
  font-size: 1.75rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.hero-form-header p {
  color: #4a5568;
  font-size: 0.95rem;
}

.form-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-control {
  padding: 1rem 1.25rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
  background: #f8f9fb;
}

.form-control:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.btn--primary {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.1);
}

.btn--primary.loading {
  pointer-events: none;
  opacity: 0.7;
}

.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn--primary.loading .spinner {
  display: block;
}

.btn--primary.loading .btn-text {
  display: none;
}

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

.form-success {
  text-align: center;
  color: #10b981;
  font-weight: 600;
  margin-top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-detail-content.reverse {
    direction: ltr;
  }

  .visual-card {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 1rem;
  }

  .services-hero {
    padding: 4rem var(--space-lg) 3rem;
  }

  .hero-text h1 {
    font-size: 2.25rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-icon {
    width: 100px;
    height: 100px;
  }

  .hero-icon i {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-text h2 {
    font-size: 2rem;
  }

  .lead-text {
    font-size: 1rem;
  }

  .visual-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .cta-content {
    padding: 3rem 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .breadcrumb {
    left: 1rem;
    top: 1rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }

  .social-sidebar {
    left: 1rem;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }

  .interest-modal-box {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .service-card,
  .why-card,
  .stat-card {
    padding: 1.75rem;
  }

  .service-detail-text h2 {
    font-size: 1.75rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .visual-card {
    grid-template-columns: 1fr;
  }

  .feature-item {
    gap: 1rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .feature-icon i {
    font-size: 1rem;
  }
}

/* Performance optimizations */
.service-card,
.stat-card,
.scholarship-card,
.accommodation-card,
.why-card {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5568d3 0%, #653a89 100%);
}