/* Fly High Education Consultancy - Main Styles */

/* CSS Variables (Design Tokens) */
:root {
  /* Colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-foreground: hsl(214, 27%, 17%);
  --color-background: hsl(0, 0%, 100%);
  
  --color-primary: hsl(142, 69%, 58%);
  --color-primary-foreground: hsl(0, 0%, 100%);
  --color-primary-hover: hsl(142, 69%, 50%);
  
  --color-secondary: hsl(152, 100%, 95%);
  --color-secondary-foreground: hsl(142, 69%, 25%);
  
  --color-accent: hsl(45, 100%, 60%);
  --color-accent-foreground: hsl(214, 27%, 17%);
  
  --color-muted: hsl(210, 40%, 95%);
  --color-muted-foreground: hsl(215.4, 16.3%, 46.9%);
  
  --color-border: hsl(214.3, 31.8%, 91.4%);
  --color-card: hsl(0, 0%, 100%);
  --color-card-foreground: hsl(214, 27%, 17%);
  
  /* Typography */
  --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;
  --letter-spacing-tight: -0.025em;
  --letter-spacing-normal: 0em;
  --letter-spacing-wide: 0.1em;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(142, 69%, 58%), hsl(142, 69%, 45%));
  --gradient-accent: linear-gradient(135deg, hsl(45, 100%, 60%), hsl(45, 100%, 50%));
  
  /* Shadows */
  --shadow-card: 0 4px 20px -2px hsl(214, 27%, 17%, 0.1);
  --shadow-elegant: 0 10px 30px -10px hsl(142, 69%, 58%, 0.3);
  --shadow-glow: 0 0 40px hsl(142, 69%, 58%, 0.4);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Spacing */
  --border-radius: 0.5rem;
  --container-max-width: 1200px;
  --section-padding: 5rem 0;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--color-background);
  color: var(--color-foreground);
  line-height: var(--line-height-normal);
  font-size: var(--font-size-base);
  font-weight: 400;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: var(--line-height-snug);
  margin-bottom: 1rem;
  letter-spacing: var(--letter-spacing-tight);
}

h1 { 
  font-size: var(--font-size-5xl); 
  font-weight: 800;
  line-height: var(--line-height-tight);
}
h2 { 
  font-size: var(--font-size-4xl); 
  font-weight: 700;
  line-height: 1.15;
}
h3 { 
  font-size: var(--font-size-3xl); 
  font-weight: 700;
}
h4 { 
  font-size: var(--font-size-2xl); 
  font-weight: 600;
}
h5 { 
  font-size: var(--font-size-xl); 
  font-weight: 600;
}
h6 { 
  font-size: var(--font-size-base); 
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--color-muted-foreground);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-hero);
  color: var(--color-primary-foreground);
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--color-accent-foreground);
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  gap: 0.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  transition: var(--transition-smooth);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-foreground);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  border-color: var(--color-primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-hero {
  background: var(--gradient-hero);
  color: var(--color-primary-foreground);
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Cards */
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-4px);
}

.card-header {
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-foreground);
}

.card-content {
  color: var(--color-muted-foreground);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card .btn {
  margin-top: auto;
}

/* Detailed Services Grid Layout */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-detailed-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
}

.service-detailed-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elegant);
  border-color: var(--color-primary);
}

.service-card-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.service-icon-detailed {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 1rem;
  border-radius: var(--border-radius);
  font-size: 1.5rem;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-title h3 {
  color: var(--color-foreground);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card-title p {
  color: var(--color-muted-foreground);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.service-card-content {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
}

.service-card-content h4 {
  color: var(--color-foreground);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-included-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--color-muted-foreground);
  font-size: 0.9rem;
}

.service-included-list li i {
  color: var(--color-primary);
  font-size: 0.875rem;
  min-width: 16px;
  flex-shrink: 0;
}

.service-included-list li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-card);
}

.navbar-top {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  padding: 0.5rem 0;
}

.navbar-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
}

.navbar-top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-top-right .tagline {
  display: block;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.875rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition-smooth);
}

.contact-info a:hover {
  color: var(--color-accent);
}

