@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap');

/* ============================================
   GLOBAL & RESET
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
  background: #0a0c10;
  color: #eef2ff;
  line-height: 1.5;
}

:root {
  --accent: #f5b042;
  --accent-dark: #d68c1a;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.bg-accent { background-color: var(--accent); }
.text-accent { color: var(--accent); }
.border-accent { border-color: var(--accent); }
.hover\:bg-accent-dark:hover { background-color: var(--accent-dark); }

/* ============================================
   BUTTONS
   ============================================ */
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.primary-button:hover {
  background-color: var(--accent-dark);
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(245, 176, 66, 0.25);
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: white;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.secondary-button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(245, 176, 66, 0.1);
}

.buy-now-btn {
  transition: all 0.2s;
  box-shadow: 0 0 8px rgba(245, 176, 66, 0.3);
}

.buy-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(245, 176, 66, 0.5);
}

/* ============================================
   TYPOGRAPHY & SECTION TITLES
   ============================================ */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 30%, #e2c28b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

/* ============================================
   HEADER & NAVIGATION (Enhanced)
   ============================================ */
.new-header {
  background: radial-gradient(circle at 20% 50%, rgba(20, 25, 35, 0.95), rgba(5, 7, 12, 0.98));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 176, 66, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-link {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
  /* padding-bottom: 6px; */
  text-decoration: none;
  color: #eef2ff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #ffdd99);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transform: scaleX(0);
  transform-origin: center;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active::after {
  transform: scaleX(1);
  animation: pulseUnderline 1.8s ease-in-out infinite;
}

@keyframes pulseUnderline {
  0% {
    transform: scaleX(0.7);
    opacity: 0.8;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.7);
    opacity: 0.8;
  }
}

.nav-link:hover {
  color: var(--accent);
  text-shadow: 0 0 5px rgba(245, 176, 66, 0.5);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 12, 16, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 176, 66, 0.3);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  transform: translateY(-10px);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.2rem;
  color: #eef2ff;
  font-size: 0.85rem;
  transition: all 0.2s;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(245, 176, 66, 0.15);
  color: var(--accent);
}

/* Secondary Navigation */
.secondary-nav {
  background: rgba(5, 7, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 176, 66, 0.2);
  position: sticky;
  top: 80px;
  z-index: 40;
}

.secondary-nav a {
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color: #eef2ff;
}

.secondary-nav a.active,
.secondary-nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* ============================================
   LOGO
   ============================================ */
.logo-img {
  height: 70px;
  width: auto;
}

@media (max-width: 1024px) {
  .logo-img {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 45px;
  }
}

/* ============================================
   CARDS & COMPONENTS (Course, Character, Hair, Portfolio)
   ============================================ */
.course-card,
.character-card,
.hair-card,
.portfolio-card {
  background: #11161f;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.course-card:hover,
.character-card:hover,
.hair-card:hover,
.portfolio-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 176, 66, 0.2);
}

.course-thumb,
.character-card img,
.hair-card img,
.portfolio-card img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #080b10;
}

.character-card img,
.hair-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.portfolio-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.course-thumb img,
.course-thumb video,
.character-card img,
.hair-card img,
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-thumb img,
.course-card:hover .course-thumb video,
.character-card:hover img,
.hair-card:hover img,
.portfolio-card:hover img {
  transform: scale(1.05);
}

/* Character & Hair Card specific */
.character-card h4,
.hair-card h4 {
  padding: 1rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Tag & Badge */
.tag {
  background: rgba(245, 176, 66, 0.12);
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  border: 1px solid rgba(245, 176, 66, 0.3);
  display: inline-block;
}

.duration-badge i {
  color: var(--accent);
}

/* ============================================
   JOB CARDS (Career page)
   ============================================ */
.job-card {
  background: #11161f;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 1.5rem;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  border-color: var(--accent);
}

/* ============================================
   SIDEBAR NAVIGATION (Career page)
   ============================================ */
.sidebar-nav a {
  transition: all 0.2s;
  border-left: 3px solid transparent;
  text-decoration: none;
  color: #eef2ff;
  display: block;
  padding: 0.5rem 1rem;
}

.sidebar-nav a.active,
.sidebar-nav a:hover {
  border-left-color: var(--accent);
  background: rgba(245, 176, 66, 0.1);
  color: var(--accent);
}

/* ============================================
   QUOTE BLOCK
   ============================================ */
.quote-block {
  background: linear-gradient(135deg, #11161f, #0a0c10);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 12px;
}

/* ============================================
   HOVER SCALE UTILITY
   ============================================ */
.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.5);
}

/* ============================================
   VIDEO ELEMENT
   ============================================ */
.video_he {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

/* ============================================
   TOUR BACKGROUND
   ============================================ */
.tour-bg {
  background: linear-gradient(115deg, #0d0f15 0%, #171a22 100%);
}

/* ============================================
   GALLERY IMAGE
   ============================================ */
.gallery-img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
}

/* ============================================
   CAROUSEL TRACK
   ============================================ */
.carousel-track {
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* ============================================
   CONTACT FORM ELEMENTS
   ============================================ */
.contact-input,
.contact-textarea {
  background: #11161f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  width: 100%;
  color: white;
  transition: all 0.2s;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(245, 176, 66, 0.2);
}

/* ============================================
   BRAND CAROUSEL / SLIDER
   ============================================ */
.brand-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.brand-slider::-webkit-scrollbar {
  display: none;
}

.brand-item {
  flex-shrink: 0;
  filter: grayscale(100%) brightness(1.5);
  transition: filter 0.3s;
}

.brand-item:hover {
  filter: grayscale(0%) brightness(1);
}

@media (max-width: 768px) {
  .brand-item img {
    max-height: 40px;
  }
}

/* ============================================
   PORTFOLIO CATEGORY TABS
   ============================================ */
.category-tab {
  transition: all 0.2s;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.5rem;
}

.category-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============================================
   ADDITIONAL UTILITIES & HELPERS
   ============================================ */
/* Centering and spacing helpers */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Flex & Grid utilities (if needed) */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

/* Hide scrollbar utility (already used in brand slider) */
.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}


.box-area span {
  color: #e4a101;
  border: 1px solid #e4a101;
  padding: 8px;
  border-radius: 5px;
}