/* 
=== CSS Variables & Theming ===
Modern Green & Earthy palette with Glassmorphism
*/

@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap";

:root {
  /* Coastal Navy & Teal Theme */
  --primary-color: #567C8D;
  --primary-color-hover: #426372;
  --accent-color: #C8D9E6;

  --bg-color: #2F4156;
  --bg-alt: #1e2a38;
  --card-bg: rgba(255, 255, 255, 0.05);

  --text-main: #F5EFEB;
  --text-muted: #C8D9E6;
  --border-color: rgba(255, 255, 255, 0.15);

  --nav-bg: rgba(47, 65, 86, 0.88);
  --footer-bg: #141c26;
  --footer-text: #F5EFEB;

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 20px rgba(86, 124, 141, 0.3);

  --sky-flare-1: rgba(86, 124, 141, 0.15);
  --sky-flare-2: rgba(86, 124, 141, 0.1);

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}



/* === Global Resets & Typography === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.7;
  transition: background-color var(--transition), color var(--transition);
  overflow-x: hidden;
  position: relative;
}

/* Premium background effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at 10% 20%, var(--sky-flare-1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, var(--sky-flare-2) 0%, transparent 40%);
  z-index: -1;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Utilities === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  color: #fff;
  box-shadow: 0 4px 15px rgba(86, 124, 141, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color-hover), var(--primary-color));
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(86, 124, 141, 0.2);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-main);
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.section-title h2::before,
.section-title h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.section-title.centered {
  text-align: center;
}

.underline {
  display: none;
  /* Removed for the new line-based style */
}

/* === Navbar === */
.navbar {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  background-color: var(--nav-bg);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all var(--transition);
}

.navbar.scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  box-shadow: var(--shadow-md);
  border-top: none;
  border-left: none;
  border-right: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 30px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.logo i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links li a {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-main);
  position: relative;
  transition: color var(--transition);
  padding: 5px 0;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-color);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 5px;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-actions button,
.hamburger {
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.nav-actions button:hover,
.hamburger:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1) rotate(10deg);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.lang-btn {
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem !important;
}

.hamburger {
  display: none;
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  margin-top: 0;
  border-radius: 0 0 50px 50px;
  box-shadow: var(--shadow-md);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 10s linear;
  transform: scale(1.05);
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0;
  background-color: #000;
  z-index: 5;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider video {
  filter: brightness(0.4);
}

.premium-hero-title {
  font-size: 14vw;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.08);
  /* Massive background text */
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.hero-content {
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.hero-main-text {
  margin-top: 15vh;
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-highlight-cards {
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: center;
  padding-bottom: 0px;
  overflow-x: auto;
  flex-wrap: nowrap;
  transform: translateY(145px);
  z-index: 10;
  position: relative;
}

.highlight-card {
  min-width: 140px;
  height: 200px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.highlight-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary-color);
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.6s ease;
}

.highlight-card:hover img {
  transform: scale(1.1);
}

.highlight-card .card-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  text-align: left;
}

.highlight-card .card-info span {
  display: block;
  font-size: 0.65rem;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.highlight-card .card-info p {
  font-size: 0.85rem;
  margin: 2px 0 0;
  color: #fff;
  font-weight: 600;
  text-shadow: none;
}


/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Journey Section (Redesigned Intro) === */
.journey {
  background: #000;
  padding: 120px 0;
}

.journey-path {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 40px 0;
}

.journey-path::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.journey-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 80px;
  position: relative;
}

.journey-item.reverse {
  flex-direction: row-reverse;
}

.journey-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px #fff;
}

.journey-content {
  width: 45%;
  padding: 30px;
  text-align: right;
}

.journey-item.reverse .journey-content {
  text-align: left;
}

.journey-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 5px;
}

.journey-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.journey-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.journey-image {
  width: 45%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.journey-item:hover .journey-image img {
  transform: scale(1.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.journey {
  padding-top: 80px;
  background: #000;
  position: relative;
}

.premium-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  transition: var(--transition);
}

.premium-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

/* === News Card Modernization === */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* === Stats Section === */
.stats {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  border-radius: 40px;
  margin: 40px 20px;
}

.stats::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-color-hover) 0%, transparent 70%);
  opacity: 0.05;
  top: -300px;
  left: -300px;
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card {
  padding: 40px 20px;
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.stat-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(86, 124, 141, 0.4);
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-card i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.5s;
}

.stat-card:hover i {
  transform: scale(1.2) rotate(10deg);
}

