/* ============================================
   1. FONT DECLARATIONS
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ============================================
   2. CSS VARIABLES
============================================ */
:root {
  /* Modern Color Palette */
  --black: #000;
  --white: #fff;
  --primary: #5E60CE;
  --primary-light: #6930C3;
  --primary-dark: #480CA8;
  --primary-gradient: linear-gradient(135deg, #5E60CE 0%, #6930C3 50%, #480CA8 100%);
  --secondary: #56CFE1;
  --accent: #64DFDF;
  
  /* Background Colors */
  --bg-dark: #1a1a2e;
  --bg-dark-2: #16213e;
  --bg-dark-3: #0f3460;
  --bg-light: #f8f9fa;
  --bg-light-2: #e9ecef;
  --bg-light-3: #dee2e6;
  --bg-gradient: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  --bg-gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-card-dark: rgba(22, 33, 62, 0.95);
  --bg-accent: rgba(94, 96, 206, 0.05);
  
  /* Text Colors */
  --text-dark: #212529;
  --text-dark-2: #343a40;
  --text-dark-3: #495057;
  --text-light: #f8f9fa;
  --text-light-2: #e9ecef;
  --text-light-3: #dee2e6;
  --text-muted: #6c757d;
  --text-primary: var(--primary);
  
  /* Border Colors */
  --border-light: rgba(233, 236, 239, 0.8);
  --border-dark: rgba(73, 80, 87, 0.2);
  --border-primary: rgba(94, 96, 206, 0.2);
  
  /* Shadow Colors */
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 5px 15px rgba(94, 96, 206, 0.15);
  --shadow-primary-lg: 0 10px 30px rgba(94, 96, 206, 0.2);
  --shadow-primary-hover: 0 10px 30px rgba(94, 96, 206, 0.3);
  --shadow-inner: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  
  /* Animation */
  --transition-fast: all 0.2s ease;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  
  /* Legacy variables - maintained for compatibility */
  --bg1: var(--bg-dark);
  --bg2: var(--bg-light-2);
  --bg3: var(--bg-accent);
  --bg4: var(--bg-light);
  --bg5: var(--bg-light-2);
  --bg6: var(--bg-accent);
  --text1: var(--text-dark);
  --text2: var(--text-dark-3);
  --text3: var(--text-light);
  --text4: var(--text-light-3);
  --text5: var(--text-dark-2);
  --text6: var(--text-muted);
  --text7: var(--text-muted);
  --text8: var(--text-muted);
  --text9: var(--text-muted);
  --text10: var(--text-dark-2);
  --text11: var(--text-muted);
  --border: var(--border-light);
  --border2: var(--border-light);
  --border3: var(--border-light);
  --border4: var(--border-light);
  --border5: var(--border-dark);
  --border6: var(--border-dark);
  --border7: var(--border-primary);
  
  /* Swiper variables */
  --swiper-theme-color: var(--primary);
  --swiper-navigation-size: 44px;

  /* Typography */
  --font-primary: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-secondary: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  
  /* Font sizes */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */
  
  /* Line heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Font weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Letter spacing */
  --tracking-tighter: -0.05em;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;

}

/* ============================================
   3. RESET & BASE STYLES
============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-dark);
  background-color: var(--bg-light);
  background-image: 
    radial-gradient(circle at 25px 25px, var(--bg-light-2) 2%, transparent 0%), 
    radial-gradient(circle at 75px 75px, var(--bg-light-2) 2%, transparent 0%);
  background-size: 100px 100px;
  overflow-x: hidden;
  font-weight: var(--font-normal);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

input, textarea, select {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--text-dark);
  margin-bottom: 0.5em;
}

h1 {
  font-size: var(--text-5xl);
  letter-spacing: var(--tracking-tight);
}

h2 {
  font-size: var(--text-4xl);
  letter-spacing: var(--tracking-tight);
}

h3 {
  font-size: var(--text-3xl);
  letter-spacing: var(--tracking-normal);
}

h4 {
  font-size: var(--text-2xl);
  letter-spacing: var(--tracking-normal);
}

h5 {
  font-size: var(--text-xl);
  letter-spacing: var(--tracking-normal);
}

h6 {
  font-size: var(--text-lg);
  letter-spacing: var(--tracking-normal);
}

p {
  margin-bottom: 1em;
  line-height: var(--leading-relaxed);
}
/* ============================================
   4. LAYOUT UTILITIES
============================================ */
.wrapper {
  max-width: 1230px;
  padding: 0 var(--space-4);
  margin: 0 auto;
}

.dashboard-wrapper {
  max-width: 1374px;
  padding: 0 var(--space-4);
  margin: 0 auto;
}

.section {
  padding: var(--space-7) 0;
  position: relative;
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.blue {
  color: var(--primary);
}

.display__none {
  display: none;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.background img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.top-blocks {
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
}

/* ============================================
   5. COMMON COMPONENTS
============================================ */
/* Button Styles */
.primary-btn {
  font-family: var(--font-secondary);
  font-weight: var(--font-medium);
  font-size: var(--text-base);
  line-height: 1.4;
  background: var(--primary-gradient);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  display: inline-block;
  letter-spacing: var(--tracking-wide);
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary-hover);
  color: var(--white);
}

.primary-btn:hover::before {
  opacity: 1;
}

.primary-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-primary);
}

.secondary-btn {
  font-family: var(--font-secondary);
  font-weight: var(--font-medium);
  font-size: var(--text-base);
  line-height: 1.4;
  letter-spacing: var(--tracking-wide);
  background: transparent;
  color: var(--primary);
  padding: 12px 26px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  border: 2px solid var(--primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  display: inline-block;
}

.secondary-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.ghost-btn {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  background: transparent;
  color: var(--text-dark-2);
  padding: 12px 26px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  display: inline-block;
}

.ghost-btn:hover {
  background-color: rgba(94, 96, 206, 0.1);
  color: var(--primary);
}

/* Section Titles */
.section-title {
  font-family: var(--font-secondary);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  max-width: 940px;
  margin: 0 auto var(--space-5);
  text-align: center;
  color: var(--text-dark);
  position: relative;
  padding-bottom: var(--space-4);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
}

.section-title--left {
  text-align: left;
}

.section-title--left::after {
  left: 0;
  transform: none;
}

.section-title--light {
  color: var(--text-light);
}

.section-subtitle {
  font-size: var(--text-lg);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  color: var(--text-dark-3);
  text-align: center;
  margin: 0 auto var(--space-6);
  max-width: 700px;
}

.section-subtitle--light {
  color: var(--text-light-3);
}

/* Card styles */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card__body {
  padding: var(--space-4);
}

.card__title {
  margin-bottom: var(--space-2);
  color: var(--text-dark);
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
}

.card__text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-dark-3);
}