.navbar-main {
  padding: 1rem 0;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.navbar-logo img {
  height: 4rem;
  width: auto;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  flex: 1;
  justify-content: center;
  margin: 0 2rem;
}

.navbar-nav a {
  color: var(--color-muted-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
  padding-bottom: 2px;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-background);
}

.mobile-menu.show {
  display: block;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-content a {
  color: var(--color-muted-foreground);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.mobile-menu-content a:hover,
.mobile-menu-content a.active {
  color: var(--color-primary);
}

/* Navigation Consultation Button */
.btn-nav-consultation {
  background: var(--color-primary) !important;
  color: var(--color-primary-foreground) !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  border-bottom: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-nav-consultation:hover {
  background: var(--color-primary-hover) !important;
  color: var(--color-primary-foreground) !important;
  transform: translateY(-1px);
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-toggle i {
  font-size: 0.75rem;
  transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-muted-foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
  border-bottom: none !important;
}

.dropdown-menu a:hover {
  background: var(--color-muted);
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 5rem 0 8rem;
  color: var(--color-primary-foreground);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Hero content for inner pages without stats (centered layout) */
.hero-content-centered {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  align-items: center;
}

.hero-content-centered .hero-text {
  max-width: 800px;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-text .highlight {
  color: var(--color-accent);
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Hero Badge Styles */
.hero .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.hero .badge:hover {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  transform: scale(1.05);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
}

.hero-buttons .btn i {
  font-size: 1.1em;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-glow);
}

.hero-stats h3 {
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-accent);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Statistics Section Styles */
.stats-section {
  background: var(--color-background);
  padding: 4rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stats-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-background);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-primary);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.stats-card:hover {
  border-left-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-elegant);
}

.stats-card .stats-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: block;
  background: var(--color-secondary);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.stats-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stats-label {
  color: var(--color-muted-foreground);
  font-weight: 500;
  margin: 0;
  font-size: 0.95rem;
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

/* View All Button Styles */
.section .text-center {
  text-align: center;
}

.section .text-center .btn {
  margin-top: 3rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.section .text-center .btn:hover {
  transform: translateY(-2px);
}

/* Section CTA Buttons */
.text-center {
  text-align: center;
}

.mt-12 {
  margin-top: 3rem;
}

.text-center .btn {
  padding: 1rem 2.5rem;
  gap: 0.75rem;
  font-weight: 600;
  border-radius: 0.75rem;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.text-center .btn i {
  font-size: 1em;
  transition: var(--transition-smooth);
}

.text-center .btn:hover i {
  transform: translateX(4px);
}

/* Section spacing */
.section-spacing {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

/* Services Section Specific */
.services-grid {
  margin-bottom: 2rem;
}

/* Service Icons */
.service-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-primary-foreground);
  font-size: 1.5rem;
}

/* Universities Section */
.universities-section {
  background: var(--color-muted);
}

/* NOTE: Main universities-grid definition is further down in the UNIVERSITIES PAGE STYLES section */

/* NOTE: Main university-card definition is further down in the UNIVERSITIES PAGE STYLES section */

/* NOTE: University logo and other styles are defined in the UNIVERSITIES PAGE STYLES section */

/* Events Section */
.events-section {
  background: var(--color-background);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--color-card);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-4px);
}

.event-flag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.country-code {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.country-badge {
  background: var(--color-accent);
  color: var(--color-accent-foreground);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius);
  font-size: 0.75rem;
  font-weight: 600;
}

.event-content {
  padding-right: 4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-date,
.event-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.event-date i,
.event-time i {
  color: var(--color-primary);
}

.event-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin: 1rem 0 0.5rem 0;
}

.event-description {
  color: var(--color-muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.event-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Destinations Section */
.destinations-section {
  background: var(--color-background);
}

.destination-card {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(66, 153, 225, 0.05), rgba(255, 193, 7, 0.05));
}

.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 40px;
  opacity: 0.1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

/* Individual country flag backgrounds */
.destination-card:nth-child(1)::before {
  background-image: url('../assets/flags/australia.svg'); /* Australia */
}

.destination-card:nth-child(2)::before {
  background-image: url('../assets/flags/canada.svg'); /* Canada */
}

.destination-card:nth-child(3)::before {
  background-image: url('../assets/flags/uk.svg'); /* UK */
}

.destination-card:nth-child(4)::before {
  background-image: url('../assets/flags/usa.svg'); /* USA */
}

.destination-card:nth-child(5)::before {
  background-image: url('../assets/flags/newzealand.svg'); /* New Zealand */
}

.destination-card:nth-child(6)::before {
  background-image: url('../assets/flags/germany.svg'); /* Germany */
}

.destination-card .card-content {
  position: relative;
  z-index: 2;
}

.destination-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.destination-flag {
  font-size: 2rem;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.destination-star {
  color: var(--color-accent);
  font-size: 1.2rem;
}

/* Blog Section Fixes */
.section .grid-3 {
  overflow: visible;
}

.card-image {
  width: 100%;
  height: 200px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.card-excerpt {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-meta {
  margin-bottom: 1rem;
  font-size: 0.75rem;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--color-muted);
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  display: block;
  opacity: 1;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-prev,
.slider-next {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--color-primary-hover);
  transform: scale(1.1);
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--color-border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-indicator.active {
  background: var(--color-primary);
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

blockquote {
  font-style: italic;
  font-size: 1.125rem;
  margin: 1rem 0;
  line-height: 1.8;
}

blockquote.small {
  font-size: 1rem;
}

.testimonial-author {
  margin-top: 1.5rem;
}

.testimonial-author strong {
  color: var(--color-foreground);
  font-weight: 600;
}

/* Testimonial Avatar Styles */
.testimonial-avatar {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.testimonial-avatar.small {
  margin-bottom: 1rem;
}

.avatar-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-background);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.avatar-image.small {
  width: 60px;
  height: 60px;
  border-width: 3px;
}

.testimonial-slider .slide.active .avatar-image {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-card {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Newsletter Section Styles */
.newsletter {
  background: var(--color-muted);
  text-align: center;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
  background: var(--color-background);
  padding: 0.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  background: transparent;
  color: var(--color-foreground);
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-input::placeholder {
  color: var(--color-muted-foreground);
}

.newsletter-form .btn {
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 120px;
}

/* CTA Section Styles */
.cta-section {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  text-align: center;
}

.cta-content h2 {
  color: var(--color-primary-foreground);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  min-width: 200px;
}

.cta-buttons .btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-primary-foreground);
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Footer */
.footer {
  background: var(--color-foreground);
  color: var(--color-background);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
  color: var(--color-primary);
}

.footer-section ul li i {
  color: var(--color-accent);
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.badge-warning {
  background: var(--color-accent);
  color: var(--color-accent-foreground);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--color-accent);
}

.text-muted {
  color: var(--color-muted-foreground);
}

.font-medium {
  font-weight: 500;
}

.w-full {
  width: 100%;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.bg-muted {
  background-color: var(--color-muted);
}

.items-start {
  align-items: flex-start;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.hidden {
  display: none;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .navbar-top-right .tagline {
    display: none;
  }
  
  .contact-info {
    gap: 1rem;
  }
  
  .contact-info a span {
    display: none;
  }
  
  .hero {
    background-attachment: scroll;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content .lead {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .universities-grid,
  .events-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .university-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .university-logo {
    width: 60px;
    height: 60px;
  }
  
  .event-content {
    padding-right: 0;
  }
  
  .event-flag {
    position: static;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .card-image {
    height: 180px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
    gap: 0.75rem;
  }
  
  .newsletter-input {
    padding: 1rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  .university-card {
    padding: 1rem;
  }
  
  .event-card {
    padding: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .newsletter-form {
    padding: 0.25rem;
    gap: 0.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .lg\:block {
    display: block;
  }
}

/* Free Consultation Button */
.btn-accent {
  background: var(--gradient-accent);
  color: var(--color-accent-foreground);
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  gap: 0.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
  transition: var(--transition-smooth);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Navbar Free Consultation Button */
.navbar .btn-accent {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

/* Hero Badge */
.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: var(--color-primary-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  transition: var(--transition-smooth);
}

.badge:hover {
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--color-card);
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  margin: 0;
  color: var(--color-foreground);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-muted-foreground);
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: var(--color-muted);
  color: var(--color-foreground);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Additional Modal Enhancements */
.modal-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-icon i {
  font-size: 3rem;
  color: var(--color-primary);
  background: var(--color-secondary);
  padding: 1.5rem;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-title {
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--color-foreground);
}

.modal-subtitle {
  text-align: center;
  color: var(--color-muted-foreground);
  margin-bottom: 2rem;
}

/* Form Enhancements */
.required {
  color: #dc3545;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.select-wrapper {
  position: relative;
}

.select-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted-foreground);
  pointer-events: none;
  font-size: 0.875rem;
}

/* Form Validation Styles */
.form-input.error,
.form-select.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-input.success,
.form-select.success {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.success-message {
  color: var(--color-primary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* Consultation Modal Specific */
.consultation-modal-content {
  max-width: 600px;
}

.consultation-form .form-group {
  margin-bottom: 1.5rem;
}

.consultation-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-foreground);
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.consultation-form textarea {
  height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    width: 95%;
    margin: 1rem;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1rem;
  }
}

/* Process Section Horizontal Design */
.process-section {
  background: var(--color-background);
  padding: 5rem 0;
}

.process-steps-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.process-step-item {
  text-align: center;
  max-width: 250px;
  flex: 1;
}

.process-circle {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
  transition: var(--transition-smooth);
}

.process-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
}

.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin-bottom: 0.75rem;
}

.process-description {
  color: var(--color-muted-foreground);
  font-size: 0.95rem;
  line-height: 1.5;
}

.process-arrow {
  color: var(--color-muted-foreground);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
}

/* Responsive Design for Process */
@media (max-width: 1024px) {
  .process-steps-horizontal {
    gap: 1.5rem;
  }
  
  .process-arrow {
    margin: 0 0.5rem;
  }
  
  .process-circle {
    width: 70px;
    height: 70px;
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .process-steps-horizontal {
    flex-direction: column;
    gap: 2rem;
  }
  
  .process-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }
  
  .process-step-item {
    max-width: 300px;
  }
  
  .process-circle {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}

/* Additional Support Services Section */
.additional-support-section {
  background: #f8f9fa;
  padding: 5rem 0;
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.additional-service-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.additional-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.additional-service-icon {
  width: 80px;
  height: 80px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
  transition: var(--transition-smooth);
}

.additional-service-card:hover .additional-service-icon {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  transform: scale(1.1);
}

.additional-service-card h3 {
  color: var(--color-foreground);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.additional-service-card p {
  color: var(--color-muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Additional Services */
@media (max-width: 1024px) {
  .additional-services-grid {
    gap: 1.5rem;
  }
  
  .additional-service-card {
    padding: 2.5rem 1.5rem;
  }
  
  .additional-service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .additional-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .additional-service-card {
    padding: 2rem 1.5rem;
  }
  
  .additional-service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .additional-support-section {
    padding: 3rem 0;
  }
  
  .additional-service-card {
    padding: 1.5rem 1rem;
  }
}

/* Modern Contact Form Styles */
.contact-section-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background: var(--color-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-border);
}

.form-header-icon {
  margin-bottom: 2rem;
}

.whatsapp-icon {
  width: 50px;
  height: 50px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.form-header-icon h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.form-header-icon p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-modern .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label-modern {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin: 0;
}

.form-input-modern,
.form-select-modern,
.form-textarea-modern {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  background: var(--color-card);
  color: var(--color-foreground);
  transition: var(--transition-smooth);
  font-family: inherit;
  outline: none;
}

.form-input-modern:focus,
.form-select-modern:focus,
.form-textarea-modern:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea-modern {
  resize: vertical;
  min-height: 120px;
}

.form-input-modern::placeholder,
.form-textarea-modern::placeholder {
  color: #9ca3af;
}

.btn-send-modern {
  width: 100%;
  background: #10b981;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-send-modern:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-send-modern:active {
  transform: translateY(0);
}

.btn-send-modern i {
  font-size: 1.1em;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: var(--color-card);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.info-section {
  margin-bottom: 2rem;
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.info-header i {
  font-size: 1.25rem;
  color: var(--color-primary);
  width: 20px;
}

.info-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin: 0;
}

.info-section p {
  color: var(--color-muted-foreground);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.info-section a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.info-section a:hover {
  color: var(--color-accent);
}

.office-schedule {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-item .day {
  font-weight: 600;
  color: var(--color-foreground);
  font-size: 0.85rem;
}

.schedule-item .time {
  color: var(--color-muted-foreground);
  font-size: 0.85rem;
}

.social-links-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--color-foreground);
  transition: var(--transition-smooth);
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.social-link-item:hover {
  background: var(--color-muted);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.social-link-item.facebook:hover {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.social-link-item.instagram:hover {
  background: #e4405f;
  color: white;
  border-color: #e4405f;
}

.social-link-item.linkedin:hover {
  background: #0077b5;
  color: white;
  border-color: #0077b5;
}

.social-link-item.youtube:hover {
  background: #ff0000;
  color: white;
  border-color: #ff0000;
}

.social-link-item i {
  width: 16px;
}

.quick-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-contact-actions .btn {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
}

/* Modern Contact Info Cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-card-modern {
  background: var(--color-card);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: var(--transition-smooth);
  position: relative;
}

.contact-info-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition-smooth);
}

.contact-info-card-modern:hover .contact-info-icon {
  background: var(--color-accent);
  transform: scale(1.1);
}

.contact-info-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-details {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-details p {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

.phone-link,
.email-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
  display: inline-block;
  margin-bottom: 0.25rem;
}

.phone-link:hover,
.email-link:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.hours,
.response-time {
  color: #9ca3af;
  font-size: 0.9rem;
  font-style: italic;
  display: block;
  margin-top: 0.5rem;
}

/* Map Section */
.map-section {
  background: var(--color-muted);
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-content {
  text-align: center;
  color: white;
  max-width: 400px;
  padding: 2rem;
}

.map-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  backdrop-filter: blur(10px);
}

.map-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.map-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.map-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.map-actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.map-actions .btn-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  backdrop-filter: blur(10px);
}

.map-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* Responsive Design for Map Section */
@media (max-width: 768px) {
  .map-placeholder {
    min-height: 350px;
  }
  
  .map-content {
    padding: 1.5rem;
  }
  
  .map-content h3 {
    font-size: 1.75rem;
  }
  
  .map-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .map-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .map-actions .btn {
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .map-placeholder {
    min-height: 300px;
  }
  
  .map-content h3 {
    font-size: 1.5rem;
  }
  
  .map-content p {
    font-size: 1rem;
  }
}

/* FAQ Section */
.faq-section {
  background: var(--color-card);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 3rem;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  background: var(--color-card);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
  user-select: none;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-foreground);
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--color-accent);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
}

/* Active state styling */
.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.faq-item.active .faq-question {
  background: #f0f7ff;
}

.faq-item.active .faq-question h3 {
  color: var(--color-primary);
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
    padding-right: 0.75rem;
  }
  
  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 1rem 1.25rem;
  }
  
  .faq-question h3 {
    font-size: 0.95rem;
  }
  
  .faq-answer p {
    padding: 0 1.25rem 1.25rem;
  }
}

/* Mission & Vision Section */
.mission-vision-section {
  background: #f8f9fa;
  padding: 5rem 0;
}

.mission-vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-vision-item {
  background: var(--color-card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  position: relative;
  transition: var(--transition-smooth);
}

.mission-vision-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mission-item {
  border-left: 6px solid #10b981;
}

.vision-item {
  border-left: 6px solid #f59e0b;
}

.mission-vision-content {
  padding: 2.5rem;
}

.mission-vision-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mission-vision-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.mission-icon {
  background: #10b981;
}

.vision-icon {
  background: #f59e0b;
}

.mission-vision-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}

.mission-vision-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

/* Responsive Design for Mission & Vision */
@media (max-width: 1024px) {
  .mission-vision-container {
    gap: 2rem;
  }
  
  .mission-vision-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .mission-vision-section {
    padding: 3rem 0;
  }
  
  .mission-vision-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 600px;
  }
  
  .mission-vision-content {
    padding: 2rem 1.5rem;
  }
  
  .mission-vision-header h3 {
    font-size: 1.5rem;
  }
  
  .mission-vision-content p {
    font-size: 1rem;
  }
  
  .mission-vision-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .mission-vision-content {
    padding: 1.5rem 1rem;
  }
  
  .mission-vision-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .mission-vision-header h3 {
    font-size: 1.3rem;
  }
  
  .mission-vision-content p {
    font-size: 0.95rem;
    text-align: center;
  }
}

/* ===== ABOUT PAGE SECTIONS ===== */

/* Why Choose Section - ONLY for about page */
#why-choose {
    background: #f8f9fa;
    padding: 4rem 0;
}

#why-choose .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#why-choose .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

#why-choose .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

#why-choose .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#why-choose .why-choose-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    align-items: flex-start;
}

#why-choose .why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

#why-choose .why-choose-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

#why-choose .why-choose-content {
    flex: 1;
}

#why-choose .why-choose-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

#why-choose .why-choose-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Team Section - ONLY for about page */
#team .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

#team .team-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

#team .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

#team .team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

#team .team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#team .team-icon-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
}

#team .team-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

#team .team-position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

#team .team-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

#team .team-detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

#team .team-detail-item i {
    color: var(--accent-color);
    width: 16px;
    text-align: center;
}

/* Association Partners Section - ONLY for about page */
#association .partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

#association .partner-logo {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

#association .partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Official Certifications Section - ONLY for about page */
#certified {
    background: #f8f9fa;
    padding: 4rem 0;
}

#certified .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#certified .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

#certified .section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

#certified .certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#certified .certification-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

#certified .certification-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

#certified .certification-card.certification-card-single {
    grid-column: 2;
    margin-top: 2rem;
}

#certified .certification-icon {
    width: 80px;
    height: 80px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

#certified .certification-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

#certified .certification-subtitle {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.4;
}

#certified .certification-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Certifications */
@media (max-width: 1024px) {
    #certified .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    #certified .certification-card.certification-card-single {
        grid-column: span 2;
        max-width: 400px;
        margin: 2rem auto 0;
    }
}

@media (max-width: 768px) {
    #certified {
        padding: 3rem 0;
    }
    
    #certified .section-header h2 {
        font-size: 2rem;
    }
    
    #certified .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    #certified .certification-card {
        padding: 2rem 1.5rem;
    }
    
    #certified .certification-card.certification-card-single {
        grid-column: 1;
        margin: 0;
        max-width: none;
    }
    
    #certified .certification-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    #certified {
        padding: 2rem 0;
    }
    
    #certified .section-header h2 {
        font-size: 1.75rem;
    }
    
    #certified .certification-card {
        padding: 1.5rem 1rem;
    }
    
    #certified .certification-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    #certified .certification-content h3 {
        font-size: 1.25rem;
    }
}

/* ===== UNIVERSITIES PAGE STYLES ===== */

/* University Filters Section */
.university-filters {
    text-align: center;
    margin-bottom: 2rem;
}

.university-filters h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tab:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.filter-tab.active {
    background: #10b981;
    border-color: #10b981;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Enhanced Universities Grid */
.universities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Enhanced University Cards */
.university-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    border: 1px solid #f3f4f6;
    position: relative;
    width: 100%;
    max-width: none;
}

.university-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.university-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.university-card:hover::before {
    opacity: 1;
}

.university-logo {
    width: 100%;
    height: 120px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.university-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.university-info {
    padding: 1.5rem;
}

.university-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.university-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.university-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.university-location i {
    color: #10b981;
}

.university-ranking {
    margin-bottom: 1rem;
}

.ranking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.rank-number {
    font-size: 1rem;
    font-weight: 700;
}

.rank-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.university-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.university-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #f3f4f6;
    padding: 0.5rem 0.75rem;
    border-radius: 25px;
    font-size: 0.8rem;
    color: #374151;
    font-weight: 500;
}

.highlight-item i {
    color: #10b981;
    font-size: 0.75rem;
}

.university-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.university-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.university-actions .btn-primary {
    background: #10b981;
    border-color: #10b981;
}

.university-actions .btn-primary:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-1px);
}

.university-actions .btn-outline {
    border: 2px solid #10b981;
    color: #10b981;
}

.university-actions .btn-outline:hover {
    background: #10b981;
    color: white;
    transform: translateY(-1px);
}

/* ===== UNIVERSITY DETAIL PAGE STYLES - PROPERLY SCOPED ===== */

/* University Detail Header */
.university-detail-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem 0 4rem;
    position: relative;
}

.university-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

.university-hero {
    margin-top: 2rem;
}

.university-hero-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.university-logo-large {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #10b981;
}

.university-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.university-hero-info h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.university-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.university-hero-info .university-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
}

.university-hero-info .university-location i {
    color: #10b981;
    font-size: 1.2rem;
}

.university-ranking-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.university-ranking-large .rank-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.university-ranking-large .rank-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.university-lead {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.university-quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.university-quick-actions .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.university-quick-actions .btn-primary {
    background: #10b981;
    border-color: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.university-quick-actions .btn-primary:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.university-quick-actions .btn-outline {
    border: 2px solid #10b981;
    color: #10b981;
}

.university-quick-actions .btn-outline:hover {
    background: #10b981;
    color: white;
    transform: translateY(-2px);
}

/* University Stats Section - only for university detail page */
.university-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 0;
}

.university-stats .stat-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.university-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.university-stats .stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.university-stats .stat-item:hover::before {
    opacity: 1;
}

.university-stats .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.university-stats .stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.university-stats .stat-content p {
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

/* University Details Grid */
.university-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.university-main-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.university-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Detail Sections */
.detail-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f3f4f6;
}

.detail-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.detail-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #10b981, #059669);
    border-radius: 2px;
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.program-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.program-card:hover {
    background: white;
    border-color: #10b981;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.program-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.program-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.program-duration {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Requirements Section */
.requirements-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.req-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.req-tab.active {
    color: #10b981;
    border-bottom-color: #10b981;
}

.req-tab:hover {
    color: #10b981;
}

.requirement-level {
    display: none;
}

.requirement-level.active {
    display: block;
}

.requirement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.requirement-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.requirement-item h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.requirement-item h4 i {
    color: #10b981;
}

.requirement-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-item li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.requirement-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.facility-item {
    text-align: center;
    padding: 1.5rem;
}

.facility-item i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.facility-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.facility-item p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Sidebar Styling */
.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px solid #10b981;
}

.sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #10b981;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #374151;
    flex: 1;
}

.info-item span:last-child {
    color: #6b7280;
    text-align: right;
    flex: 1;
}

.scholarship-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.scholarship-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.scholarship-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.scholarship-item p {
    color: #10b981;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #374151;
}

.service-list i {
    color: #10b981;
    width: 16px;
}

.w-full {
    width: 100%;
}

.mt-3 {
    margin-top: 1rem;
}

/* Related Universities Section */
.related-universities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-uni-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.related-uni-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.related-uni-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0.5rem;
}

