/* ==========================================================================
   Tarık Dil Yabancı Dil Kursları - Modern Design System (CSS)
   ========================================================================== */

:root {
  /* Color Palette - Vibrant Magenta / Purple Gradient Theme */
  --primary: #d946ef;          /* Bright Magenta Pink */
  --primary-hover: #c026d3;    /* Deep Magenta Pink */
  --primary-dark: #86198f;
  --secondary: #2e1065;        /* Deep Violet Midnight Blue */
  --accent: #a855f7;           /* Purple Accent */
  --accent-light: #fdf4ff;
  --success: #10b981;
  --warning: #f59e0b;
  --bg-light: #faf5ff;
  --bg-white: #ffffff;
  --text-dark: #1e1b4b;
  --text-muted: #6b21a8;
  --text-light: #a855f7;
  --border-color: #f0abfc;
  
  /* Modern Glassmorphism & Shadows */
  --shadow-sm: 0 2px 4px rgba(46, 16, 101, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(217, 70, 239, 0.15);
  --shadow-lg: 0 20px 35px -10px rgba(168, 85, 247, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(240, 171, 252, 0.4);

  /* Typography */
  --font-heading: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.text-center { text-align: center; }
.text-white { color: #fff !important; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.4);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--secondary);
}

.btn-outline:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: #fff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

/* Header & Navigation */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover .brand-logo-img {
  transform: scale(1.08) rotate(-2deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
}

.nav-item:hover, .nav-item.active {
  color: var(--primary);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-item.active::after, .nav-item:hover::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.drop-arrow {
  font-size: 0.75rem;
  transition: var(--transition);
}

.dropdown:hover .drop-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 12px 0;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: var(--bg-light);
  color: var(--primary);
  padding-left: 24px;
}

.flag-icon {
  font-size: 1.2rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
}

.lang-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  width: 160px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
}

.lang-dropdown.show {
  display: flex;
}

.lang-dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  text-align: left;
}

.lang-dropdown button:hover {
  background-color: var(--accent-light);
  color: var(--accent);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--secondary);
  cursor: pointer;
}

/* Page Views System */
.page-view {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.page-view.active {
  display: block;
}

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

/* Section Header styling */
.section-header {
  max-width: 650px;
  margin: 0 auto 50px auto;
  position: relative;
}

.stamp-seal {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
  transform: rotate(-3deg);
}

.sub-title {
  display: block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--secondary);
}

.header-line {
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  margin: 16px auto 0 auto;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 80px 0 100px 0;
  background: radial-gradient(circle at top right, #fff7ed, #ffffff);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.hero-title {
  font-size: 3.8rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.hero-stats-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #ffffff;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  max-width: 520px;
}

.stat-highlight {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
}

.stat-divider {
  width: 1px;
  height: 45px;
  background-color: var(--border-color);
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.stat-desc i {
  color: var(--success);
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Hero Visual */
.hero-visual-wrapper {
  position: relative;
}

.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-main-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Floating Flag Badges (Books with Flag) */
.drop-flag {
  width: 20px;
  height: 15px;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
}

.card-flag {
  width: 24px;
  height: 18px;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.detail-flag {
  width: 40px;
  height: 30px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid #fff;
  animation: float 4s ease-in-out infinite;
}

.badge-de { top: 30px; left: -25px; animation-delay: 0s; }
.badge-uk { top: 180px; right: -20px; animation-delay: 1.3s; }
.badge-nl { bottom: 60px; left: -15px; animation-delay: 2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-avatars {
  position: absolute;
  bottom: -25px;
  right: 30px;
  background: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.avatar-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-group img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-right: -10px;
  object-fit: cover;
}

.more-avatars {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  margin-left: 4px;
}

/* Program Cards */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

.program-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.3);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.country-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 50px;
  height: 50px;
  background-color: #fff7ed;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.card-tags span {
  background-color: var(--bg-light);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.card-link {
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-link:hover {
  gap: 12px;
}

.feature-card {
  background: linear-gradient(135deg, var(--secondary), #1e293b);
  color: #ffffff;
}

.feature-card h3 { color: #ffffff; }
.feature-card p { color: #94a3b8; }
.pulse-icon { background: rgba(255, 255, 255, 0.1); color: var(--primary); }

/* About Preview */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.speech-bubble {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-color);
}

.speech-bubble i {
  font-size: 2rem;
  color: var(--primary);
}

.speech-bubble strong {
  display: block;
  font-size: 1rem;
  color: var(--secondary);
}

.speech-bubble p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.lead-text {
  font-size: 1.15rem;
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 24px;
}

.slogan-box {
  background-color: #fff7ed;
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.slogan-box i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 2px;
}

.slogan-box h4 {
  font-size: 1.1rem;
  color: var(--primary);
}

.desc-text {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Parallax Banner Section */
.parallax-banner {
  position: relative;
  background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('https://images.pexels.com/photos/267885/pexels-photo-267885.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  color: #ffffff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .parallax-banner {
    background-attachment: fixed;
  }
}

.parallax-overlay {
  display: none;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.parallax-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.parallax-content h2 {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 800;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.parallax-content p {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin-bottom: 36px;
}

/* Card Hover Enhancements */
.hero-visual-wrapper, .program-card, .apply-form-card, .stat-box {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.program-card:hover, .apply-form-card:hover {
  transform: translateY(-6px);
}


/* Application Form Section */
.apply-section {
  background: linear-gradient(135deg, var(--secondary), #0f172a);
  color: #ffffff;
}

.apply-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.apply-info h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.apply-info p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-quick-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.quick-item i {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.quick-item span {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
}

.quick-item strong {
  font-size: 1rem;
  color: #ffffff;
}

.apply-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--secondary);
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--text-light);
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
  width: 100%;
  padding: 12px 16px 12px 46px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.input-with-icon textarea {
  padding-top: 12px;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-checkbox input {
  margin-top: 4px;
}

.form-checkbox label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Secondary Page Header */
.page-header-bg {
  background: linear-gradient(135deg, var(--secondary), #1e293b);
  color: #fff;
  padding: 60px 0;
}

.page-header-bg h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.page-header-bg p {
  color: #94a3b8;
  font-size: 1.1rem;
}

/* Detailed Programs Page */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.detailed-programs-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.prog-detail-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.prog-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.country-flag {
  font-size: 2.5rem;
}

.feature-list {
  margin: 20px 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 500;
}

.feature-list i {
  color: var(--success);
}

/* About & Blog Grids */
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.mv-box {
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius-sm);
}

.mv-box i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.about-image-stack img {
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-img {
  position: relative;
  height: 220px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 15px;
}

/* Contact Grid */
.contact-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.info-box-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.info-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-box i {
  width: 44px;
  height: 44px;
  background: #fff7ed;
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.map-mockup {
  height: 100%;
  min-height: 350px;
  background: #e2e8f0;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.map-mockup i {
  font-size: 3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

/* Footer Section & Statistics */
.footer-section {
  background-color: var(--secondary);
  color: #ffffff;
  padding-top: 0;
  position: relative;
}

.footer-stats-wrapper {
  transform: translateY(-50%);
  margin-bottom: -50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  box-shadow: var(--shadow-lg);
}

.stat-box {
  text-align: center;
  color: var(--secondary);
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.stat-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-main {
  padding: 80px 0 50px 0;
}

.footer-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo .brand-title { color: #fff; }
.footer-logo .brand-sub { color: #94a3b8; }
.footer-desc { color: #94a3b8; margin: 20px 0; max-width: 300px; }

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

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

.footer-col ul a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-col ul a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  padding: 12px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border: none;
  width: 100%;
  outline: none;
}

.newsletter-form button {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 0 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  color: #64748b;
  font-size: 0.85rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-container, .about-grid, .apply-wrapper, .about-full-grid, .contact-full-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-content-grid {
    grid-template-columns: 1fr;
  }
}