.card--dark {
  background: var(--bg-card-dark);
  border-color: rgba(255, 255, 255, 0.1);
}

.card--dark .card__title {
  color: var(--text-light);
}

.card--dark .card__text {
  color: var(--text-light-3);
}

/* Badge styles */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-accent);
  color: var(--primary);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wide);
}

.badge--secondary {
  background-color: rgba(86, 207, 225, 0.1);
  color: var(--secondary);
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-light);
  margin: var(--space-4) 0;
}

.divider--dark {
  background-color: var(--border-dark);
}

/* ============================================
   6. HEADER
============================================ */
.header {
  background: var(--bg-gradient);
  padding: var(--space-3) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
}

.header__logo {
  margin-right: 60px;
  transition: var(--transition);
}

.header__logo:hover {
  transform: scale(1.05);
}

.header__logo img {
  display: block;
  object-fit: cover;
  border-radius: var(--radius-md);
  padding: var(--space-1);
  max-width: 85px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Navigation */
.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.header__nav-item.active .header__nav-link {
  color: var(--white);
  opacity: 1;
}

.header__nav-link {
  color: var(--text-light-2);
  line-height: 24px;
  transition: var(--transition);
  position: relative;
  opacity: 0.8;
  padding: 5px 0;
  font-weight: var(--font-medium);
  letter-spacing: var(--tracking-wide);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: var(--transition);
  border-radius: var(--radius-full);
}

.header__nav-item:not(.active):hover .header__nav-link {
  color: var(--white);
  opacity: 1;
}

.header__nav-item:hover .header__nav-link::after {
  width: 100%;
}

/* Dropdown Navigation */
.header__nav-item-dropdown {
  position: relative;
}

.header__nav-item-dropdown:hover > .header__nav-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.header__nav-item-dropdown:hover .header__nav-dropdown-arrow {
  transform: rotateZ(180deg);
}

.header__nav-dropdown-title {
  color: var(--text-light);
  font-weight: 500;
  line-height: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.header__nav-dropdown-arrow {
  transition: var(--transition);
  margin-left: 8px;
}

.header__nav-dropdown {
  display: block;
  position: absolute;
  padding-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: var(--transition);
}

.header__nav-dropdown-list {
  width: 220px;
  padding: var(--space-3);
  background: var(--bg-dark-2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header__nav-dropdown-item:not(:last-child) {
  margin-bottom: var(--space-2);
}

.header__nav-dropdown-link {
  color: var(--text-light-3);
  font-weight: 500;
  line-height: 24px;
  transition: var(--transition);
  display: block;
  padding: 8px var(--space-3);
  border-radius: var(--radius-sm);
}

.header__nav-dropdown-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* Search Box */
.header__search {
  margin-left: 60px;
  display: flex;
  align-items: center;
}

.header__search-box {
  position: relative;
  margin-right: var(--space-3);
}

.header__search-input {
  width: 350px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 12px 12px 12px 48px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--white);
  transition: var(--transition);
}

.header__search-input::placeholder {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6);
}

.header__search-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.header__search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.header__search-input:focus + .header__search-icon {
  color: var(--white);
}

/* Profile */
.header__profile {
  margin-left: auto;
  text-align: center;
  position: relative;
}

.header__profile-name {
  line-height: 24px;
  color: var(--white);
  transition: var(--transition);
  font-weight: var(--font-medium);
  font-size: var(--text-base);
}

.header__profile-logout {
  display: block;
  color: var(--secondary);
  font-size: 14px;
  transition: var(--transition);
}

.header__profile-logout:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Mobile Navigation */
.header__nav-mobile, 
.header__burger {
  display: none;
}

.header__burger {
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: var(--radius-full);
  transition: var(--transition);
}


.header__burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


.header__nav-mobile {
  position: fixed;
  background: var(--bg-dark);
  left: 0;
  right: 0;
  top: -100%;
  height: 1px;
  transition: top 0.4s ease;
  z-index: 99;
  padding: 80px 20px 20px;
  overflow-y: auto;
}

.header__nav-mobile.active {
  top: 0;
}

.header__nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.header__nav-mobile .header__nav-link {
  font-size: 18px;
  display: block;
  padding: var(--space-2) 0;
} 

/* ============================================
   7. HERO SECTION
============================================ */
.hero {
  position: relative;
  min-height: 600px;
  background: var(--bg-gradient-light);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(94, 96, 206, 0.15) 0%, rgba(86, 207, 225, 0.15) 100%);
  top: -400px;
  right: -200px;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(86, 207, 225, 0.1) 0%, rgba(94, 96, 206, 0.1) 100%);
  bottom: -300px;
  left: -100px;
  z-index: 0;
}

.hero__inner {
  padding: var(--space-7) 0 var(--space-5);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  z-index: 3;
  position: relative;
  max-width: 600px;
}

.hero__title {
  font-family: var(--font-secondary);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
  color: var(--text-dark);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-tight);
  font-size: var(--text-5xl);
}

.hero__title span {
  color: var(--primary);
  position: relative;
}

.hero__title span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: rgba(94, 96, 206, 0.2);
  bottom: 5px;
  left: 0;
  z-index: -1;
  border-radius: var(--radius-full);
}

.hero__text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-dark-3);
  margin-bottom: var(--space-5);
}

.hero__buttons {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.hero__details {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__details-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.hero__details-icon {
  margin-right: var(--space-2);
  color: var(--primary);
}

.hero__details-text {
  color: var(--text-dark-2);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  font-weight: var(--font-medium);
  margin-bottom: 0;
}

.hero__img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  width: 45%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-53%) translateX(5px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

.hero__img img {
  display: block;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.12));
}

/* ============================================
   8. PREVIEW SECTION
============================================ */
.preview {
  padding: var(--space-7) 0;
  background-color: var(--bg-light);
}

