* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --blue: #1a3a6b;
  --blue-dark: #0f2440;
  --blue-light: #2a5cad;
  --blue-bg: #e8f0fe;
  --orange: #f47a1e;
  --orange-light: #fce4c8;
  --orange-dark: #d4650a;
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}
html { scroll-behavior: smooth; }
body,.body {
  font-family: 'Cairo' !important;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; right: 0; left: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
nav.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 30px rgba(0,0,0,0.1); }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 900; color: var(--blue);
}
.logo img { border-radius: 8px; object-fit: cover; }
.logo i { font-size: 28px; color: var(--orange); }
.logo span { color: var(--orange); }
.nav-links { display: flex; list-style: none; gap: 5px; }
.nav-links a {
  padding: 8px 16px;
  font-size: 14px; font-weight: 600;
  color: var(--text-dark);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); background: var(--orange-light); }
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 26px; height: 3px; background: var(--blue); border-radius: 3px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  margin-top: 70px;
  min-height: 92vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-slider {
  position: absolute; inset: 0;
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slide {
  min-width: 100%; min-height: 100%;
  display: flex; align-items: center;
  position: relative;
  padding: 60px 0;
}
.hero-slide:nth-child(1) { background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%); }
.hero-slide:nth-child(2) { background: linear-gradient(135deg, #0f2440 0%, #1a5276 50%, #2e86c1 100%); }
.hero-slide:nth-child(3) { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg viewBox="0 0 1200 800" xmlns="http://www.w3.org/2000/svg"><path d="M0 600 Q 200 400 400 500 T 800 400 T 1200 500 L 1200 800 L 0 800 Z" fill="rgba(244,122,30,0.06)"/><path d="M0 700 Q 300 500 600 600 T 1200 500 L 1200 800 L 0 800 Z" fill="rgba(244,122,30,0.04)"/></svg>') center/cover;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 60px;
  width: 100%;
}
.hero-text { flex: 1; }
.hero-text .badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px; font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero-text h1 {
  font-size: 56px; font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 15px;
}
.hero-text h1 span { color: var(--orange); }
.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 520px;
  line-height: 1.9;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(244,122,30,0.3); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--orange); background: var(--orange); transform: translateY(-2px); }
