/* ========== DARK MODE VARIABLES ========== */
:root[data-theme="dark"],
html.dark-mode {
  --bg: #0f0e0c;
  --ink: #E8E6E3;
  --muted: #A8A095;
  --gold: #D4AF37;
  --gold-light: #F4E4A6;
  --gold-dark: #B8942A;
  --stroke: rgba(255, 255, 255, 0.08);
  --card: rgba(30, 30, 28, 0.85);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* ========== DARK MODE BODY ========== */
body.dark-mode,
html[data-theme="dark"] body {
  background: linear-gradient(135deg, #0a0907 0%, #0f0e0c 50%, #141310 100%);
  color: var(--ink);
}

/* ========== DARK MODE NAVBAR ========== */
body.dark-mode .navbar,
html[data-theme="dark"] .navbar {
  background: rgba(20, 20, 18, 0.95);
  border-bottom: 1px solid var(--stroke);
}

body.dark-mode .navbar.scrolled,
html[data-theme="dark"] .navbar.scrolled {
  background: rgba(25, 25, 23, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.dark-mode .nav-links a,
html[data-theme="dark"] .nav-links a {
  color: var(--ink);
}

body.dark-mode .nav-links a:hover,
body.dark-mode .nav-links a.active,
html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .nav-links a.active {
  color: var(--gold-light);
}

body.dark-mode .logo-text h2,
html[data-theme="dark"] .logo-text h2 {
  color: var(--gold-light);
}

body.dark-mode .logo-text span,
html[data-theme="dark"] .logo-text span {
  color: var(--muted);
}

body.dark-mode .hamburger span,
html[data-theme="dark"] .hamburger span {
  background: var(--gold);
}

/* ========== DARK MODE HERO ========== */
body.dark-mode .hero,
html[data-theme="dark"] .hero {
  background: radial-gradient(ellipse at 20% 50%, rgba(185, 146, 74, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(231, 210, 163, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(139, 106, 43, 0.05) 0%, transparent 50%);
}

body.dark-mode .hero-badge,
html[data-theme="dark"] .hero-badge {
  background: rgba(185, 146, 74, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(185, 146, 74, 0.3);
}

body.dark-mode .hero-title,
html[data-theme="dark"] .hero-title {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.dark-mode .hero-subtitle,
html[data-theme="dark"] .hero-subtitle {
  color: var(--muted);
}

body.dark-mode .hero-card,
html[data-theme="dark"] .hero-card {
  background: var(--card);
  border: 1px solid var(--stroke);
}

/* ========== DARK MODE SECTIONS ========== */
body.dark-mode .section-title,
html[data-theme="dark"] .section-title {
  color: var(--gold-light);
}

body.dark-mode .section-subtitle,
html[data-theme="dark"] .section-subtitle {
  color: var(--muted);
}

/* ========== DARK MODE ABOUT ========== */
body.dark-mode .about-text h3,
html[data-theme="dark"] .about-text h3 {
  color: var(--gold-light);
}

body.dark-mode .about-text p,
html[data-theme="dark"] .about-text p {
  color: var(--muted);
}

body.dark-mode .about-feature i,
html[data-theme="dark"] .about-feature i {
  color: var(--gold);
}

/* ========== DARK MODE CARDS ========== */
body.dark-mode .feature-card,
body.dark-mode .program-card,
body.dark-mode .testimonial-card,
body.dark-mode .stat-card,
body.dark-mode .accreditation-section,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .program-card,
html[data-theme="dark"] .testimonial-card,
html[data-theme="dark"] .stat-card,
html[data-theme="dark"] .accreditation-section {
  background: var(--card);
  border: 1px solid var(--stroke);
}

body.dark-mode .feature-title,
html[data-theme="dark"] .feature-title {
  color: var(--ink);
}

body.dark-mode .feature-description,
html[data-theme="dark"] .feature-description {
  color: var(--muted);
}

body.dark-mode .feature-icon,
html[data-theme="dark"] .feature-icon {
  background: linear-gradient(135deg, rgba(231, 210, 163, 0.1), rgba(185, 146, 74, 0.05));
  border: 1px solid rgba(185, 146, 74, 0.2);
}

/* ========== DARK MODE PROGRAMS ========== */
body.dark-mode .program-description,
html[data-theme="dark"] .program-description {
  color: var(--muted);
}

body.dark-mode .program-overlay,
html[data-theme="dark"] .program-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

/* ========== DARK MODE STATS ========== */
body.dark-mode .stats-section,
html[data-theme="dark"] .stats-section {
  background: linear-gradient(135deg, rgba(231, 210, 163, 0.15), rgba(185, 146, 74, 0.08));
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

body.dark-mode .stat-number,
html[data-theme="dark"] .stat-number {
  color: var(--gold-light);
}

body.dark-mode .stat-label,
html[data-theme="dark"] .stat-label {
  color: var(--muted);
}

/* ========== DARK MODE TESTIMONIALS ========== */
body.dark-mode .testimonial-content,
html[data-theme="dark"] .testimonial-content {
  color: var(--ink);
}

body.dark-mode .author-info h4,
html[data-theme="dark"] .author-info h4 {
  color: var(--ink);
}

body.dark-mode .author-info p,
html[data-theme="dark"] .author-info p {
  color: var(--muted);
}

/* ========== DARK MODE ACCREDITATION ========== */
body.dark-mode .accreditation-section,
html[data-theme="dark"] .accreditation-section {
  background: linear-gradient(135deg, rgba(231, 210, 163, 0.1), rgba(30, 30, 28, 0.8));
}

body.dark-mode .accreditation-logo,
html[data-theme="dark"] .accreditation-logo {
  background: var(--card);
  border: 1px solid var(--stroke);
}

body.dark-mode .accreditation-logo span,
html[data-theme="dark"] .accreditation-logo span {
  color: var(--gold-light) !important;
}

/* ========== DARK MODE CTA ========== */
body.dark-mode .cta-section,
html[data-theme="dark"] .cta-section {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

body.dark-mode .btn-secondary,
html[data-theme="dark"] .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  border: 2px solid var(--gold);
}

body.dark-mode .btn-secondary:hover,
html[data-theme="dark"] .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

body.dark-mode .btn-ghost,
html[data-theme="dark"] .btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}

body.dark-mode .btn-ghost:hover,
html[data-theme="dark"] .btn-ghost:hover {
  background: rgba(185, 146, 74, 0.1);
}

/* ========== DARK MODE FOOTER ========== */
body.dark-mode .footer,
html[data-theme="dark"] .footer {
  background: linear-gradient(135deg, #0a0907 0%, #141310 100%);
  color: var(--gold-light);
}

body.dark-mode .footer-column h3,
html[data-theme="dark"] .footer-column h3 {
  color: white;
}

body.dark-mode .footer-links a,
html[data-theme="dark"] .footer-links a {
  color: var(--gold-light);
}

body.dark-mode .footer-links a:hover,
html[data-theme="dark"] .footer-links a:hover {
  color: white;
}

body.dark-mode .footer-contact p,
html[data-theme="dark"] .footer-contact p {
  color: var(--gold-light);
}

body.dark-mode .social-links a,
html[data-theme="dark"] .social-links a {
  background: rgba(185, 146, 74, 0.2);
  border: 1px solid rgba(185, 146, 74, 0.3);
  color: var(--gold-light);
}

body.dark-mode .social-links a:hover,
html[data-theme="dark"] .social-links a:hover {
  background: var(--gold);
  color: white;
}

body.dark-mode .footer-bottom,
html[data-theme="dark"] .footer-bottom {
  color: rgba(231, 210, 163, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .footer-legal a,
html[data-theme="dark"] .footer-legal a {
  color: rgba(231, 210, 163, 0.5);
}

body.dark-mode .footer-legal a:hover,
html[data-theme="dark"] .footer-legal a:hover {
  color: var(--gold-light);
}

/* ========== DARK MODE SWIPER ========== */
body.dark-mode .swiper-slider-container,
html[data-theme="dark"] .swiper-slider-container {
  border: 1px solid var(--stroke);
}

body.dark-mode .swiper-slide-caption,
html[data-theme="dark"] .swiper-slide-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

body.dark-mode .swiper-button-next,
body.dark-mode .swiper-button-prev,
html[data-theme="dark"] .swiper-button-next,
html[data-theme="dark"] .swiper-button-prev {
  background: rgba(30, 30, 28, 0.9);
  border: 1px solid var(--stroke);
}

body.dark-mode .swiper-pagination-bullet,
html[data-theme="dark"] .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode .swiper-pagination-bullet-active,
html[data-theme="dark"] .swiper-pagination-bullet-active {
  background: var(--gold);
}

/* ========== DARK MODE RESPONSIVE ========== */
@media (max-width: 1024px) {

  body.dark-mode .nav-menu,
  html[data-theme="dark"] .nav-menu {
    background: rgba(25, 25, 23, 0.98);
  }
}

/* ========== DARK MODE UTILITIES ========== */
body.dark-mode .text-gradient,
html[data-theme="dark"] .text-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

:root {
  --bg: #F3E8DD;
  --ink: #2B2320;
  --muted: #6A5B52;
  --gold: #B9924A;
  --gold-light: #E7D2A3;
  --gold-dark: #8B6A2B;
  --stroke: rgba(120, 90, 60, .25);
  --card: rgba(255, 255, 255, .85);
  --shadow: 0 20px 40px rgba(0, 0, 0, .1);
  --shadow-hover: 0 30px 60px rgba(0, 0, 0, .15);
  --radius: 24px;
  --radius-sm: 16px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1400px;
  --swiper-theme-color: #B9924A;
  --swiper-navigation-size: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #F8F2E9 0%, #F3E8DD 50%, #EFE0D2 100%);
  min-height: 100vh;
  line-height: 1.7;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== NAVIGATION ========== */
.imgLogo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.navbar {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
  padding: 1.25rem 0;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.nav-logo-img {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  box-shadow: 0 8px 20px rgba(139, 106, 43, 0.15);
}

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

.logo-text h2 {
  font-size: 1.3rem;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.logo-text span {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-wrap: nowrap;
}

.nav-links a i {
  font-size: 0.875rem;
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: var(--transition);
}

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

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

.nav-cta .btn {
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gold-dark);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: calc(70vh - 50px);
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  background: radial-gradient(ellipse at 20% 50%, rgba(185, 146, 74, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(231, 210, 163, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(139, 106, 43, 0.1) 0%, transparent 50%);
  width: 90%;
  margin: 0px auto;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  /* padding: 2rem; */
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  /* min-height: calc(100vh - 100px); */
}

.hero-text {
  padding-left: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(185, 146, 74, 0.1);
  color: var(--gold-dark);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border: 1px solid rgba(185, 146, 74, 0.2);
}

.hero-badge i {
  color: var(--gold);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

.floating-elements {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-element {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
  animation: float 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  max-width: 180px;
}

.floating-element i {
  font-size: 2rem;
  color: var(--gold);
}

.floating-element span {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.875rem;
}

.floating-element:nth-child(1) {
  top: 0;
  right: 0;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  bottom: 0;
  left: 0;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  gap: 0.75rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  text-wrap: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  box-shadow: 0 15px 35px rgba(185, 146, 74, 0.25);
  border: 1px solid rgba(139, 106, 43, 0.3);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(185, 146, 74, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gold-dark);
  border: 2px solid var(--gold-light);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-dark);
  border: 2px solid var(--gold-light);
}

.btn-ghost:hover {
  background: rgba(185, 146, 74, 0.1);
  transform: translateY(-3px);
}

/* ========== SECTIONS ========== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold-dark);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 700px;
  margin: 1.5rem auto 0;
}

/* ========== ABOUT SECTION ========== */
.about-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  text-align: right;
}

.about-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature i {
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

/* ========== SWIPER SLIDER ========== */
.swiper-slider-container {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 500px;
}

.swiper-slider-container .swiper {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-slide-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(43, 35, 32, 0.85), transparent);
  padding: 2rem;
  color: white;
  z-index: 2;
}

.swiper-slide-caption h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.swiper-slide-caption p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 600px;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--stroke);
  transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gold-dark);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.swiper-button-prev {
  right: 20px;
  left: auto;
}

.swiper-button-next {
  left: 20px;
  right: auto;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-card:nth-child(4) {
  grid-column-start: 2;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(231, 210, 163, 0.2), rgba(185, 146, 74, 0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--gold);
  border: 1px solid rgba(185, 146, 74, 0.2);
}

.feature-title {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.feature-description {
  color: var(--muted);
  line-height: 1.8;
}

/* ========== PROGRAMS ========== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.program-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.program-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.program-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to top, rgba(43, 35, 32, 0.9), transparent);
  padding: 2rem;
}

.program-category {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 0.375rem 1.25rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(185, 146, 74, 0.3);
}

.program-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.program-content {
  padding: 2rem;
}

.program-description {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* ========== STATS ========== */
.stats-section {
  background: linear-gradient(135deg, rgba(231, 210, 163, 0.3), rgba(185, 146, 74, 0.15));
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  line-height: 1;
}

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

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  color: rgba(185, 146, 74, 0.2);
  font-family: serif;
  line-height: 1;
}

.testimonial-content {
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 5px 15px rgba(185, 146, 74, 0.3);
}

.author-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.author-info p {
  color: var(--muted);
  font-size: 0.875rem;
}

/* ========== ACCREDITATION ========== */
.accreditation-section {
  background: linear-gradient(135deg, rgba(231, 210, 163, 0.2), rgba(255, 255, 255, 0.8));
  border-radius: var(--radius);
  margin: 4rem auto;
  max-width: var(--max-width);
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.accreditation-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.accreditation-logo {
  width: 150px;
  height: 80px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.accreditation-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 4rem auto;
  max-width: var(--max-width);
  box-shadow: var(--shadow);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(43, 35, 32, 0.3);
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(43, 35, 32, 0.2);
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(135deg, #2B2320 0%, #3A302C 100%);
  color: var(--gold-light);
  padding-top: 4rem;
  margin-top: 4rem;
  border-top: 4px solid var(--gold);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.875rem;
}

.footer-links a {
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: white;
  transform: translateX(-5px);
}

.footer-links a i {
  font-size: 0.75rem;
  color: var(--gold);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}

.footer-contact i {
  color: var(--gold);
  margin-top: 0.25rem;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(185, 146, 74, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(185, 146, 74, 0.3);
}

.social-links a:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(185, 146, 74, 0.3);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(231, 210, 163, 0.7);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.footer-legal a {
  color: rgba(231, 210, 163, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gold-light);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .imgLogo img {}

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 100%;
    height: fit-content;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    padding: .5rem 2rem;
    transition: var(--transition);
    border-top: 3px solid var(--stroke);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: right;
    gap: 0.75rem;
  }

  .nav-cta {
    width: 100%;
    margin-top: 2rem;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .logo-text h2 {
    font-size: 1.6rem;
  }

  .logo-text span {
    font-size: .8rem;
  }

  .nav-logo-img [big-logo="true"] {
    display: none;
  }

  .nav-logo-img [small-logo="true"] {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text {
    padding-left: 0;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text {
    text-align: center;
  }

  .swiper-slider-container {
    height: 400px;
  }

  .swiper-slide-caption {
    padding: 1.5rem;
  }

  .swiper-slide-caption h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    /* display: flex; */
  }

  .nav-container {
    justify-content: space-between;
  }

  .nav-logo-img {
    width: fit-content;
    height: 50px;
  }

  .logo-text h2 {
    font-size: 1.2rem;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .floating-elements {
    height: 300px;
  }

  .floating-element {
    max-width: 150px;
    padding: 1rem;
  }

  .swiper-slider-container {
    height: 350px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1rem;
  }

  .swiper-slide-caption h4 {
    font-size: 1.125rem;
  }

  .swiper-slide-caption p {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .imgLogo img {
    width: 100%;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .hero-container {
    padding: 1rem;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .features-grid,
  .programs-grid,
  .stats-grid,
  .testimonials-grid {
    padding: 0 1rem;
  }

  .feature-card:nth-child(4) {
    grid-column-start: auto;
  }

  .accreditation-logos {
    gap: 1.5rem;
  }

  .accreditation-logo {
    width: 120px;
    height: 60px;
  }

  .about-features .about-feature div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }

  .swiper-slider-container {
    height: 300px;
  }

  .swiper-slide-caption {
    padding: 1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* ========== UTILITIES ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}