.preview__inner {
  text-align: center;
}

.preview__img {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid var(--border-light);
  margin-top: var(--space-6);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.preview__img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  z-index: 1;
}

.preview__img img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
}

.preview__img:hover img {
  transform: scale(1.02);
}

/* ============================================
   9. ACCORDION COMPONENT
============================================ */
.accordion {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.accordion__item {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(94, 96, 206, 0.15);
  transform: translateY(0);
  transition: var(--transition);
  overflow: hidden;
}

.accordion__item:not(.active):hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
}

.accordion__item.active {
  box-shadow: var(--shadow-primary);
  border-color: rgba(94, 96, 206, 0.3);
}

.accordion__item.active .accordion__item-header-arrow {
  transform: rotate(90deg);
  color: var(--primary);
}

.accordion__item.active .accordion__item-header {
  border-bottom-color: var(--border-light);
}

.accordion__item.active .accordion__item-content {
  display: block;
}

.accordion__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.accordion__item-header-title {
  flex: 1;
  color: var(--text-dark-2);
  font-family: var(--font-secondary);
  font-weight: var(--font-semibold);
  font-size: var(--text-lg);
  line-height: var(--leading-snug);
}

.accordion__item-header-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--text-dark-3);
}

.accordion__item-content {
  display: none;
  padding: var(--space-4) var(--space-5) var(--space-5);
}

.accordion__item-content-text {
  color: var(--text-dark-3);
  font-weight: var(--font-normal);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

/* ============================================
   10. FEATURES SECTION
============================================ */
.features {
  padding: var(--space-7) 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 96, 206, 0.1) 0%, rgba(86, 207, 225, 0.05) 60%, transparent 70%);
  top: -300px;
  left: -200px;
  z-index: 0;
}

.features__inner {
  margin-top: var(--space-6);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.features__accordion {
  max-width: 550px;
  flex: 1;
}

.features__img {
  flex: 1;
  max-width: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.features__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(94, 96, 206, 0.2) 0%, rgba(86, 207, 225, 0.2) 100%);
  z-index: 1;
  opacity: 0.7;
  transition: var(--transition);
}

.features__img:hover::before {
  opacity: 0.5;
}

.features__img img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 400px;
  transition: var(--transition-slow);
}

.features__img:hover img {
  transform: scale(1.05);
}

/* ============================================
   11. TRUSTED SECTION
============================================ */
.trusted {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-6) 0;
}

.trusted__title {
  color: var(--text-dark-2);
  text-align: center;
  margin-bottom: var(--space-5);
  font-family: var(--font-secondary);
  letter-spacing: var(--tracking-tight);
}

.trusted__items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: var(--space-4);
  justify-content: center;
}

.trusted__item {
  width: calc((100% - 72px) / 4);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.trusted__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(94, 96, 206, 0.15);
}

.trusted__item-img {
  max-width: 100px;
  max-height: 45px;
  filter: grayscale(1) opacity(0.7);
  transition: var(--transition);
}

.trusted__item:hover .trusted__item-img {
  filter: grayscale(0) opacity(1);
}

/* ============================================
   12. TESTIMONIALS SECTION
============================================ */
.testimonials {
  padding: var(--space-7) 0;
  background-color: var(--bg-light-2);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 207, 225, 0.1) 0%, rgba(94, 96, 206, 0.05) 60%, transparent 70%);
  bottom: -400px;
  right: -300px;
  z-index: 0;
}

.testimonials__inner {
  margin-top: var(--space-6);
  position: relative;
  z-index: 1;
}

.testimonials .swiper {
  overflow: visible;
  padding: var(--space-4) var(--space-1);
}

.testimonials .swiper-slide {
  height: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  transform: scale(0.9);
  opacity: 0.7;
}

.testimonials .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  box-shadow: var(--shadow-lg);
}

.testimonials__slide-title {
  margin-bottom: var(--space-3);
  color: var(--text-dark);
  font-family: var(--font-secondary);
  line-height: var(--leading-snug);
  font-weight: var(--font-semibold);
}

.testimonials__slide-text {
  color: var(--text-dark-3);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.testimonials__slide-user {
  display: flex;
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-light);
}

.testimonials__slide-user-img {
  width: 50px;
  height: 50px;
  margin-right: var(--space-3);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-light);
}

.testimonials__slide-user-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__slide-user-info {
  display: flex;
  flex-direction: column;
}

.testimonials__slide-user-name {
  color: var(--text-dark);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.testimonials__slide-user-position {
  color: var(--text-dark-3);
  font-weight: var(--font-normal);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}

.testimonials__pagination {
  margin-top: var(--space-5);
  display: flex;
  justify-content: center;
}

/* Swiper pagination custom styling */
.testimonials .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--bg-light-3);
  opacity: 0.7;
  transition: var(--transition);
}

.testimonials .swiper-pagination-bullet-active {
  width: 20px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--primary);
  opacity: 1;
}

/* ============================================
   13. CATEGORIES SECTION
============================================ */
.categories {
  padding: var(--space-7) 0;
  background-color: var(--white);
}

.categories__inner {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.categories__item {
  width: calc((100% - 72px) / 4);
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.categories__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
  border-color: rgba(94, 96, 206, 0.15);
}

.categories__item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-3);
  transition: var(--transition);
}

.categories__item:hover .categories__item-img {
  background: rgba(94, 96, 206, 0.15);
}

.categories__item-title {
  margin-bottom: var(--space-2);
}

.categories__item-link {
  display: block;
  color: var(--text-dark);
  transition: var(--transition);
  font-family: var(--font-secondary);
  font-weight: var(--font-bold);
  font-size: var(--text-lg);
}

.categories__item:hover .categories__item-link {
  color: var(--primary);
}

.categories__item-text {
  /* font-family: "Satoshi", sans-serif; */
  font-family: var(--font-primary);
  color: var(--text-dark-3);
  font-weight: var(--font-normal);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* ============================================
   14. GET STARTED SECTION
============================================ */
.get-started {
  padding: var(--space-7) 0;
  background: var(--bg-light-2);
  position: relative;
  overflow: hidden;
}

.get-started::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 96, 206, 0.1) 0%, rgba(86, 207, 225, 0.05) 60%, transparent 70%);
  top: -300px;
  right: -200px;
  z-index: 0;
}