.hero-img {
  flex: 1;
  display: flex; justify-content: center;
  position: relative;
}
.hero-img .img-wrap {
  width: 450px; height: 450px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, #ff9f4a 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 80px rgba(244,122,30,0.25);
  position: relative;
}
.hero-img .img-wrap i {
  font-size: 180px;
  color: rgba(255,255,255,0.2);
}
.hero-img .img-wrap .inner-icon {
  position: absolute;
  font-size: 80px;
  color: rgba(255,255,255,0.9);
}
.hero-dots {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 10px;
}
.hero-dots button {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-dots button.active { background: var(--orange); border-color: var(--orange); width: 30px; border-radius: 6px; }
.hero-dots button:hover { border-color: var(--orange); }
.hero-arrows {
  position: absolute; top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex; justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.hero-arrows button {
  pointer-events: auto;
  width: 45px; height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero-arrows button:hover { background: var(--orange); border-color: var(--orange); }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header .sub {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-header h2 {
  font-size: 38px; font-weight: 900;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-header h2 span { color: var(--orange); }
.section-header p {
  color: var(--text-gray);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%; height: 400px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.1);
  font-size: 120px;
}
.about-image .exp-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--orange);
  color: #fff;
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(244,122,30,0.3);
}
.about-image .exp-badge span { font-size: 36px; font-weight: 900; line-height: 1; }
.about-image .exp-badge small { font-size: 12px; font-weight: 600; }
.about-text h3 {
  font-size: 28px; font-weight: 800;
  color: var(--blue);
  margin-bottom: 16px;
}
.about-text p { color: var(--text-gray); margin-bottom: 16px; font-size: 15px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.about-features li {
  list-style: none;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
}
.about-features li i { color: var(--orange); }

/* ===== SWIMMING AREAS ===== */
.swimming { padding: 100px 0; background: var(--light-bg); }
.swim-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.swim-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.swim-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.swim-card-img {
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.swim-card-img img {
    width: 100%;
  height: 200px;
  object-fit: cover;
}
.swim-card-img i { font-size: 60px; color: rgba(255,255,255,0.15); }

.swim-card-body { padding: 25px; }
.swim-card-body h3 { font-size: 18px; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.swim-card-body p { font-size: 14px; color: var(--text-gray); margin-bottom: 12px; }
.swim-meta { display: flex; gap: 15px; font-size: 13px; color: var(--text-gray); }
.swim-meta i { color: var(--orange); margin-left: 5px; }

/* ===== INSTRUCTIONS ===== */
.instructions { padding: 100px 0; background: var(--blue); color: #fff; position: relative; overflow: hidden; }
.instructions::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg viewBox="0 0 600 600" xmlns="http://www.w3.org/2000/svg"><circle cx="100" cy="100" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="300" cy="200" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="500" cy="150" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="150" cy="400" r="4" fill="rgba(255,255,255,0.05)"/><circle cx="450" cy="450" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="250" cy="500" r="3" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
}
.instructions .section-header h2 { color: #fff; }
.instructions .section-header h2 span { color: var(--orange); }
.instructions .section-header p { color: rgba(255,255,255,0.7); }
.instr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; position: relative; z-index: 1; }
.instr-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
}
.instr-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.instr-card .icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
}
.instr-card h4 { font-size: 17px; margin-bottom: 10px; }
.instr-card p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ===== EVENTS TABLE ===== */
.events { padding: 100px 0; background: var(--white); }
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.events-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.events-table thead {
  background: var(--blue);
  color: #fff;
}
.events-table th {
  padding: 16px 20px;
  font-size: 14px; font-weight: 700;
  text-align: right;
}
.events-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid #eef2f6;
}
.events-table tbody tr { transition: var(--transition); }
.events-table tbody tr:hover { background: var(--orange-light); }
.events-table .day-cell { font-weight: 800; color: var(--blue); }
.events-table .tag {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 50px;
  font-size: 12px; font-weight: 700;
}
.tag-main { background: var(--blue-bg); color: var(--blue); }
.tag-sport { background: #dbeafe; color: #1d4ed8; }
.tag-kids { background: #fce7f3; color: #be185d; }
.tag-night { background: #1e1b4b; color: #c7d2fe; }
.tag-culture { background: #fef3c7; color: #b45309; }
.tag-food { background: var(--orange-light); color: var(--orange-dark); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
  position: relative;
  width: 85vw;
  height: 85vh;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox-inner img {
  width: 75%;
  height: 75vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
}
.lightbox-inner .lb-placeholder {
  width: 500px;
  height: 350px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
}
.lightbox-inner .lb-placeholder i { font-size: 80px; color: rgba(255,255,255,0.15); }
.lightbox-inner .lb-placeholder .lb-play {
  position: absolute;
  width: 70px; height: 70px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(244,122,30,0.4);
}
.lightbox-inner .lb-caption {
  color: #fff;
  font-size: 16px; font-weight: 600;
  margin-top: 18px;
  text-align: center;
}
.lightbox-close {
  position: absolute; top: -40px; left: 50%;
  transform: translateX(-50%);
  background: none; border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  display: flex; justify-content: space-between;
  pointer-events: none;
  padding: 0 10px;
}
.lightbox-nav button {
  pointer-events: auto;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.lightbox-nav button:hover { background: var(--orange); }
.lightbox .lb-type {
  position: absolute; top: 15px; right: 15px;
  background: var(--orange);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px; font-weight: 700;
  display: none;
}

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--light-bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-hover); }
.gallery-item i { font-size: 40px; color: rgba(255,255,255,0.15); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  display: flex; align-items: flex-end; padding: 15px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: #fff; font-weight: 600; font-size: 13px; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.video::after {
  content: '\f04b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  width: 50px; height: 50px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(244,122,30,0.4);
}

/* ===== NEWS ===== */
.news { padding: 100px 0; background: var(--white); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eef2f6;
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.news-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.news-card-img img { height: 200px; width: 100%; object-fit: cover;}
.news-card-img .date-badge {
  position: absolute; top: 15px; right: 15px;
  background: var(--orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px; font-weight: 700;
}
.news-card-body { padding: 25px; }
.news-card-body .category {
  font-size: 12px; font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.news-card-body h3 {
  font-size: 18px; font-weight: 800;
  color: var(--blue);
  margin: 8px 0 10px;
  line-height: 1.4;
}
.news-card-body p { font-size: 14px; color: var(--text-gray); }
.news-card-body .read-more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-weight: 700; font-size: 14px;
  color: var(--orange);
  transition: var(--transition);
}
.news-card-body .read-more:hover { gap: 10px; }

/* ===== SPONSORS ===== */
.sponsors { padding: 80px 0; background: var(--light-bg); }
.spons-level { margin-bottom: 40px; }
.spons-level:last-child { margin-bottom: 0; }
.spons-level h3 {
  text-align: center;
  font-size: 20px; font-weight: 800;
  margin-bottom: 25px;
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 30px;
  border-radius: 50px;
}
.spons-level h3 i { font-size: 22px; }
.spons-level.gold h3 { background: linear-gradient(135deg,#f59e0b,#d97706); color: #fff; }
.spons-level.silver h3 { background: linear-gradient(135deg,#94a3b8,#64748b); color: #fff; }
.spons-level.bronze h3 { background: linear-gradient(135deg,#cd7f32,#a0522d); color: #fff; }
.spons-level .header-wrap { text-align: center; margin-bottom: 10px; }
.spons-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 30px; flex-wrap: wrap;
}
.spons-logo {
  width: 160px; height: 100px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
  transition: var(--transition);
  border: 1px solid #eef2f6;
}
.spons-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.news-items .news-grid{padding-top: 50px; padding-bottom: 50px;}
.spons-logo:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.spons-logo .placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #94a3b8; font-weight: 700;
}

/* ===== FOOTER ===== */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-col h3 {
  color: #fff;
  font-size: 18px; font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h3::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 40px; height: 3px;
  background: var(--orange);
  border-radius: 3px;
}
.footer-col p { font-size: 14px; margin-bottom: 16px; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a:hover { color: var(--orange); padding-right: 5px; }
.footer-col ul li a i { font-size: 12px; color: var(--orange); }
.social-links { display: flex; gap: 10px; margin-top: 15px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 16px;
}
.social-links a:hover { background: var(--orange); transform: translateY(-3px); }
.contact-info li { display: flex; align-items: center; gap: 10px; }
.contact-info li i { color: var(--orange); width: 16px; }
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 30px; left: 30px;
  width: 45px; height: 45px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(244,122,30,0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===== News page ===== */
.btn-back {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px; font-weight: 700;
  color: var(--blue);
  background: var(--blue-bg);
  transition: var(--transition);
  border: none; cursor: pointer;
}
.btn-back:hover { background: var(--blue); color: #fff; }

.page-header {
  margin-top: 70px;
  padding: 40px 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg viewBox="0 0 1200 800" xmlns="http://www.w3.org/2000/svg"><path d="M0 600 Q 200 400 400 500 T 800 400 T 1200 500 L 1200 800 L 0 800 Z" fill="rgba(244,122,30,0.06)"/></svg>') center/cover;
}
.page-header .container { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; }
.page-header h1 { font-size: 28px; font-weight: 900; }
.page-header h1 span { color: var(--orange); }
.breadcrumb { font-size: 14px; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: #fff; }

.news-detail { padding: 60px 0; }
.news-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }

.main-article {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.article-img {
  width: 100%; height: 380px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.article-img i { font-size: 80px; color: rgba(255,255,255,0.12); }
.article-img .date-tag {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--orange);
  color: #fff;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 13px; font-weight: 700;
}
.article-body { padding: 35px; }
.article-body .category {
  font-size: 13px; font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.article-body h1 {
  font-size: 28px; font-weight: 900;
  color: var(--blue);
  margin: 10px 0 15px;
  line-height: 1.4;
}
.article-meta {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-bottom: 20px; margin-bottom: 25px;
  border-bottom: 1px solid #eef2f6;
  font-size: 13px; color: var(--text-gray);
}
.article-meta i { color: var(--orange); margin-left: 5px; }
.article-body p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 18px;
  line-height: 1.9;
}
.article-body h2 {
  font-size: 22px; font-weight: 800;
  color: var(--blue);
  margin: 30px 0 15px;
}
.article-body blockquote {
  border-right: 4px solid var(--orange);
  padding: 20px 25px;
  margin: 25px 0;
  background: var(--orange-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px; font-weight: 700;
  color: var(--blue);
}
.article-body ul {
  margin: 15px 0 20px;
  padding-right: 20px;
}
.article-body ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-gray);
}
.article-body ul li::marker { color: var(--orange); }
.share-section {
  display: flex; align-items: center; gap: 12px;
  padding-top: 25px; margin-top: 30px;
  border-top: 1px solid #eef2f6;
}
.share-section span { font-weight: 700; font-size: 14px; color: var(--blue); }
.share-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  color: #fff;
  cursor: pointer;
}
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.telegram { background: #0088cc; }
.share-btn:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }

.sidebar { display: flex; flex-direction: column; gap: 30px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 25px;
  border: 1px solid #eef2f6;
}
.sidebar-card h3 {
  font-size: 18px; font-weight: 800;
  color: var(--blue);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--orange);
}
.latest-news-item {
  display: flex; gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: var(--transition);
}
.latest-news-item:last-child { border-bottom: none; }
.latest-news-item:hover { padding-right: 5px; }
.latest-news-item .thumb {
  width: 70px; height: 70px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.latest-news-item .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.latest-news-item .thumb i { font-size: 24px; color: rgba(255,255,255,0.2); }
.latest-news-item .info h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; line-height: 1.4; }
.latest-news-item .info span { font-size: 12px; color: var(--text-gray); }
.latest-news-item .info span i { color: var(--orange); margin-left: 4px; }

.categories-list { list-style: none; }
.categories-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex; justify-content: space-between;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.categories-list li:hover { color: var(--orange); padding-right: 5px; }
.categories-list li:last-child { border-bottom: none; }
.categories-list li span { color: var(--text-gray); font-weight: 400; }

.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px; font-weight: 600;
  background: var(--blue-bg);
  color: var(--blue);
  transition: var(--transition);
  cursor: pointer;
}
.tag-item:hover { background: var(--orange); color: #fff; }




/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text p { margin: 0 auto 30px; }
  .hero-btns { justify-content: center; }
  .hero-img .img-wrap { width: 300px; height: 300px; }
  .hero-img .img-wrap i { font-size: 120px; }
  .hero-text h1 { font-size: 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .swim-grid { grid-template-columns: 1fr 1fr; }
  .instr-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
    .news-layout { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed; top: 70px; right: 0; left: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 5px;
  }
}
@media (max-width: 600px) {
  .hero-text h1 { font-size: 28px; }
  .hero-text p { font-size: 14px; }
  .hero-img .img-wrap { width: 180px; height: 180px; }
  .hero-img .img-wrap i { font-size: 60px; }
  .hero-img .img-wrap .inner-icon { font-size: 40px; }
  .hero-slide { padding: 40px 0; }
  .hero-dots { bottom: 20px; }
  .hero-arrows button { width: 35px; height: 35px; font-size: 14px; }
  .swim-grid, .instr-grid, .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 26px; }
  nav { padding: 0 15px; }

  .page-header h1 { font-size: 22px; }
  .article-body h1 { font-size: 22px; }
  .article-body { padding: 20px; }
  .article-img { height: 220px; }
}