/* ============================================
   UNITAS FLYING ACADEMY — Campus Page Styles
   Design System v2.0
   ============================================ */

/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --color-primary: #0057B8;
  --color-secondary: #1E88E5;
  --color-navy: #0B1F3A;
  --color-sky: #EAF5FF;
  --color-white: #FFFFFF;
  --color-surface: #F8FAFC;
  --color-border: #DCE7F5;
  --color-text: #111827;
  --color-text-secondary: #6B7280;
  --color-success: #22C55E;
  --color-warning: #F59E0B;
  --color-error: #EF4444;

  /* Typography */
  --font-family: 'Manrope', 'Inter', sans-serif;
  --font-hero: clamp(40px, 5vw, 72px);
  --font-section: clamp(32px, 4vw, 48px);
  --font-card: clamp(22px, 2.5vw, 28px);
  --font-body: 18px;
  --font-small: 16px;
  --font-caption: 14px;
  --font-button: 16px;

  /* Spacing */
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
  --space-96: 96px;
  --space-120: 120px;

  /* Layout */
  --max-width: 1440px;
  --content-width: 1200px;

  /* Components */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 4px 16px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 8px 32px rgba(11, 31, 58, 0.10);
  --shadow-xl: 0 16px 48px rgba(11, 31, 58, 0.12);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-family);
}

ul, ol {
  list-style: none;
}

/* --- Utility --- */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-24);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  font-size: var(--font-caption);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-16);
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}

.section-heading {
  font-size: var(--font-section);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: var(--space-16);
}

.section-subheading {
  font-size: var(--font-body);
  color: var(--color-text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-16) var(--space-32);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

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

.logo-name {
  font-size: var(--font-small);
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition-base);
}

.scrolled .logo-name {
  color: var(--color-navy);
}

.logo-tagline {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  transition: color var(--transition-base);
}

.scrolled .logo-tagline {
  color: var(--color-text-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-32);
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: var(--space-4) 0;
  transition: color var(--transition-base);
}

.scrolled .nav-links a {
  color: var(--color-text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}

.scrolled .nav-links a:hover,
.scrolled .nav-links a.active {
  color: var(--color-primary);
}

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

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

.nav-cta {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  padding: var(--space-12) var(--space-24) !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  font-size: var(--font-button) !important;
  box-shadow: 0 2px 8px rgba(0, 87, 184, 0.3);
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #004a9e !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 87, 184, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-8);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.scrolled .menu-toggle span {
  background: var(--color-navy);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 85vh;
  min-height: 560px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 31, 58, 0.25) 0%,
    rgba(11, 31, 58, 0.45) 50%,
    rgba(11, 31, 58, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-32) var(--space-80);
  width: 100%;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-24);
  font-size: var(--font-caption);
  color: rgba(255, 255, 255, 0.65);
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-base);
}

.hero-breadcrumb a:hover {
  color: var(--color-white);
}

.hero-breadcrumb .separator {
  font-size: 12px;
}

.hero-breadcrumb .current {
  color: var(--color-white);
  font-weight: 500;
}

.hero h1 {
  font-size: var(--font-hero);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-16);
  max-width: 700px;
}

.hero-description {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
  padding: var(--space-120) 0;
  background: var(--color-white);
}

.locations-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-96);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: center;
}

.location-grid.reverse .location-image-wrapper {
  order: 2;
}

.location-grid.reverse .location-content {
  order: 1;
}

.location-map-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-12) var(--space-20);
  background: var(--color-sky);
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--font-small);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 87, 184, 0.25);
  margin-top: var(--space-12);
  margin-bottom: var(--space-24);
  transition: all var(--transition-base);
  width: fit-content;
  text-decoration: none;
}

.location-map-btn svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  transition: transform var(--transition-base);
}

.location-map-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0, 87, 184, 0.25);
  transform: translateY(-2px);
}

.location-map-btn:hover svg {
  color: var(--color-white);
  transform: scale(1.1);
}

.location-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.location-image-wrapper:hover img {
  transform: scale(1.02);
}

.location-badge {
  position: absolute;
  bottom: var(--space-24);
  left: var(--space-24);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: var(--space-12) var(--space-24);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: var(--space-12);
  box-shadow: var(--shadow-md);
}