.get-started .wrapper {
  position: relative;
  z-index: 1;
}

.get-started__inner {
  position: relative;
  background: var(--white);
  max-width: 750px;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.get-started__inner .section-title {
  max-width: 100%;
  text-align: left;
  margin-bottom: var(--space-4);
}

.get-started__inner .section-title::after {
  left: 0;
  transform: none;
}

.get-started__list {
  margin-bottom: var(--space-5);
}

.get-started__item {
  display: flex;
  align-items: center;
  padding: var(--space-2) 0;
  transition: var(--transition);
}

.get-started__item:hover {
  transform: translateX(5px);
}

.get-started__item-img {
  margin-right: var(--space-3);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--primary);
}

.get-started__item-text {
  color: var(--text-dark-3);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.get-started__item-text-black {
  color: var(--text-dark);
  font-weight: var(--font-semibold);
}

.get-started__img {
  position: absolute;
  z-index: -1;
  bottom: -30px;
  right: -150px;
  max-width: 40%;
  animation: float 6s ease-in-out infinite;
}

/* ============================================
   15. FAQ SECTION
============================================ */
.faq {
  padding: var(--space-7) 0;
  background-color: var(--white);
}

.faq__inner {
  margin-top: var(--space-6);
  display: flex;
  gap: var(--space-4);
}

.faq__inner-col {
  width: calc((100% - 24px) / 2);
}

.faq__item {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.faq__item:not(:last-child) {
  margin-bottom: var(--space-4);
}

.faq__item:not(.active):hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(94, 96, 206, 0.1);
}

.faq__item.active {
  box-shadow: var(--shadow-primary);
  border-color: rgba(94, 96, 206, 0.15);
}

.faq__item-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  transition: var(--transition);
}

.faq__item.active .faq__item-header {
  border-bottom: 1px solid var(--border-light);
}

.faq__item-header-title {
  color: var(--text-dark-2);
  padding-right: var(--space-3);
  font-family: var(--font-secondary);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  font-size: var(--text-lg);
}

.faq__item-header-arrow {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq__item.active .faq__item-header-arrow {
  transform: rotate(180deg);
}

.faq__item-header-arrow::before,
.faq__item-header-arrow::after {
  content: "";
  position: absolute;
  background: var(--primary);
  transition: var(--transition);
}

.faq__item-header-arrow::before {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}

.faq__item.active .faq__item-header-arrow::before {
  opacity: 0;
}

.faq__item-header-arrow::after {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.faq__item-content {
  padding: var(--space-4) var(--space-5);
  display: none;
}

.faq__item.active .faq__item-content {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq__item-content-text {
  color: var(--text-dark-3);
  font-weight: var(--font-normal);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

/* ============================================
   16. OFFER SECTION
============================================ */
.offer {
  padding: var(--space-7) 0;
  background-color: var(--bg-light-2);
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86, 207, 225, 0.1) 0%, rgba(94, 96, 206, 0.05) 60%, transparent 70%);
  bottom: -300px;
  left: -200px;
  z-index: 0;
}

.offer__text {
  text-align: center;
  margin: var(--space-3) auto var(--space-6);
  color: var(--text-dark-3);
  max-width: 700px;
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.offer__inner {
  margin-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  background: var(--white);
}

.offer__img {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* .offer__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(94, 96, 206, 0.2) 0%, rgba(86, 207, 225, 0.2) 100%);
  z-index: 1;
  opacity: 0.7;
  transition: var(--transition);
} */

.offer__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.offer__inner:hover .offer__img img {
  transform: scale(1.05);
}

.offer__content {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  width: 550px;
  flex-shrink: 0;
  background: var(--white);
}

.offer__content-title {
  color: var(--text-dark);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.offer__content-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
}

.offer__content-list {
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-light);
}

.offer__content-item {
  display: flex;
  align-items: flex-start;
  transition: var(--transition);
}

.offer__content-item:hover {
  transform: translateX(5px);
}

.offer__content-item:not(:last-child) {
  /* margin-bottom: var(--space-4); */
  margin-bottom: 5px;
}

.offer__content-item-icon {
  margin-right: var(--space-3);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 4px;
}

.offer__content-item-text {
  color: var(--text-dark-2);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.offer__content-price {
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-3);
  font-family: var(--font-secondary);
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
  font-weight: var(--font-bold);
  letter-spacing: var(--tracking-tight);
}

.offer__content-price-month {
  color: var(--text-dark-3);
  vertical-align: middle;
  font-size: var(--text-base);
  font-weight: var(--font-normal);
}

.offer__content-payment {
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.offer__content-payment-item {
  transition: var(--transition);
}

.offer__content-payment-item:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

/* ============================================
   17. ABOUT US SECTION
============================================ */
.about-us.section {
  padding: var(--space-7) 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.about-us::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 96, 206, 0.1) 0%, rgba(86, 207, 225, 0.05) 60%, transparent 70%);
  top: -300px;
  left: -200px;
  z-index: 0;
}

.about-us__inner {
  margin-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.about-us__inner:hover {
  box-shadow: var(--shadow-primary-lg);
  transform: translateY(-5px);
}

.about-us__img {
  flex: 1;
  overflow: hidden;
  border-top-left-radius: var(--radius-lg);
  border-bottom-left-radius: var(--radius-lg);
  position: relative;
}

.about-us__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(94, 96, 206, 0.2) 0%, rgba(86, 207, 225, 0.2) 100%);
  z-index: 1;
  opacity: 0.7;
  transition: var(--transition);
}

.about-us__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-us__inner:hover .about-us__img img {
  transform: scale(1.05);
}

.about-us__content {
  flex: 1;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
}

.about-us__text {
  color: var(--text-dark-3);
  margin-bottom: var(--space-5);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.about-us__highlights {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-5);
}

.about-us__highlight-item {
  display: flex;
  align-items: flex-start;
  transition: var(--transition);
}

.about-us__highlight-item:hover {
  transform: translateX(5px);
}

.about-us__highlight-item:not(:last-child) {
  margin-bottom: var(--space-4);
}

.about-us__highlight-icon {
  width: 20px;
  height: 20px;
  margin-right: var(--space-3);
  flex-shrink: 0;
  color: var(--primary);
}

