/* ===== CSS RESET & BASE STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #1e3a8a;
  color: white;
  padding: 8px;
  border-radius: 4px;
  text-decoration: none;
  z-index: 9999;
}

.skip-link:focus {
  top: 6px;
}

/* ===== UTILITY CLASSES ===== */
.hidden {
  display: none !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

body {
  animation: fadeIn 0.5s ease-out;
}

/* ===== NAVIGATION ===== */
.main-nav {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.brand-logo:hover {
  color: #db2777;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-list li a,
.nav-list .dropdown-toggle {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-list li a:hover,
.nav-list .dropdown-toggle:hover {
  color: #1e3a8a;
  background-color: #f3f4f6;
}

.whatsapp-link {
  background-color: #22c55e !important;
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: 6px !important;
}

.whatsapp-link:hover {
  background-color: #16a34a !important;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 180px;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 999;
  border: 1px solid #e5e7eb;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
}

.dropdown-menu li a {
  color: #333;
  display: block;
  padding: 0.25rem 0;
}

.dropdown-menu li a:hover {
  color: #1e3a8a;
  background-color: #f3f4f6;
}

.dropdown-menu hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 0.5rem 0;
}

/* Mobile Menu Styles */
.mobile-menu-button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #1e3a8a;
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.mobile-menu-button:hover {
  background-color: #f3f4f6;
}

@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
  }

  #mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
  }

  #mobile-menu.show {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: #f9fafb;
    border: none;
  }
}