.location-badge svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.location-badge span {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
}

.location-content {
  display: flex;
  flex-direction: column;
}

.location-content .section-subheading {
  margin-bottom: var(--space-32);
}

.location-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-24);
  margin-top: var(--space-16);
}

.location-stat {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  padding: var(--space-24);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.location-stat:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.stat-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}

.stat-info p {
  font-size: var(--font-caption);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ============================================
   VEREENIGING CITY SECTION
   ============================================ */
.city-section {
  padding: var(--space-120) 0;
  background: var(--color-surface);
}

.city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: center;
}

.city-content {
  order: 2;
}

.city-description {
  font-size: var(--font-body);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-32);
}

.city-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.city-highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-16) var(--space-24);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.city-highlight-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.city-highlight-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.city-highlight-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-navy);
}

.city-image-wrapper {
  order: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.city-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.city-image-wrapper:hover img {
  transform: scale(1.02);
}

/* ============================================
   STUDENT ACCOMMODATION SECTION
   ============================================ */
.accommodation-section {
  padding: var(--space-120) 0;
  background: var(--color-white);
}

.accommodation-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-64);
}

.accommodation-header .section-label {
  justify-content: center;
}

.accommodation-header .section-subheading {
  margin: 0 auto;
}

/* Slider */
.accommodation-slider {
  position: relative;
  margin-bottom: var(--space-80);
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.slider-track {
  display: flex;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
  min-width: 100%;
  position: relative;
  height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
}

.slider-slide-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: blur(28px) brightness(0.45);
  pointer-events: none;
  z-index: 1;
}

.slider-slide-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 580px;
  object-fit: contain;
}

.slider-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: var(--space-32) var(--space-48);
  background: linear-gradient(to top, rgba(11, 31, 58, 0.92) 0%, rgba(11, 31, 58, 0.5) 70%, transparent 100%);
  pointer-events: none;
}

.slider-slide-caption h3 {
  font-size: var(--font-card);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.slider-slide-caption p {
  font-size: var(--font-small);
  color: rgba(255, 255, 255, 0.75);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: var(--space-32);
  right: var(--space-48);
  display: flex;
  align-items: center;
  gap: var(--space-16);
  z-index: 5;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: var(--color-white);
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-counter {
  font-size: var(--font-caption);
  font-weight: 600;
  color: var(--color-white);
  min-width: 48px;
  text-align: center;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-24);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all var(--transition-base);
  cursor: pointer;
}

.slider-dot.active {
  width: 32px;
  border-radius: 4px;
  background: var(--color-primary);
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
  margin-top: var(--space-48);
}

.amenity-card {
  padding: var(--space-32);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-base);
}

.amenity-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-16);
}

.amenity-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.amenity-card h4 {
  font-size: var(--font-small);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-8);
}

.amenity-card p {
  font-size: var(--font-caption);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Accommodation Options */
.accommodation-options {
  margin-top: var(--space-80);
}

.accommodation-options-header {
  text-align: center;
  margin-bottom: var(--space-48);
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-32);
}

.option-card {
  position: relative;
  padding: var(--space-48);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  transition: all var(--transition-base);
  overflow: hidden;
}

.option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.option-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.option-card:hover::before {
  opacity: 1;
}

.option-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-sky);
  padding: var(--space-4) var(--space-16);
  border-radius: 100px;
  margin-bottom: var(--space-16);
  letter-spacing: 0.04em;
}

.option-card h3 {
  font-size: var(--font-card);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-12);
}

.option-card > p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-24);
}

.option-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.option-features li {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  font-size: 15px;
  color: var(--color-text);
}

.option-features li svg {
  width: 18px;
  height: 18px;
  color: var(--color-success);
  flex-shrink: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--space-120) 0;
  background: var(--color-surface);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-64);
}

.faq-header .section-subheading {
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(0, 87, 184, 0.3);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-24) var(--space-32);
  text-align: left;
  font-size: var(--font-small);
  font-weight: 600;
  color: var(--color-navy);
  transition: color var(--transition-base);
  gap: var(--space-16);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.active .faq-icon {
  background: var(--color-primary);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  transition: color var(--transition-base);
}

.faq-item.active .faq-icon svg {
  color: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 var(--space-32) var(--space-32);
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--space-96) 0;
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 87, 184, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: var(--font-section);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-16);
}