.about-us__highlight-text {
  color: var(--text-dark-2);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.about-us__cta-text {
  color: var(--text-dark-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.about-us__content .primary-btn {
  align-self: flex-start;
}

/* ============================================
   18. SIDEBAR
============================================ */
.jobs-wrapper {
  margin-top: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
}

.sidebar {
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-light);
}

.sidebar__head-title {
  color: var(--text-dark);
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
}

.sidebar__head-reset {
  font-weight: 500;
  cursor: pointer;
  color: var(--primary);
  font-size: 14px;
  transition: var(--transition);
}

.sidebar__head-reset:hover {
  text-decoration: underline;
}

.sidebar__dropdown:not(:last-child) {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border-light);
}

.sidebar__dropdown.active > .sidebar__dropdown-body {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}

.sidebar__dropdown.active .sidebar__dropdown-arrow {
  transform: rotateZ(180deg);
  color: var(--primary);
}

.sidebar__dropdown-head {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) 0;
}

.sidebar__dropdown-title {
  color: var(--text-dark-2);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
}

.sidebar__dropdown-arrow {
  transition: var(--transition);
  color: var(--text-dark-3);
}

.sidebar__dropdown-body {
  display: none;
  padding-top: var(--space-3);
}

.sidebar__dropdown-box {
  position: relative;
  margin-bottom: var(--space-3);
}

.sidebar__dropdown-input {
  width: 100%;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 10px 40px 10px 12px;
  outline: none;
  border: 1px solid var(--border-light);
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-dark);
  transition: var(--transition);
}

.sidebar__dropdown-input::placeholder {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-muted);
}

.sidebar__dropdown-input:focus {
  border: 1px solid var(--primary);
  box-shadow: 0 0 0 3px rgba(94, 96, 206, 0.1);
}

.sidebar__dropdown-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  color: var(--text-muted);
  transition: var(--transition);
}

.sidebar__dropdown-input:focus + .sidebar__dropdown-icon {
  color: var(--primary);
}

.sidebar__dropdown-item:not(:last-child) {
  margin-bottom: var(--space-3);
}

.sidebar__dropdown-list {
  margin-bottom: var(--space-4);
}

.sidebar__dropdown-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.sidebar__dropdown-label:hover {
  background: var(--bg-accent);
}

.sidebar__dropdown-checkbox {
  display: none;
}

.sidebar__dropdown-checkbox:checked + .sidebar__dropdown-checkmark {
  border-color: var(--primary);
  background-color: var(--primary);
}

.sidebar__dropdown-checkbox:checked + .sidebar__dropdown-checkmark::after {
  content: "";
  opacity: 1;
  transform: rotate(45deg) translate(-1px, -1px);
}

.sidebar__dropdown-checkmark {
  display: block;
  margin-right: var(--space-2);
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: transparent;
  border: 2px solid var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.sidebar__dropdown-checkmark::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  top: 1px;
  left: 5px;
  opacity: 0;
  transform: rotate(45deg) translate(5px, -5px);
  transition: var(--transition);
}

.sidebar__dropdown-text {
  color: var(--text-dark-2);
  transition: var(--transition);
  font-size: var(--text-sm);
}

.sidebar__dropdown-checkbox:checked ~ .sidebar__dropdown-text {
  color: var(--primary);
  font-weight: 500;
}

.sidebar__dropdown-text span {
  color: var(--text-muted);
  margin-left: var(--space-1);
  font-size: 13px;
}

.sidebar__dropdown-more {
  font-weight: 500;
  color: var(--primary);
  display: block;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  padding: var(--space-2) 0;
  transition: var(--transition);
}

.sidebar__dropdown-more:hover {
  text-decoration: underline;
}

/* ============================================
   19. MAIN CONTENT
============================================ */
.main {
  flex: 1;
  padding-bottom: var(--space-7);
}

.main__title {
  color: var(--text-dark);
  margin-bottom: var(--space-4);
  font-family: var(--font-secondary);
  font-weight: var(--font-bold);
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
}

.main__item {
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: var(--space-4);
  transition: var(--transition);
}

.main__item:not(:last-child) {
  margin-bottom: var(--space-3);
}

.main__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.main__item.active {
  border: 1px solid rgba(94, 96, 206, 0.3);
  box-shadow: var(--shadow-primary);
}

.main__item.active > .main__item-body {
  display: block;
}

.main__item.active .main__item-head-arrow {
  transform: rotateZ(-90deg);
  color: var(--primary);
}

.main__item-head-info {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-2);
  cursor: pointer;
}

.main__item-head-title {
  flex: 1;
  color: var(--text-dark);
  font-family: var(--font-secondary);
  font-weight: var(--font-semibold);
  font-size: var(--text-lg);
}

.main__item-head-fav {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: var(--space-3);
  border-radius: 50%;
  background: var(--bg-accent);
  color: var(--text-dark-3);
  transition: var(--transition);
}

.main__item-head-fav:hover {
  background: rgba(94, 96, 206, 0.15);
  color: var(--primary);
}

.main__item-head-fav.active {
  background: rgba(94, 96, 206, 0.2);
  color: var(--primary);
}

.main__item-head-arrow {
  transition: var(--transition);
  color: var(--text-dark-3);
}

.main__item-head-details {
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
}

.main__item-head-details-text {
  font-size: 15px;
  color: var(--text-dark-3);
  display: flex;
  align-items: center;
}

.main__item-head-details-text:not(:last-child) {
  padding-right: var(--space-3);
  border-right: 1px solid var(--border-light);
}

.main__item-head-details-price {
  font-weight: 700;
  color: var(--primary);
}

.main__item-head-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: var(--space-4);
  gap: var(--space-2);
}

.main__item-head-tag {
  border-radius: var(--radius-full);
  background: var(--bg-accent);
  color: var(--primary);
  padding: 6px 12px;
  transition: var(--transition);
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
}

.main__item-head-tag:hover {
  background: rgba(94, 96, 206, 0.15);
}