.stat-card h3 {
  font-size: 3.2rem;
  color: var(--text-main);
  margin-bottom: 5px;
  font-weight: 800;
}

.stat-card p {
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
}

/* === News Section === */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.news-card {
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.news-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(86, 124, 141, 0.4);
}

.news-date {
  color: var(--primary-color);
  padding: 20px 35px 0;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.news-content {
  padding: 35px;
}

.news-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color var(--transition);
}

.news-card:hover .news-content h3 {
  color: var(--primary-color);
}

.news-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* === Footer === */
.footer {
  background-color: #000;
  color: #fff;
  padding: 100px 0 40px;
  border-top: 1px solid var(--border-color);
  margin-top: 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 1.6rem;
}

.footer-desc {
  color: #a7f3d0;
  line-height: 1.9;
  font-size: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: #a7f3d0;
  transition: all var(--transition);
  display: inline-block;
  font-size: 1.1rem;
}

.footer-col ul li a:hover {
  color: #fff;
  transform: translateX(10px);
}

.footer-col p {
  color: #a7f3d0;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1rem;
}

.footer-col p i {
  margin-top: 5px;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a7f3d0;
  font-size: 1rem;
}

/* === Additional Pages Common === */
.page-header {
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8)), url('../images/hero2.jpg') center/cover;
  height: 45vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 0;
  border-radius: 0 0 50px 50px;
  box-shadow: var(--shadow-md);
}

.page-header h1 {
  font-size: 4rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  margin-top: 50px;
  /* Offset for fixed navbar */
}

/* Page Content Formatting */
.page-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

