/* =========================================
   DIPLOMA COURSES PLATFORM - MAIN STYLESHEET
   ========================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Color Palette */
  --color-primary: #0a1f44;       /* Deep Navy */
  --color-primary-light: #1a3a6e; /* Navy Light */
  --color-secondary: #1565c0;     /* Deep Blue */
  --color-secondary-light: #1976d2;
  --color-accent: #c9a84c;        /* Subtle Gold */
  --color-accent-light: #e2be7a;
  --color-accent-dark: #a07c2a;
  --color-white: #ffffff;
  --color-off-white: #f8f9fc;
  --color-light-gray: #f0f2f7;
  --color-mid-gray: #e2e6ef;
  --color-text-dark: #0d1b2e;
  --color-text-body: #3d4f6b;
  --color-text-muted: #7889a4;
  --color-text-light: #a8b8cc;
  --color-border: #dde3ee;
  --color-success: #10b981;
  --color-danger: #ef4444;

  /* Gradient */
  --gradient-primary: linear-gradient(135deg, #0a1f44 0%, #1565c0 100%);
  --gradient-accent: linear-gradient(135deg, #c9a84c 0%, #e2be7a 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 31, 68, 0.92) 0%, rgba(21, 101, 192, 0.85) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(240,242,247,0.9));
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-md: 1.125rem;   /* 18px */
  --font-size-lg: 1.25rem;    /* 20px */
  --font-size-xl: 1.5rem;     /* 24px */
  --font-size-2xl: 1.875rem;  /* 30px */
  --font-size-3xl: 2.25rem;   /* 36px */
  --font-size-4xl: 2.75rem;   /* 44px */
  --font-size-5xl: 3.5rem;    /* 56px */
  --font-size-6xl: 4.5rem;    /* 72px */

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(10, 31, 68, 0.05);
  --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 31, 68, 0.12);
  --shadow-lg: 0 8px 32px rgba(10, 31, 68, 0.16);
  --shadow-xl: 0 16px 48px rgba(10, 31, 68, 0.20);
  --shadow-accent: 0 8px 32px rgba(201, 168, 76, 0.3);
  --shadow-blue: 0 8px 32px rgba(21, 101, 192, 0.25);
  --shadow-card-hover: 0 20px 60px rgba(10, 31, 68, 0.18);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-body);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul, ol { list-style: none; }

/* --- Typography Utilities --- */
.font-heading { font-family: var(--font-heading); }
.font-primary { font-family: var(--font-primary); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-dark);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: var(--space-2) var(--space-4);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.section-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-header.text-start {
  text-align: left;
}

.section-header.text-start .section-subtitle {
  margin: 0;
}

/* --- Section Spacing --- */
.section-py {
  padding: var(--space-24) 0;
}

.section-py-lg {
  padding: var(--space-32) 0;
}

/* --- Buttons --- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.875rem 2rem;
  background: var(--gradient-accent);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-accent);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
}

.btn-primary-custom:hover::before {
  transform: translateX(0);
}

.btn-primary-custom:hover {
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
  color: var(--color-primary);
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-secondary-custom:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-outline-custom:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-dark-custom {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.875rem 2rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-blue);
  white-space: nowrap;
}

.btn-dark-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.4);
  color: var(--color-white);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-5) 0;
  transition: all var(--transition-base);
  background: transparent;
}

.navbar-custom.scrolled {
  background: rgba(10, 31, 68, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-3) 0;
  box-shadow: var(--shadow-xl);
}

.navbar-custom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.navbar-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-accent);
}

.navbar-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-logo .logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.navbar-logo .logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.navbar-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link-custom {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--color-accent);
  background: rgba(201, 168, 76, 0.1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: var(--font-size-sm);
}

/* Mobile Toggle */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 31, 68, 0.98);
  backdrop-filter: blur(20px);
  z-index: calc(var(--z-sticky) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--color-accent);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-geometric {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 2;
}

.hero-geo-1 {
  width: 500px;
  height: 500px;
  background: var(--color-accent);
  top: -100px;
  right: -100px;
}

.hero-geo-2 {
  width: 300px;
  height: 300px;
  background: var(--color-secondary);
  bottom: -50px;
  left: -50px;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 140px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 0.7rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: var(--space-10);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.65);
}

.trust-item i {
  color: var(--color-accent);
  font-size: 0.9rem;
}

.hero-image-side {
  position: relative;
  z-index: 3;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.3) 0%, transparent 60%);
  z-index: 1;
  border-radius: inherit;
}

.hero-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

.hero-card-float {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.hero-card-float.card-1 {
  bottom: -20px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-card-float.card-2 {
  top: 30px;
  right: -20px;
  text-align: center;
}

.hcard-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hcard-text .hcard-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1;
}

.hcard-text .hcard-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
  padding: var(--space-20) 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-1);
}

.stat-item {
  text-align: center;
  padding: var(--space-8);
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.03em;
}

.stat-number .stat-suffix {
  color: var(--color-accent);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  opacity: 0.8;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
  padding: var(--space-24) 0;
  background: var(--color-white);
  overflow: hidden;
}

.about-image-wrapper {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--color-white);
}