.main__item-head-location {
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main__item-head-location-text {
  display: flex;
  align-items: center;
  color: var(--text-dark-3);
  font-size: 15px;
}

.main__item-head-location-text svg,
.main__item-head-location-text img {
  margin-right: var(--space-2);
  color: var(--primary);
}

.main__item-body {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.main__item-body-text {
  margin-top: var(--space-4);
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-4);
  color: var(--text-dark-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.main__item-body-options {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
}

.main__item-body-btn {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  border-radius: var(--radius-lg);
  background: transparent;
  outline: none;
  padding: 10px 20px;
  transition: var(--transition);
  cursor: pointer;
}

.main__item-body-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* Pagination */
.main__pagination {
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main__pagination-text {
  color: var(--text-dark-3);
  font-size: var(--text-sm);
}

.main__pagination-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.main__pagination-button {
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text-dark-2);
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition);
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
}

.main__pagination-button.active {
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  cursor: default;
}

.main__pagination-button.disabled {
  border: none;
  color: var(--text-muted);
  cursor: default;
}

.main__pagination-button.next, 
.main__pagination-button.prev {
  width: 32px;
  padding: 0;
}

.main__pagination-button.gap {
  border: none;
  cursor: default;
}

.main__pagination-button:not(.active):not(.gap):not(.disabled):hover {
  background: var(--bg-accent);
  color: var(--primary);
  border-color: rgba(94, 96, 206, 0.2);
}

/* ============================================
   20. FOOTER
============================================ */
.footer {
  background: var(--bg-gradient);
  color: var(--text-light);
  padding: var(--space-7) 0 var(--space-5);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  top: -300px;
  right: -200px;
  z-index: 0;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: var(--space-5);
  position: relative;
  z-index: 1;
}

.footer__info {
  max-width: 320px;
}

.footer__info-logo {
  display: inline-block;
  margin-bottom: var(--space-4);
  transition: var(--transition);
}

.footer__info-logo:hover {
  transform: translateY(-3px);
}

.footer__info-logo > img {
  max-width: 140px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__info-text {
  color: var(--text-light-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.footer__info-social {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer__info-social-item {
  transition: var(--transition);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--text-light);
}

.footer__info-social-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.footer__contact {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  max-width: 674px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.footer__contact:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer__contact-title {
  color: var(--white);
  margin-bottom: var(--space-2);
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  line-height: var(--leading-snug);
  font-weight: var(--font-semibold);
}

.footer__contact-text {
  color: var(--text-light-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.footer__contact-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: var(--space-3);
}

.footer__contact-form-block {
  display: flex;
  flex-direction: column;
  align-self: start;
  width: calc((100% - var(--space-3)) / 2);
  margin-bottom: var(--space-3);
}

.footer__contact-form-block-textarea {
  width: 100%;
}

.footer__contact-form-label {
  display: block;
  line-height: 1.4;
  color: var(--text-light-2);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  font-weight: var(--font-medium);
}

.footer__contact-form-input,
.footer__contact-form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  outline: none;
  transition: var(--transition);
}

.footer__contact-form-input:focus,
.footer__contact-form-textarea:focus {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.15);
}

.footer__contact-form-input::placeholder,
.footer__contact-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer__contact-form-textarea {
  height: 120px;
  resize: none;
  font-family: "Inter", sans-serif;
}

.footer__contact .primary-btn {
  width: 100%;
  margin-top: var(--space-2);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__contact .primary-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  position: relative;
  z-index: 1;
}

.footer__bottom-text {
  color: var(--text-light-3);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.footer__bottom-text a {
  color: var(--secondary);
  position: relative;
  transition: var(--transition);
}

.footer__bottom-text a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.footer__bottom-text a:hover {
  color: var(--white);
}

.footer__bottom-text a:hover::after {
  width: 100%;
  background-color: var(--white);
}

/* Alert styles */
.alert {
  width: 100%;
  padding: var(--space-3);
  margin: var(--space-2) 0;
  border-radius: var(--radius-md);
  font-size: 15px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.alert-success {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
  border: 1px solid rgba(25, 135, 84, 0.2);
}

.alert-danger {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.alert svg {
  margin-right: var(--space-2);
}

/* ============================================
   21. SWIPER CORE
============================================ */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--primary-dark);
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--bg-light-3);
  opacity: 0.7;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary);
}

/* ============================================
   22. RESPONSIVE STYLES
============================================ */
@media (max-width: 1285px) {
  .header__logo {
    margin-right: 40px;
  }

  .header__search {
    margin-left: 40px;
  }

  .header__search-input {
    width: 300px;
  }

  .hero__img {
    width: 40%;
  }

  .trusted__item {
    width: calc((100% - 48px) / 3);
  }

  .categories__item {
    width: calc((100% - 48px) / 3);
  }

  .faq__inner {
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    max-width: 600px;
  }

  .faq__inner-col {
    width: 100%;
  }

  .faq__inner-col:not(:last-child) {
    margin-bottom: var(--space-4);
  }

  .footer__info {
    margin-right: 30px;
  }
}

@media (max-width: 992px) {
  :root {
    --space-6: 40px;
    --space-7: 56px;
  }
  
  .section-title {
    font-size: var(--text-3xl);
  }
  
  .hero__title {
    font-size: var(--text-4xl);
  }
  
  .features__inner {
    flex-direction: column;
  }
  
  .features__img {
    max-width: 100%;
    margin-top: var(--space-4);
  }
  
  .features__accordion {
    max-width: 100%;
  }
  
  .offer__content {
    padding: var(--space-4);
    width: 450px;
  }
  
  .offer__content-title {
    font-size: 28px;
  }
  
  .get-started__img {
    max-width: 35%;
    right: -100px;
  }
  
  .about-us__inner {
    gap: var(--space-4);
  }
  
  .about-us__content {
    padding: var(--space-4);
  }
}

@media (max-width: 900px) {
  .section {
    padding: var(--space-6) 0;
  }
  
  .footer__inner {
    flex-direction: column;
  }
  
  .footer__info {
    margin-right: 0;
    margin-bottom: var(--space-4);
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .footer__info-social {
    justify-content: center;
  }

  .footer__contact {
    max-width: 100%;
    padding: var(--space-4);
  }
}

@media (max-width: 768px) {
  :root {
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
  }
  
  .section-title {
    font-size: var(--text-3xl);
  }
  
  .section-subtitle {
    font-size: var(--text-base);
  }
  
  .header__inner {
    justify-content: space-between;
  }
  
  .header__logo {
    margin-right: 0;
  }
  
  .header__nav {
    display: none;
  }

  .header__search {
    display: none;
  }
  
  .header__profile {
    display: none;
  }
  
  .header__burger {
    display: flex;
  }
  
  .header__nav-mobile {
    display: block;
  }
  
  .hero {
    min-height: auto;
  }
  
  .hero__inner {
    justify-content: center;
    padding: var(--space-6) 0;
    text-align: center;
    display: block;
  }

   .features__img {
    display: none;
   }
  
  .hero__title {
    font-size: var(--text-3xl);
  }
  
  .hero__content {
    max-width: 100%;
  }
  
  .hero__buttons {
    justify-content: center;
  }
  
  .hero__details {
    justify-content: center;
  }
  
  .hero__img {
    display: none;
  }
  
  .trusted__item {
    width: calc((100% - 24px) / 2);
  }

  .categories__item {
    width: calc((100% - 24px) / 2);
  }

  .get-started__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-4);
    max-width: 100%;
  }

  .get-started__inner .section-title {
    text-align: center;
    font-size: var(--text-2xl);
  }
  
  .get-started__img {
    display: none;
  }
  
  .get-started__item-text {
    font-size: 16px;
  }

  .offer__inner {
    margin-top: var(--space-4);
    flex-direction: column;
  }
  
  .offer__img {
    display: block;
    height: 250px;
  }
  
  .offer__content {
    margin: 0;
    width: 100%;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  
  .offer__content-title {
    font-size: 26px;
  }
  
  .about-us__inner {
    flex-direction: column;
    margin-top: var(--space-4);
  }

  .about-us__img {
    height: 250px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .about-us__content {
    padding: var(--space-4);
    width: 100%;
  }

  .about-us__content .primary-btn {
    width: 100%;
    align-self: center;
  }
  
  .jobs-wrapper {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    margin-bottom: var(--space-4);
  }
  
  .main__item-body-options {
    flex-wrap: wrap;
  }
  
  .main__item-body-btn,
  .main__item-body-options .primary-btn {
    width: 100%;
  }
  
  .main__pagination {
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer__contact-form-block {
    width: 100%;
  }
}

@media (max-width: 576px) {
  :root {
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 28px;
    --space-7: 40px;
  }
  
  .section-title {
    font-size: var(--text-2xl);
    padding-bottom: var(--space-3);
  }
  
  .section-title::after {
    width: 60px;
    height: 3px;
  }
  
  .section-subtitle {
    font-size: var(--text-base);
  }
  
  .hero__title {
    font-size: var(--text-2xl);
  }
  
  .hero__text {
    font-size: var(--text-base);
  }
  
  .hero__buttons {
    flex-direction: column;
    gap: var(--space-3);
    width: 100%;
  }
  
  .hero__buttons .primary-btn,
  .hero__buttons .secondary-btn {
    width: 100%;
  }
  
  .hero__details-item {
    width: 100%;
  }

  .offer__text {
    font-size: 16px;
  }
  
  .offer__content {
    padding: var(--space-4);
  }
  
  .offer__content-title {
    font-size: 22px;
    padding-bottom: var(--space-3);
    margin-bottom: var(--space-4);
  }
  
  .offer__content-item:not(:last-child) {
    margin-bottom: var(--space-3);
  }
  
  .offer__content-price {
    font-size: 36px;
  }
  
  .primary-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .secondary-btn {
    padding: 11px 24px;
    font-size: 15px;
  }
  
  .about-us__inner {
    margin-top: var(--space-4);
  }

  .about-us__content {
    padding: var(--space-4);
  }

  .about-us__text {
    font-size: 16px;
  }

  .about-us__highlight-text {
    font-size: 15px;
  }

  .about-us__cta-text {
    font-size: 16px;
  }
  
  .testimonials .swiper-slide {
    padding: var(--space-4);
  }
  
  .testimonials__slide-title {
    font-size: 20px;
  }
  
  .faq__item-header {
    padding: var(--space-3) var(--space-4);
  }
  
  .faq__item-header-title {
    font-size: 16px;
  }
  
  .faq__item-content {
    padding: var(--space-3) var(--space-4);
  }
  
  .main__item {
    padding: var(--space-3);
  }
  
  .main__item-head-title {
    font-size: 17px;
  }
  
  .main__item-head-details {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
  
  .main__item-head-details-text:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }
  
  .footer__contact-title {
    font-size: 20px;
  }
  
  .footer__contact-form-label {
    font-size: 14px;
  }
  
  .footer__bottom-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .trusted__item {
    width: 100%;
  }
  
  .categories__item {
    width: 100%;
  }
  
  .offer__content-payment {
    flex-wrap: wrap;
    gap: var(--space-2);
  }
  
  .offer__content-payment-item {
    width: calc(25% - var(--space-2) / 2);
  }
  
  .hero__details {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .hero__details-item {
    width: 100%;
  }
  
  .main__item-head-tags {
    gap: var(--space-2);
  }
  
  .footer__info-text {
    font-size: 15px;
  }
  
  .footer__contact-text {
    font-size: 15px;
  }
}

/* Animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-53%) translateX(5px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(94, 96, 206, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(94, 96, 206, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(94, 96, 206, 0);
  }
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: var(--space-1);
}

.mb-1 {
  margin-bottom: var(--space-1);
}

.mt-2 {
  margin-top: var(--space-2);
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mt-3 {
  margin-top: var(--space-3);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mt-5 {
  margin-top: var(--space-5);
}

.mb-5 {
  margin-bottom: var(--space-5);
}

.w-100 {
  width: 100%;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-1 {
  gap: var(--space-1);
}

.gap-2 {
  gap: var(--space-2);
}

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

.flex-column {
  flex-direction: column;
}

.relative {
  position: relative;
}

.z-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.radius-sm {
  border-radius: var(--radius-sm);
}

.radius-md {
  border-radius: var(--radius-md);
}

.radius-lg {
  border-radius: var(--radius-lg);
}

.radius-xl {
  border-radius: var(--radius-xl);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

/* Dark mode styles */
/*
@media (prefers-color-scheme: dark) {
  :root {
    --bg-light: var(--bg-dark-3);
    --bg-light-2: var(--bg-dark-2);
    --bg-light-3: var(--bg-dark);
    --text-dark: var(--text-light);
    --text-dark-2: var(--text-light-2);
    --text-dark-3: var(--text-light-3);
    --border-light: rgba(255, 255, 255, 0.1);
    --bg-card: rgba(22, 33, 62, 0.95);
    --bg-gradient-light: var(--bg-gradient);
  }
  
  body {
    background-color: var(--bg-dark-3);
    background-image: 
      radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.05) 2%, transparent 0%), 
      radial-gradient(circle at 75px 75px, rgba(255, 255, 255, 0.05) 2%, transparent 0%);
  }
  
  .section-title {
    color: var(--text-light);
  }
  
  .section-subtitle {
    color: var(--text-light-3);
  }
  
  .card {
    background: var(--bg-card-dark);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .card__title {
    color: var(--text-light);
  }
  
  .card__text {
    color: var(--text-light-3);
  }
  
  .sidebar, 
  .main__item,
  .about-us__inner,
  .get-started__inner,
  .preview__img,
  .testimonials .swiper-slide,
  .offer__inner,
  .offer__content,
  .faq__item,
  .accordion__item,
  .categories__item,
  .trusted__item {
    background: var(--bg-dark-2);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .sidebar__head-title,
  .main__title,
  .main__item-head-title,
  .about-us__highlight-text,
  .get-started__item-text-black,
  .faq__item-header-title,
  .accordion__item-header-title,
  .offer__content-title,
  .offer__content-item-text,
  .categories__item-link {
    color: var(--text-light);
  }
  
  .sidebar__dropdown-title,
  .main__item-head-details-text,
  .main__item-body-text,
  .about-us__text,
  .about-us__cta-text,
  .get-started__item-text,
  .faq__item-content-text,
  .accordion__item-content-text,
  .offer__text,
  .categories__item-text {
    color: var(--text-light-3);
  }
  
  .sidebar__dropdown-input,
  .main__item-head-location-text,
  .main__pagination-text {
    background: var(--bg-dark-3);
    color: var(--text-light-3);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .main__item-head-tag {
    background: rgba(94, 96, 206, 0.15);
  }
  
  .main__pagination-button:not(.active) {
    color: var(--text-light-3);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .main__pagination-button:not(.active):not(.gap):not(.disabled):hover {
    background: rgba(94, 96, 206, 0.15);
  }
}
*/













/* HIMANSHU */
.testimonials__fog{
  display: none;
}

.get-started__img{
  opacity: 0.1;
}

.offer__content-title {
  text-align: center;
  font-weight: 500;
}

.offer__content-title::after {
  width: 100%;
}

.footer__info-social-link > img {
  padding-top: 5.5px;
}



/* ============================================
   1. HEADER & NAVIGATION - PRODUCT PAGE
============================================ */

#product_page #burger-btn {
    display: none;
}

/* ============================================
   2. VIDEO CONTAINER & PLAYER - PRODUCT PAGE
============================================ */
#product_page .video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding-bottom: 177.78%; /* Adjusted for vertical video format (9:16) */
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
}

#product_page .video-container#video-main {
    margin-top: 20px;
    height: auto;
}

#product_page .video-container .video-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

#product_page .video-js .vjs-big-play-button {
    background-color: rgba(94, 96, 206, 0.7) !important;
    border-color: var(--primary) !important;
    border-radius: 50% !important;
    height: 80px !important;
    width: 80px !important;
    line-height: 80px !important;
    left: 50% !important;
    top: 50% !important;
    margin-left: -40px !important;
    margin-top: -40px !important;
    transition: var(--transition) !important;
}

#product_page .video-js:hover .vjs-big-play-button {
    background-color: var(--primary) !important;
    transform: scale(1.1);
}

/* Fullscreen video enhancements */
#product_page .video-js {
    width: 100%;
    height: 100%;
}

#product_page .vjs-fullscreen {
    background-color: #000;
}