.related-uni-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-uni-card p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.related-uni-card .ranking {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.related-uni-card .btn {
    margin-top: 1rem;
    width: 100%;
}

/* Enhanced responsive design for University Detail */
@media (max-width: 1200px) {
    .university-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .university-detail-header {
        padding: 1.5rem 0 2.5rem;
    }
    
    .university-hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .university-logo-large {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .university-hero-info h1 {
        font-size: 2.25rem;
    }
    
    .university-meta {
        justify-content: center;
        gap: 1rem;
    }
    
    .university-quick-actions {
        justify-content: center;
    }
    
    .university-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .university-main-content {
        padding: 1.5rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .requirement-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .related-universities {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .info-item span:last-child {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .university-hero-info h1 {
        font-size: 1.875rem;
    }
    
    .university-lead {
        font-size: 1rem;
    }
    
    .university-quick-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .university-stats {
        grid-template-columns: 1fr;
    }
    
    .university-main-content {
        padding: 1rem;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BLOG DETAIL PAGE STYLES - PROPERLY SCOPED ===== */

.blog-detail-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem 0 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.blog-detail-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-detail-header .blog-meta {
    margin-bottom: 1rem;
}

.blog-detail-header .blog-category {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-detail-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-details {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    font-size: 1rem;
}

.author-role {
    color: #6b7280;
    margin: 0;
    font-size: 0.85rem;
}

.blog-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.blog-stat i {
    color: #10b981;
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-share span {
    font-weight: 600;
    color: #374151;
}

.social-buttons {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.share {
    background: #6b7280;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Featured Image Section */
.blog-featured-image {
    padding: 0 0 3rem;
}

.featured-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Blog Article Content */
.blog-article {
    padding: 3rem 0;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Prose Styling - Properly Scoped */
.blog-content .prose {
    color: #374151;
    line-height: 1.8;
    font-size: 1.125rem;
}

.blog-content .prose .lead {
    font-size: 1.25rem;
    color: #1f2937;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #10b981;
    border-radius: 0 8px 8px 0;
}

.blog-content .prose h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.blog-content .prose h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #10b981, #059669);
    border-radius: 2px;
}

.blog-content .prose p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-content .prose h2:first-child {
    margin-top: 1rem;
}

/* Content Divider */
.content-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    margin: 3rem 0;
}

/* Author Bio */
.author-bio {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
}

.author-bio-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-bio-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-bio-role {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.author-bio-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Related Posts Section */
.related-posts {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.related-posts h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.related-post {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.related-post-image {
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.related-post-meta i {
    color: #10b981;
}

.related-post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.related-post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.related-post-link:hover {
    color: #059669;
    transform: translateX(4px);
}

.related-post-link i {
    font-size: 0.85rem;
}

/* Responsive Design for Blog Detail */
@media (max-width: 768px) {
    .blog-detail-header {
        padding: 1.5rem 0 2rem;
        text-align: left;
    }
    
    .blog-detail-content {
        text-align: left;
    }
    
    .blog-detail-title {
        font-size: 2.25rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .social-share {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .blog-content .prose {
        font-size: 1rem;
    }
    
    .blog-content .prose .lead {
        font-size: 1.125rem;
        padding: 1rem;
    }
    
    .blog-content .prose h2 {
        font-size: 1.5rem;
    }
    
    .author-bio-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-bio-text {
        text-align: left;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-stats {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .blog-detail-title {
        font-size: 1.875rem;
    }
    
    .author-bio {
        padding: 1.5rem;
    }
    
    .author-bio-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .related-post-content {
        padding: 1rem;
    }
    
    .social-buttons {
        flex-wrap: wrap;
    }
}

/* ==============================================
   EVENTS PAGE - ENHANCED MODERN EVENT STYLES
   (Redesigned for better visual appeal)
   ============================================== */

/* Event Filters */
.event-filters {
  margin-bottom: 3rem;
}

.filter-btn {
  background: white;
  border: 2px solid #e2e8f0;
  color: var(--color-muted-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.filter-btn:hover {
  border-color: #22c55e;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.05);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-color: #22c55e;
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.filter-btn.active:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.filter-btn i {
  font-size: 0.875rem;
}

/* Events Grid Layout */
.events-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* Modern Event Cards - Redesigned to match uploaded image */
.event-card-modern {
  background: var(--color-card);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: auto;
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.event-card-modern:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.2);
}

/* Event Card Header with Country Display */
.event-card-header {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0 0;
}

.event-country-code {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-muted-foreground);
  opacity: 0.8;
  letter-spacing: 2px;
}

/* Event Type Badge (top-left) */
.event-type-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #22c55e;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  z-index: 2;
}

/* Country Badge (top-right) */
.event-country-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  border: 1px solid rgba(59, 130, 246, 0.2);
  z-index: 2;
}

/* Event Content */
.event-content-modern {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-title-modern {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-foreground);
  margin: 0 0 0.75rem 0;
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-tight);
}

/* Event Meta Row */
.event-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.event-date-info,
.event-time-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted-foreground);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.event-date-info i,
.event-time-info i {
  color: #22c55e;
  width: 16px;
}

/* Event Description */
.event-desc-modern {
  color: var(--color-muted-foreground);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
  flex: 1;
  font-size: var(--font-size-base);
  font-weight: 400;
}

/* Event Attendees and Location */
.event-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.event-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted-foreground);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.event-stat i {
  color: #22c55e;
  width: 16px;
}

/* Event Features Tags */
.event-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.event-feature-tag {
  background: #f1f5f9;
  color: var(--color-foreground);
  padding: 0.375rem 0.75rem;
  border-radius: 15px;
  font-size: var(--font-size-xs);
  font-weight: 600;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
}

.event-feature-tag:hover {
  background: #22c55e;
  color: white;
  border-color: #22c55e;
  transform: translateY(-1px);
}

/* Event Action Section */
.event-action-section {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.event-action-btn {
  background: #22c55e;
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: var(--letter-spacing-wide);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
}

.event-action-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
  color: white;
  text-decoration: none;
}

.event-share-btn {
  background: white;
  color: var(--color-muted-foreground);
  border: 2px solid #e2e8f0;
  padding: 0.875rem;
  border-radius: 8px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
}

.event-share-btn:hover {
  border-color: #22c55e;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.05);
  transform: translateY(-2px);
}

/* Event Summary Cards for Recent Events Section */
.event-summary-card {
  padding: 1.5rem;
  background: var(--color-card);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-summary-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.2);
}

.event-summary-card h4 {
  color: var(--color-foreground);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.event-summary-card .text-muted {
  color: #22c55e;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.event-summary-card p:last-child {
  color: var(--color-muted-foreground);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design for Events Page */
@media (max-width: 1200px) {
  .events-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .events-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .event-card-modern {
    border-radius: 12px;
    min-height: auto;
  }
  
  .event-card-header {
    height: 140px;
  }
  
  .event-country-code {
    font-size: 3rem;
  }
  
  .event-type-badge,
  .event-country-badge {
    top: 0.75rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.65rem;
  }
  
  .event-type-badge {
    left: 0.75rem;
  }
  
  .event-country-badge {
    right: 0.75rem;
  }
  
  .event-content-modern {
    padding: 1.25rem;
  }
  
  .event-title-modern {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-snug);
  }
  
  .event-meta-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .event-stats {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .event-features {
    gap: 0.375rem;
  }
  
  .event-feature-tag {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
  }
  
  .event-action-section {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .event-share-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .events-grid-modern {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .event-card-modern {
    margin: 0;
  }
  
  .event-card-header {
    height: 120px;
  }
  
  .event-country-code {
    font-size: 2.5rem;
  }
  
  .event-content-modern {
    padding: 1rem;
  }
  
  .event-filters {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* ==============================================
   EVENTS PAGE - ENHANCED ANIMATIONS & EFFECTS
   ============================================== */

/* Card Loading Animation */
@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.event-card-modern {
  animation: cardSlideIn 0.6s ease-out;
}

.event-card-modern:nth-child(1) { animation-delay: 0.1s; }
.event-card-modern:nth-child(2) { animation-delay: 0.2s; }
.event-card-modern:nth-child(3) { animation-delay: 0.3s; }
.event-card-modern:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced Date Badge Animation */
.event-date-badge-modern {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s both;
}

@keyframes bounceIn {
  from {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
  }
  50% {
    transform: scale(1.05) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Status Badge Animation */
.event-status-badge {
  animation: slideInRight 0.6s ease-out 0.7s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Enhanced Card Hover Effects */
.event-card-modern {
  position: relative;
}

.event-card-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(59, 130, 246, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.event-card-modern:hover::after {
  opacity: 1;
}

/* Enhanced Meta Info Hover */
.event-meta-info {
  transition: all 0.3s ease;
}

.event-card-modern:hover .event-meta-info {
  background: white;
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.1);
  transform: translateY(-2px);
}

/* Enhanced Badge Hover Effects */
.event-date-badge-modern,
.event-status-badge {
  transition: all 0.3s ease;
}

.event-card-modern:hover .event-date-badge-modern {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.event-card-modern:hover .event-status-badge {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Section Header Enhancements */
.events-section .section-header {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
}

.events-section .section-header::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 2px;
}

/* Enhanced Grid Animation */
.events-grid-modern {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Event Summary Cards Enhancement */
.event-summary-card {
  position: relative;
  overflow: hidden;
}

.event-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.event-summary-card:hover::before {
  transform: scaleY(1);
}

.event-summary-card h4 {
  transition: color 0.3s ease;
}

.event-summary-card:hover h4 {
  color: #22c55e;
}

/* Enhanced Notification Button */
.section .btn-outline {
  position: relative;
  overflow: hidden;
  border: 2px solid #22c55e;
  color: #22c55e;
  transition: all 0.4s ease;
}

.section .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
  transition: left 0.6s ease;
}

.section .btn-outline:hover {
  background: #22c55e;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.section .btn-outline:hover::before {
  left: 100%;
}

/* Enhanced Event Counter in Hero */
.hero .hero-text > div:first-child {
  animation: floatUp 0.8s ease-out;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Event Card Special Effects */
.event-card-modern {
  transform-style: preserve-3d;
}

.event-card-modern:hover {
  transform: translateY(-12px) rotateX(5deg);
}

/* Event Meta Info Individual Item Hover */
.event-info-item {
  transition: all 0.3s ease;
  border-radius: 6px;
  padding: 0.5rem;
  margin: -0.5rem;
}

.event-info-item:hover {
  background: rgba(34, 197, 94, 0.05);
  transform: translateX(5px);
}

/* Enhanced Notification CTA Section */
.notification-cta-section {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.notification-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  animation: rotateBackground 20s linear infinite;
  z-index: 0;
}

.notification-cta-section > * {
  position: relative;
  z-index: 1;
}

@keyframes rotateBackground {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.notification-cta-section:hover {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0) !important;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Enhanced Event Summary Cards in Past Events */
.event-summary-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-summary-card:hover {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-color: rgba(34, 197, 94, 0.2);
}

/* Add subtle animations to badges based on event type */
.event-date-badge-modern:hover {
  animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

/* Enhanced responsive grid for very small screens */
@media (max-width: 420px) {
  .events-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 0.5rem;
  }
  
  .event-card-modern {
    margin: 0;
    border-radius: 16px;
  }
  
  .event-content-modern {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}

/* ==============================================
   EVENT DETAIL PAGE - MODERN EVENT DETAIL STYLES
   ============================================== */

/* Event Hero Section */
.event-hero {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 0.8)), var(--gradient-hero);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.event-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.85), rgba(22, 163, 74, 0.75));
  z-index: 1;
}

.event-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  transform: translateX(-5px);
}

.back-link.light {
  color: rgba(255, 255, 255, 0.9);
}

.back-link.light:hover {
  color: white;
}

/* Event Badges */
.event-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.event-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-badge.primary {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.event-badge.secondary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.event-badge.outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

/* Event Hero Title */
.event-hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  line-height: var(--line-height-tight);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: var(--letter-spacing-tight);
}

/* Event Hero Info */
.event-hero-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.event-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 180px;
}

.event-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
}

.event-info-text {
  display: flex;
  flex-direction: column;
  color: white;
}

.event-info-text strong {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.event-info-text span {
  font-size: 0.875rem;
  opacity: 0.8;
  font-weight: 500;
}

/* Event Detail Content */
.event-detail-content {
  padding: 4rem 0;
  background: #f8fafc;
}

.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}

/* Main Content */
.event-main-content {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Event Section Cards */
.event-section-card {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.event-section-card:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.event-section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
  line-height: var(--line-height-snug);
  letter-spacing: var(--letter-spacing-tight);
}

.event-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 4px;
  height: 1.5rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 2px;
}

.event-section-content {
  line-height: 1.7;
  color: var(--color-muted-foreground);
}

.event-section-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.event-section-content p:last-child {
  margin-bottom: 0;
}

/* Event Features Grid */
.event-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.event-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.event-feature:hover {
  background: #f1f5f9;
  border-color: #22c55e;
  transform: translateY(-2px);
}

.event-feature i {
  color: #22c55e;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.event-feature span {
  font-weight: 500;
  color: var(--color-foreground);
}

/* Event Agenda */
.event-agenda {
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-top: 1.5rem;
}

.agenda-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.agenda-item:last-child {
  border-bottom: none;
}

.agenda-item:hover {
  background: white;
  transform: translateX(5px);
}

.agenda-time {
  font-size: 1.125rem;
  font-weight: 700;
  color: #22c55e;
  min-width: 120px;
  padding-right: 1.5rem;
  position: relative;
}

.agenda-time::after {
  content: '';
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.agenda-activity {
  font-weight: 600;
  color: var(--color-foreground);
  font-size: 1rem;
}

/* Universities Grid */
.universities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.university-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--color-foreground);
}

.university-item:hover {
  background: white;
  border-color: #22c55e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.15);
}

.university-number {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Event Sidebar */
.event-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Registration Card */
.event-registration-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 2rem;
}

.registration-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.registration-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 0.5rem;
}

.registration-header p {
  color: var(--color-muted-foreground);
  font-weight: 500;
}

/* Registration Details */
.registration-details {
  margin-bottom: 2rem;
}

.registration-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.registration-detail:last-child {
  border-bottom: none;
}

.registration-detail i {
  color: #22c55e;
  font-size: 1.125rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.detail-label {
  font-weight: 600;
  color: var(--color-foreground);
  min-width: 50px;
}

.detail-value {
  font-weight: 500;
  color: var(--color-muted-foreground);
}

/* Registration Buttons */
.registration-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 2px solid #22c55e;
  color: #22c55e;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #22c55e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

/* Requirements Card */
.event-requirements-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-requirements-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 1.5rem;
  text-align: center;
}

.requirements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.requirements-list li:hover {
  background: #f1f5f9;
  border-color: #22c55e;
  transform: translateX(5px);
}

.requirements-list li i {
  color: #22c55e;
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.requirements-list li span {
  font-weight: 500;
  color: var(--color-foreground);
  line-height: 1.5;
}

/* Responsive Design for Event Detail */
@media (max-width: 1024px) {
  .event-detail-grid {
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
  
  .event-main-content {
    padding: 2rem;
  }
  
  .event-registration-card,
  .event-requirements-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .event-hero {
    padding: 6rem 0 4rem;
  }
  
  .event-hero-title {
    font-size: 2.5rem;
  }
  
  .event-hero-info {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .event-info-item {
    min-width: auto;
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .event-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .event-main-content {
    padding: 1.5rem;
  }
  
  .event-section-title {
    font-size: 1.5rem;
  }
  
  .event-features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .universities-grid {
    grid-template-columns: 1fr;
  }
  
  .agenda-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.25rem;
  }
  
  .agenda-time {
    min-width: auto;
    padding-right: 0;
    font-size: 1rem;
  }
  
  .agenda-time::after {
    display: none;
  }
  
  .event-registration-card {
    position: static;
  }
}

@media (max-width: 480px) {
  .event-hero {
    padding: 5rem 0 3rem;
  }
  
  .event-hero-title {
    font-size: var(--font-size-4xl);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
  }
  
  .event-badges {
    gap: 0.5rem;
  }
  
  .event-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .back-link {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .event-main-content {
    padding: 1.25rem;
  }
  
  .event-section-card {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .event-section-title {
    font-size: 1.375rem;
    padding-left: 0.75rem;
  }
  
  .event-section-title::before {
    width: 3px;
    height: 1.25rem;
  }
  
  .event-feature {
    padding: 0.75rem;
  }
  
  .event-registration-card,
  .event-requirements-card {
    padding: 1.25rem;
  }
  
  .registration-header h3 {
    font-size: 1.25rem;
  }
  
  .requirements-list li {
    padding: 0.5rem;
  }
}

/* ==============================================
   EVENT DETAIL PAGE - ANIMATIONS & ENHANCEMENTS
   ============================================== */

/* Event Detail Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@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);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Apply animations to event detail elements */
.event-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.event-main-content {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.event-sidebar {
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.event-section-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Enhanced Event Feature Hover Effects */
.event-feature {
  position: relative;
  overflow: hidden;
}

.event-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
  transition: left 0.6s ease;
}

.event-feature:hover::before {
  left: 100%;
}

/* Enhanced University Item Animations */
.university-item {
  position: relative;
  overflow: hidden;
}

.university-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 3px;
  height: 100%;
  background: #22c55e;
  transition: right 0.3s ease;
}

.university-item:hover::after {
  right: 0;
}

/* Enhanced Button Styles for Event Detail */
.event-registration-card .btn-primary {
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

.event-registration-card .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.event-registration-card .btn-primary:hover {
  animation: none;
}

.event-registration-card .btn-primary:hover::before {
  left: 100%;
}

/* Loading state for better UX */
.event-detail-content {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* Enhanced scrollbar for webkit browsers */
.event-main-content::-webkit-scrollbar {
  width: 6px;
}

.event-main-content::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.event-main-content::-webkit-scrollbar-thumb {
  background: #22c55e;
  border-radius: 3px;
}

.event-main-content::-webkit-scrollbar-thumb:hover {
  background: #16a34a;
}

/* Floating action effect for sidebar cards */
.event-registration-card,
.event-requirements-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-registration-card:hover,
.event-requirements-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced agenda item hover effects */
.agenda-item {
  position: relative;
  overflow: hidden;
}

.agenda-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.1), transparent);
  transition: width 0.3s ease;
}

.agenda-item:hover::before {
  width: 100%;
}

/* Event badge hover effects */
.event-badge {
  transition: all 0.3s ease;
}

.event-badge:hover {
  transform: translateY(-2px);
}

.event-badge.primary:hover {
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.event-badge.secondary:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.event-badge.outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Back to Top Button for Event Detail */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}