.about-badge-float {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.about-badge-float .badge-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.about-badge-float .badge-text {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.about-content {
  padding-left: var(--space-10);
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.about-list-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.about-list-item .list-icon {
  width: 44px;
  height: 44px;
  background: rgba(21, 101, 192, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.about-list-item:hover .list-icon {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: rotate(-5deg);
}

.about-list-item .list-text h5 {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-1);
}

.about-list-item .list-text p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.features-section {
  padding: var(--space-24) 0;
  background: var(--color-off-white);
  overflow: hidden;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(10, 31, 68, 0.08));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-5);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: rgba(255,255,255,0.15);
  color: var(--color-accent);
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
  transition: color var(--transition-base);
}

.feature-card:hover h4 {
  color: var(--color-white);
}

.feature-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
  transition: color var(--transition-base);
}

.feature-card:hover p {
  color: rgba(255,255,255,0.75);
}

.feature-card-number {
  position: absolute;
  top: var(--space-5);
  right: var(--space-6);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-light-gray);
  line-height: 1;
  transition: color var(--transition-base);
  z-index: 0 !important;
}

.feature-card:hover .feature-card-number {
  color: rgba(255,255,255,0.06);
}

/* =========================================
   ACCREDITATION SLIDER
   ========================================= */
.accreditation-section {
  padding: var(--space-16) 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.accreditation-label {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: var(--space-10);
}

.accreditation-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accreditation-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  transition: all var(--transition-base);
  cursor: default;
  min-width: 160px;
}

.accreditation-logo:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-accent);
  transform: translateY(-4px);
}

.accreditation-logo i {
  font-size: 2.2rem;
  color: var(--color-primary-light);
}

.accreditation-logo:hover i {
  color: var(--color-accent);
}

.accreditation-logo span {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

/* =========================================
   COURSES SECTION
   ========================================= */
.courses-section {
  padding: var(--space-24) 0;
  background: var(--color-off-white);
  overflow: hidden;
}

.course-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-slow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.course-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.course-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.course-card:hover .course-card-img img {
  transform: scale(1.08);
}

.course-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10, 31, 68, 0.5) 100%);
}

.course-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 1;
  padding: var(--space-1) var(--space-3);
  background: var(--gradient-accent);
  color: var(--color-primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.course-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-category {
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.course-card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-3);
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.course-card:hover .course-card-body h4 {
  color: var(--color-secondary);
}

.course-card-body p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-5);
  flex: 1;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}

.course-meta-item i {
  color: var(--color-accent);
}

.course-card-footer {
  padding: var(--space-4) var(--space-6);
  background: var(--color-off-white);
  border-top: 1px solid var(--color-border);
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
  padding: var(--space-24) 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(21, 101, 192, 0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 60%);
}

.testimonials-section .section-title,
.testimonials-section .section-label {
  color: var(--color-white) !important;
}

.testimonials-section .section-title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-section .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-4);
  left: var(--space-8);
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.4;
  line-height: 1;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
  margin-top: var(--space-6);
}

.testimonial-stars i {
  color: var(--color-accent);
  font-size: 0.9rem;
}

.testimonial-card blockquote {
  font-size: var(--font-size-base);
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
}

.author-info .author-name {
  font-weight: 700;
  color: var(--color-white);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-1);
}

.author-info .author-role {
  font-size: var(--font-size-xs);
  color: var(--color-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.swiper-pagination-custom {
  text-align: center;
  margin-top: var(--space-8);
}

.swiper-pagination-custom .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.3);
  opacity: 1;
  transition: all var(--transition-base);
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 4px;
  background: var(--color-accent);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  padding: var(--space-24) 0;
  background: var(--color-white);
  overflow: hidden;
}

.cta-inner {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-16) var(--space-12);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-inner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-inner::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta-inner .section-label {
  margin-bottom: var(--space-4);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.cta-title span {
  color: var(--color-accent);
}

.cta-subtitle {
  font-size: var(--font-size-md);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-10);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--color-text-dark);
  color: rgba(255,255,255,0.65);
  padding: var(--space-20) 0 0;
}

.footer-logo .logo-name {
  color: var(--color-white) !important;
}

.footer-description {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin: var(--space-4) 0 var(--space-6);
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all var(--transition-base);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-base);
  flex-shrink: 0;
}

.footer-link:hover::before {
  width: 16px;
}

.footer-link:hover {
  color: var(--color-accent);
  padding-left: var(--space-1);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
}

.footer-contact-item i {
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-newsletter {
  display: flex;
  margin-top: var(--space-4);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-newsletter input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: none;
  padding: 0.75rem 1.25rem;
  font-size: var(--font-size-sm);
  color: var(--color-white);
  outline: none;
  font-family: var(--font-primary);
}

.footer-newsletter input::placeholder {
  color: rgba(255,255,255,0.3);
}

.footer-newsletter button {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-accent);
  border: none;
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  white-space: nowrap;
}

.footer-newsletter button:hover {
  filter: brightness(1.1);
}

.footer-bottom {
  margin-top: var(--space-12);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-5);
}