/* ===== HEADER ===== */
.main-header {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.logo {
  margin: 0 auto 2rem;
  height: 8rem;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.header-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1f2937;
}

.highlight {
  color: #db2777;
}

.header-description {
  font-size: 1.125rem;
  max-width: 60rem;
  margin: 0 auto 2rem;
  color: #6b7280;
  line-height: 1.6;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 10rem;
  transition: all 0.3s ease;
  text-align: center;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.universities {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
}

.students {
  background: linear-gradient(135deg, #0b1d56 0%, #1e3a8a 100%);
  color: white;
}

.destinations {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

/* ===== SECTION STYLES ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #db2777 0%, #ec4899 100%);
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

.section-description {
  text-align: center;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* ===== UNIVERSITIES SECTION ===== */
.universities-section {
  padding: 4rem 0;
  background-color: #f8fafc;
}

.universities-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.university-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.university-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  border: 1px solid #f3f4f6;
}

.university-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #e5e7eb;
}

.university-logo {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
  transition: transform 0.3s ease;
}

.university-card:hover .university-logo {
  transform: scale(1.1);
}

.university-name {
  font-size: 1.1rem;
  color: #1e3a8a;
  font-weight: 600;
  margin: 0;
}

.university-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.view-all-button {
  text-align: center;
  margin-top: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.btn-primary i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(4px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 4rem 0;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.testimonial-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.author-avatar.blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.author-avatar.blue i {
  color: #2563eb;
}

.author-avatar.green {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.author-avatar.green i {
  color: #16a34a;
}

.author-name {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-text {
  color: #374151;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
}

/* ===== VISA SECTION ===== */
.visa-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
}

.visa-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.visa-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.visa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.visa-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.visa-sample-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visa-card:hover .visa-sample-image {
  transform: scale(1.1);
}

.visa-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem;
  color: white;
}

.visa-country {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.visa-type {
  font-size: 0.9rem;
  opacity: 0.9;
}

.visa-details {
  padding: 1.5rem;
  color: #6b7280;
}

.visa-date {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.success-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  min-width: 160px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

/* ===== CURRENCY CONVERTER ===== */
.converter-section {
  padding: 4rem 0;
  background-color: white;
}

.converter-card {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #e5e7eb;
}

.converter-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.currency-input-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.amount-input {
  flex: 1;
  border: 2px solid #e5e7eb;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.amount-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.amount-input.result {
  background-color: #f9fafb;
  font-weight: 600;
  color: #1e3a8a;
}

.currency-select {
  border: 2px solid #e5e7eb;
  padding: 1rem;
  border-radius: 8px;
  min-width: 100px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.currency-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.swap-button-container {
  display: flex;
  justify-content: center;
}

.swap-button {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border: 2px solid #d1d5db;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swap-button:hover {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  transform: rotate(180deg);
}

.swap-button i {
  color: #6b7280;
  font-size: 1.2rem;
}

.rate-info {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.last-update {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
}

/* ===== TRAVEL SERVICES ===== */
.travel-services-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.service-icon.pink {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.service-icon.pink i {
  color: #ec4899;
  font-size: 1.5rem;
}

.service-card:hover .service-icon.pink {
  background: linear-gradient(135deg, #fbcfe8 0%, #f9a8d4 100%);
  transform: scale(1.1);
}

.service-icon.red {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.service-icon.red i {
  color: #ef4444;
  font-size: 1.5rem;
}

.service-card:hover .service-icon.red {
  background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
  transform: scale(1.1);
}

.service-icon.green {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.service-icon.green i {
  color: #16a34a;
  font-size: 1.5rem;
}

.service-card:hover .service-icon.green {
  background: linear-gradient(135deg, #bbf7d0 0%, #86efac 100%);
  transform: scale(1.1);
}

.service-icon.yellow {
  background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
}

.service-icon.yellow i {
  color: #ca8a04;
  font-size: 1.5rem;
}

.service-card:hover .service-icon.yellow {
  background: linear-gradient(135deg, #fef08a 0%, #fde047 100%);
  transform: scale(1.1);
}

.service-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e3a8a;
}

.service-features {
  text-align: left;
  color: #6b7280;
  list-style: none;
  padding: 0;
}

.service-features li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

/* ===== MEDICAL SECTION ===== */
.medical-section {
  padding: 4rem 0;
  background-color: white;
}

.medical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.medical-card {
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.medical-card:first-child {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.medical-card:last-child {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.medical-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15);
}

.country-flag {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medical-card:hover .country-flag {
  transform: scale(1.1);
  border-color: #e0e7ff;
}

.medical-card:last-child:hover .country-flag {
  border-color: #d1fae5;
}

.medical-country {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.medical-card:first-child .medical-country {
  color: #1e40af;
}

.medical-card:last-child .medical-country {
  color: #059669;
}

.medical-description {
  color: #6b7280;
  text-align: left;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.medical-features {
  text-align: left;
  color: #374151;
  list-style: none;
  padding: 0;
}

.medical-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.medical-features li:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.medical-features i {
  color: #3b82f6;
  margin-top: 0.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.medical-card:last-child .medical-features i {
  color: #10b981;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  max-width: 600px;
  margin: 4rem auto;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 2px solid #e5e7eb;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form input:invalid,
.contact-form select:invalid {
  border-color: #ef4444;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.submit-button:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.submit-button:active {
  transform: translateY(0);
}

/* ===== FOOTER ===== */
.main-footer {
  padding: 4rem 2rem 2rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #e0e7ff;
}

.footer-about p {
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #bfdbfe;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.social-links a:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #bfdbfe;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: white;
  padding-left: 0.5rem;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #bfdbfe;
}

.footer-contact i {
  width: 1.25rem;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact a {
  color: #bfdbfe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
  text-decoration: underline;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: #bfdbfe;
  font-size: 0.875rem;
}

/* ===== ENHANCED FLOATING WHATSAPP WITH ANIMATIONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: pulse-bounce 3s infinite;
  z-index: 1000;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s infinite;
  z-index: -1;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s infinite 0.5s;
  z-index: -2;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  transform: scale(1.15) rotate(5deg);
  animation: shake 0.5s ease-in-out;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

.whatsapp-float i {
  color: white;
  font-size: 1.5rem;
  display: block;
  animation: icon-bounce 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-float:hover i {
  animation: icon-spin 0.6s ease-in-out;
  transform: scale(1.1);
}

/* Message tooltip */
.whatsapp-float .message-tooltip {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  margin-right: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.whatsapp-float .message-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .message-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-5px);
}

.notification-badge {
  position: absolute;
  right: -0.25rem;
  top: -0.25rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  animation: pulse 1.5s infinite;
}

/* ===== WHATSAPP KEYFRAME ANIMATIONS ===== */

/* Main bounce with pulse effect */
@keyframes pulse-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-8px) scale(1.05);
  }
  60% {
    transform: translateY(-4px) scale(1.02);
  }
}

/* Ripple effect */
@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/* Shake effect on hover */
@keyframes shake {
  0%, 100% { transform: scale(1.15) rotate(5deg); }
  25% { transform: scale(1.15) rotate(-2deg); }
  50% { transform: scale(1.15) rotate(3deg); }
  75% { transform: scale(1.15) rotate(-1deg); }
}

/* Icon bounce */
@keyframes icon-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* Icon spin on hover */
@keyframes icon-spin {
  0% { transform: rotate(0deg) scale(1.1); }
  50% { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1.1); }
}

/* Glow effect variant */
.whatsapp-float.glow {
  animation: pulse-bounce 3s infinite, glow-pulse 2s infinite alternate;
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 0 0 rgba(34, 197, 94, 0.4);
  }
  100% {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                0 0 20px rgba(34, 197, 94, 0.6);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .header-title {
    font-size: 1.75rem;
  }
  
  .header-description {
    font-size: 1rem;
  }
  
  .stats-container {
    gap: 1rem;
  }
  
  .stat-card {
    width: 8rem;
    padding: 1rem;
  }
  
  .university-row {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .visa-gallery {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 2rem auto;
  }
  
  .success-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .stat-item {
    width: 100%;
    max-width: 200px;
  }
  
  .currency-input-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .medical-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .medical-card {
    padding: 2rem;
  }
  
  .contact-form-section {
    margin: 2rem 1rem;
    padding: 2rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    padding: 0.75rem;
  }
  
  .whatsapp-float i {
    font-size: 1.25rem;
  }
  
  .whatsapp-float .message-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 0 1rem;
  }
  
  .main-header {
    padding: 2rem 1rem;
  }
  
  .logo {
    height: 6rem;
  }
  
  .converter-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    width: 3rem;
    height: 3rem;
  }
  
  .service-icon i {
    font-size: 1.25rem !important;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .main-nav,
  .whatsapp-float,
  .contact-form-section {
    display: none;
  }
  
  body {
    color: black;
    background: white;
  }
  
  .section-title::after {
    background: black;
  }
}