.cta-content p {
  font-size: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-32);
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-16) var(--space-32);
  border-radius: var(--radius-md);
  font-size: var(--font-button);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 87, 184, 0.35);
  transition: all var(--transition-base);
}

.btn-primary:hover {
  background: #004a9e;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 87, 184, 0.45);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  background: transparent;
  color: var(--color-white);
  padding: var(--space-16) var(--space-32);
  border-radius: var(--radius-md);
  font-size: var(--font-button);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #060F1E;
  padding: var(--space-80) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-48);
  padding-bottom: var(--space-64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: var(--space-24);
}

.footer-brand .logo-name {
  color: var(--color-white);
}

.footer-brand .logo-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.footer-description {
  font-size: var(--font-caption);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: var(--space-24);
}

.footer-accreditation {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-8) var(--space-16);
  background: rgba(34, 197, 94, 0.1);
  border-radius: 100px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.footer-accreditation svg {
  width: 16px;
  height: 16px;
  color: var(--color-success);
}

.footer-accreditation span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-success);
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-24);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.footer-column ul a {
  font-size: var(--font-caption);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-base);
}

.footer-column ul a:hover {
  color: var(--color-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: var(--font-caption);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-24) 0;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  gap: var(--space-24);
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Mobile Nav */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-navy);
    z-index: 999;
    justify-content: center;
    align-items: center;
    gap: var(--space-32);
    padding: var(--space-48);
  }

  .nav-links.mobile-open a {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
  }

  .nav-links.mobile-open .nav-cta {
    margin-top: var(--space-16);
  }

  .mobile-close {
    position: absolute;
    top: var(--space-24);
    right: var(--space-24);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
  }

  .hero {
    height: 70vh;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: var(--space-48);
  }

  .location-grid.reverse .location-image-wrapper {
    order: 1;
  }

  .location-grid.reverse .location-content {
    order: 2;
  }

  .location-image-wrapper img {
    height: 360px;
  }

  .city-grid {
    grid-template-columns: 1fr;
    gap: var(--space-48);
  }

  .city-content {
    order: 1;
  }

  .city-image-wrapper {
    order: 2;
  }

  .city-image-wrapper img {
    height: 400px;
  }

  .slider-slide,
  .slider-slide-img {
    height: 440px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-32);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 0 var(--space-24) var(--space-48);
  }

  .hero-breadcrumb {
    margin-bottom: var(--space-16);
  }

  .location-section,
  .city-section,
  .accommodation-section,
  .faq-section {
    padding: var(--space-80) 0;
  }

  .location-image-wrapper img {
    height: 260px;
  }

  .location-stats {
    grid-template-columns: 1fr;
  }

  .city-image-wrapper img {
    height: 280px;
  }

  .slider-slide,
  .slider-slide-img {
    height: 320px;
  }

  .slider-controls {
    right: var(--space-16);
    bottom: var(--space-16);
  }

  .slider-slide-caption {
    padding: var(--space-16) var(--space-24);
  }

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

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

  .option-card {
    padding: var(--space-32);
  }

  .faq-question {
    padding: var(--space-16) var(--space-24);
    font-size: 15px;
  }

  .faq-answer-inner {
    padding: 0 var(--space-24) var(--space-24);
  }

  .cta-section {
    padding: var(--space-64) 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-32);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-16);
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   MAADI BRANCH SLIDER STYLES
   ============================================ */
.maadi-slider-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.maadi-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  background: var(--color-navy);
}

.maadi-slider-track {
  display: flex;
  height: 100%;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.maadi-slider-slide {
  min-width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
}

.maadi-slider-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.maadi-slider-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.maadi-slider-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
}

.maadi-slider-btn:hover {
  background: var(--color-primary);
  transform: scale(1.1);
}

.maadi-slider-btn svg {
  width: 16px;
  height: 16px;
}

.maadi-slider-counter {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 0 6px;
  letter-spacing: 0.05em;
}

.maadi-slider-dots {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 15;
  display: flex;
  gap: 8px;
  background: rgba(11, 31, 58, 0.65);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 999px;
}

.maadi-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.maadi-slider-dot.active {
  background: var(--color-primary);
  width: 22px;
  border-radius: 4px;
}