.footer-bottom-links a {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

/* =========================================
   COURSES PAGE - SPECIFIC STYLES
   ========================================= */
.page-hero {
  padding: 140px 0 80px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.page-hero-title span {
  color: var(--color-accent);
}

.page-hero-subtitle {
  font-size: var(--font-size-md);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.breadcrumb-custom a {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-custom a:hover {
  color: var(--color-accent);
}

.breadcrumb-custom span {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.3);
}

.breadcrumb-custom .current {
  font-size: var(--font-size-sm);
  color: var(--color-accent);
  font-weight: 600;
}

/* Filter Tabs */
.filter-section {
  padding: var(--space-10) 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
  justify-content: center;
}

.filter-tab {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
}

.filter-tab:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.filter-tab.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--color-white);
  box-shadow: var(--shadow-blue);
}

/* Course Listing Grid */
.courses-listing {
  padding: var(--space-16) 0 var(--space-24);
  background: var(--color-off-white);
}

/* Modal Styles */
.modal-custom {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  padding: var(--space-8);
  align-items: center;
  justify-content: center;
}

.modal-custom.show {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 68, 0.7);
  backdrop-filter: blur(8px);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.9) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  background: var(--gradient-primary);
  padding: var(--space-8) var(--space-8) var(--space-6);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  position: relative;
  flex-wrap: wrap;
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  font-size: 1rem;
}

.modal-close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

.modal-body {
  padding: var(--space-8);
}

.modal-sidebar {
  background: var(--color-off-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
}

.sidebar-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}

.sidebar-info-item:last-child {
  border-bottom: none;
}

.sidebar-info-item i {
  width: 32px;
  height: 32px;
  background: rgba(21, 101, 192, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.sidebar-info-item .info-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.sidebar-info-item .info-value {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text-dark);
}

.module-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.module-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-body);
  font-weight: 500;
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.module-item:hover {
  border-color: var(--color-secondary);
  background: rgba(21, 101, 192, 0.04);
}

.module-item i {
  color: var(--color-accent);
}

.outcome-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-body);
  align-items: flex-start;
}

.outcome-item i {
  color: var(--color-success);
  margin-top: 3px;
  flex-shrink: 0;
}

/* =========================================
   SCROLL TO TOP
   ========================================= */
.scroll-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  opacity: 0;
  pointer-events: none;
  z-index: var(--z-toast);
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* =========================================
   LOADING OVERLAY
   ========================================= */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-4);
  transition: opacity var(--transition-slow);
}

.page-loader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-white);
}

.loader-logo span {
  color: var(--color-accent);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  animation: loaderFill 1.5s ease forwards;
}

@keyframes loaderFill {
  from { width: 0; }
  to { width: 100%; }
}

/* =========================================
   GSAP ANIMATION BASE STATES
   ========================================= */
.gsap-fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.gsap-fade-in {
  opacity: 0;
}

.gsap-slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.gsap-slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.gsap-scale-in {
  opacity: 0;
  transform: scale(0.85);
}

/* =========================================
   UTILITY CLASSES
   ========================================= */
.text-accent { color: var(--color-accent) !important; }
.text-primary-color { color: var(--color-primary) !important; }
.text-secondary-color { color: var(--color-secondary) !important; }
.bg-primary-custom { background: var(--color-primary) !important; }
.bg-off-white { background: var(--color-off-white) !important; }

.divider-gold {
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  margin: var(--space-4) 0;
}

.divider-gold.center {
  margin: var(--space-4) auto;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1199px) {
  .hero-content { padding: 120px 0 60px; }
  .about-content { padding-left: var(--space-6); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 991px) {
  .section-title { font-size: var(--font-size-3xl); }
  .hero-image-side { margin-top: var(--space-10); }
  .hero-img-wrapper img { height: 360px; }
  .about-content { padding-left: 0; margin-top: var(--space-10); }
  .about-img-secondary { right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .stat-item::after { display: none; }
  .stat-item:nth-child(odd)::after {
    display: block;
    height: 60%;
    right: 0;
  }
  .cta-inner { padding: var(--space-12) var(--space-8); }
  .navbar-nav-links { display: none; }
  .navbar-actions .btn-outline-custom { display: none; }
  .navbar-toggle { display: flex; }
  .modal-box { max-width: 100%; margin: 0; }
}

@media (max-width: 767px) {
  .section-title { font-size: var(--font-size-2xl); }
  .hero-content { padding: 100px 0 50px; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { gap: var(--space-3); }
  .hero-card-float.card-1 { left: 0; }
  .hero-card-float.card-2 { right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 2.5rem; }
  .about-img-secondary { display: none; }
  .about-badge-float { left: 0; }
  .cta-inner { padding: var(--space-10) var(--space-6); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .filter-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: var(--space-2); }
  .scroll-top { bottom: var(--space-5); right: var(--space-5); }
}

@media (max-width: 575px) {
  .hero-trust { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .stat-item { padding: var(--space-6); }
  .feature-card { padding: var(--space-6); }
  .testimonial-card { padding: var(--space-6); }
  .modal-body { padding: var(--space-5); }
  .modal-header { padding: var(--space-6); }
  .hero-card-float { display: none; }
}