#product_page .vjs-fullscreen .vjs-tech {
    object-fit: contain !important; /* Better fit in fullscreen */
}

/* Style the fullscreen button to be more prominent */
#product_page .vjs-fullscreen-control {
    color: var(--primary) !important;
}

/* Make control bar more visible on mobile */
#product_page .video-js .vjs-control-bar {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Animation for entering fullscreen */
#product_page .video-js.vjs-fullscreen {
    animation: fullscreen-enter 0.3s ease-out;
}

@keyframes fullscreen-enter {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Class added to HTML when fullscreen is active */
html.video-fullscreen-active {
    overflow: hidden;
}

/* Fix for iOS fullscreen */
@supports (-webkit-touch-callout: none) {
    #product_page .video-js.vjs-fullscreen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 9999;
    }
}

/* ============================================
   3. CONTENT SECTION STYLES - PRODUCT PAGE
============================================ */
#product_page .offer.section.top-blocks {
    padding-top: var(--space-5);
    position: relative;
}


#product_page .offer .section-title {
    margin-top: 20px;
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 2;
}

#product_page .offer__text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-5);
    font-size: var(--text-lg);
    position: relative;
    z-index: 2;
}

/* ============================================
   4. RESPONSIVE ADJUSTMENTS - PRODUCT PAGE
============================================ */
@media (max-width: 768px) {
    #product_page .video-container {
        padding-bottom: 170%; /* Taller aspect ratio for mobile */
    }
    
    #product_page .offer.section.top-blocks {
        padding-top: 0;
    }
    
    #product_page .header {
        height: 60px;
    }
    
    #product_page .header__logo img {
        max-height: 40px;
    }
    
    /* Enhanced play button on mobile */
    #product_page .video-js .vjs-big-play-button {
        background-color: rgba(94, 96, 206, 0.8) !important;
    }

    #product_page .header__logo{
      margin: 0 auto;
      text-align: center;
      margin-top: -5px;
    }
}

@media (max-width: 576px) {
    #product_page .video-container {
        padding-bottom: 177.78%; /* Return to 9:16 ratio for smaller screens */
    }
    
    #product_page .video-js .vjs-big-play-button {
        height: 60px !important;
        width: 60px !important;
        line-height: 55px !important;
        margin-left: -30px !important;
        margin-top: -30px !important;
    }
    
    /* Improved control bar visibility on very small screens */
    #product_page .video-js .vjs-control-bar {
        font-size: 0.9em;
    }
}