.contact-info-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-form {
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  color: var(--text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(86, 124, 141, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* === Mobile Responsive === */
@media (max-width: 992px) {
  .hero-content {
    height: auto;
    padding: 100px 20px 50px;
  }

  .hero-highlight-cards {
    transform: translateY(0);
    margin-top: 40px;
    padding-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .highlight-card {
    min-width: 160px;
    flex: 1 1 160px;
    max-width: 250px;
  }

  .premium-hero-title {
    font-size: 18vw;
    top: 30%;
  }

  .journey-item,
  .journey-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .journey-content,
  .journey-image {
    width: 100%;
  }

  .journey-item.reverse .journey-content {
    text-align: center;
  }

  .journey-path::before {
    left: 20px;
  }

  .journey-dot {
    left: 20px;
  }

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .page-header h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .premium-hero-title {
    font-size: 22vw;
  }

  .journey-path::before {
    display: none;
  }

  .journey-dot {
    display: none;
  }

  .journey {
    padding-top: 60px;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--nav-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left var(--transition);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
  }

  .nav-links.active {
    left: 0;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-actions {
    gap: 10px;
  }

  .stats {
    margin: 20px 0;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    flex-direction: column;
  }

  .news-date {
    width: 100%;
    padding: 15px;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}

/* === Premium FX & Animations === */
/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 10000;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 0 10px var(--primary-color);
  transition: width 0.1s ease-out;
}

/* Card Float Animation */
.stat-card,
.news-card,
.gallery-item {
  animation: floatUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes floatUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-card:nth-child(1) {
  animation-delay: 0.1s;
}

.news-card:nth-child(2) {
  animation-delay: 0.3s;
}

.news-card:nth-child(3) {
  animation-delay: 0.5s;
}

.stat-card:nth-child(1) {
  animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
  animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* === Scroll Progress River === */
.scroll-river-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.05);
  z-index: 99999;
  pointer-events: none;
}

.scroll-river {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
  transition: height 0.1s ease-out;
  border-radius: 0 0 4px 0;
}

.scroll-river.flowing {
  box-shadow: 0 0 15px var(--primary-color), 0 0 30px var(--primary-color), 0 0 45px var(--accent-color);
}

/* =======================================
   COMPREHENSIVE RESPONSIVE STYLES
   Phone | Tablet | Laptop | Desktop
======================================= */

/* --- Large Tablets / Small Laptops (≤1200px) --- */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  .section-title h2 {
    font-size: 2rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* --- Tablets (≤992px) --- */
@media (max-width: 992px) {
  .section {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 1.7rem;
    letter-spacing: 0.08em;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Navbar */
  .nav-container {
    padding: 0 20px;
    height: 60px;
  }

  .logo {
    font-size: 1.1rem;
  }

  /* About page */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* News */
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Journey */
  .journey-item,
  .journey-item.reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .journey-content,
  .journey-image {
    width: 100%;
    text-align: center !important;
  }

  .journey-path::before {
    left: 20px;
  }

  .journey-dot {
    left: 20px;
  }

  /* Gallery masonry */
  .gallery-masonry {
    columns: 2;
  }

  /* Hero highlight cards */
  .hero-highlight-cards {
    transform: translateY(0);
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
  }

  .highlight-card {
    min-width: 140px;
    flex: 1 1 140px;
    max-width: 200px;
    height: 160px;
  }

  .premium-hero-title {
    font-size: 18vw;
    top: 30%;
  }
}

/* --- Phones & Small Tablets (≤768px) --- */
@media (max-width: 768px) {
  .section {
    padding: 55px 0;
  }

  /* Navbar becomes slide-out menu */
  .hamburger {
    display: flex;
  }

  .navbar {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  .nav-container {
    height: 60px;
    padding: 0 16px;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: rgba(30, 42, 56, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    transition: left 0.4s ease;
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li a {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }

  .nav-actions {
    gap: 8px;
  }

  /* Hero */
  .hero {
    border-radius: 0;
    min-height: 100vh;
    height: auto;
    padding-bottom: 40px;
  }

  .hero-content {
    height: auto;
    padding: 80px 16px 40px;
  }

  .hero-main-text {
    margin-top: 8vh;
  }

  .hero h1 {
    font-size: 2.2rem;
    letter-spacing: 0.03em;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .premium-hero-title {
    font-size: 22vw;
    top: 28%;
  }

  /* Section title */
  .section-title h2 {
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    gap: 12px;
  }

  /* Stats */
  .stats {
    border-radius: 0;
    margin: 20px 0;
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-card {
    padding: 25px 15px;
  }

  .stat-card h3 {
    font-size: 2.2rem;
  }

  /* News */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card {
    flex-direction: column;
  }

  .news-date {
    width: 100%;
    padding: 15px;
    text-align: center;
  }

  /* Gallery */
  .gallery-masonry {
    columns: 2;
    column-gap: 12px;
  }

  .gallery-item,
  .video-item {
    margin-bottom: 12px;
  }

  /* About page */
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-text {
    padding: 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Page header */
  .page-header h1 {
    font-size: 1.8rem !important;
    letter-spacing: 0.1em !important;
  }

  /* Buttons */
  .btn {
    padding: 12px 22px;
    font-size: 0.9rem;
  }

  /* Journey */
  .journey {
    padding: 50px 0;
  }

  .journey-path {
    margin-top: 30px;
  }

  .journey-path::before,
  .journey-dot {
    display: none;
  }

  .journey-item {
    margin-bottom: 40px;
  }

  .journey-content h3 {
    font-size: 1.4rem;
  }

  .journey-image {
    height: 220px;
  }

  /* Features grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Highlight cards */
  .hero-highlight-cards {
    gap: 10px;
    transform: translateY(0);
    margin-top: 25px;
    padding: 0 10px 20px;
  }

  .highlight-card {
    min-width: 120px;
    height: 140px;
    flex: 1 1 120px;
  }
}

/* --- Small Phones (≤480px) --- */
@media (max-width: 480px) {
  .section {
    padding: 45px 0;
  }

  .container {
    padding: 0 14px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.88rem;
  }

  .section-title h2 {
    font-size: 1.2rem;
    gap: 8px;
    letter-spacing: 0.04em;
  }

  /* Stats go 1 column */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery goes 1 column on very small screens */
  .gallery-masonry {
    columns: 1;
  }

  /* Premium cards full width */
  .premium-card {
    padding: 20px 16px;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .stat-card h3 {
    font-size: 2rem;
  }

  /* Page header */
  .page-header h1 {
    font-size: 1.5rem !important;
    letter-spacing: 0.06em !important;
  }

  /* Nav */
  .logo {
    font-size: 0.9rem;
  }

  /* Journey */
  .journey-image {
    height: 180px;
  }

  /* News */
  .news-date {
    font-size: 1.5rem;
  }

  /* Buttons */
  .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  /* Hero cards */
  .highlight-card {
    min-width: 100px;
    height: 120px;
  }

  /* Footer */
  .footer-bottom p {
    font-size: 0.8rem;
  }

  /* About sports badges wrap nicely */
  div[style*="flex-wrap: wrap"] span {
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
  }
}

/* --- Extra Small (≤360px) --- */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title h2 {
    font-size: 1.1rem;
  }

  .gallery-masonry {
    columns: 1;
  }

  .nav-container {
    height: 56px;
  }

  .nav-links {
    top: 56px;
    height: calc(100vh - 56px);
  }
}