/* ============================================
   JQ COMPOSEY - Modern Redesign 2.0
   Inspired by Pragita Music & MassiveMusic
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   CSS Variables
   ============================================ */
:root {
  /* Primary Colors */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;

  /* Accent */
  --accent: #06b6d4;
  --accent-dark: #0891b2;
  --accent-light: #22d3ee;

  /* Neutrals */
  --dark: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #1e293b;
  --dark-600: #334155;
  --dark-500: #475569;
  --dark-400: #64748b;
  --dark-100: #e2e8f0;
  --dark-50: #f8fafc;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;

  /* Functional */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #06b6d4;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --section-py-sm: 60px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.03);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 6px 16px rgba(0,0,0,0.06);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--dark-600);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   Layout
   ============================================ */
.section {
  padding: var(--section-py) 0;
}

.section-sm {
  padding: var(--section-py-sm) 0;
}

.bg-light-custom {
  background: var(--gray-50);
}

.bg-dark-section {
  background: var(--dark);
  color: var(--white);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 2px;
  background: var(--primary);
}

.section-label::before { left: 0; }
.section-label::after { right: 0; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-title.text-white {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 20px auto 0;
  border-radius: var(--radius-full);
}

/* ============================================
   Header & Navigation
   ============================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 8px 0;
}

/* Header on hero pages - white text */
#header .navbar-brand img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

#header.scrolled .navbar-brand img {
  height: 38px;
}

.navbar {
  padding: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white) !important;
  padding: 8px 18px !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--accent-light);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--accent-light) !important;
}

.nav-link.active {
  color: var(--accent-light) !important;
}

#header.scrolled .nav-link {
  color: var(--dark-600) !important;
}

#header.scrolled .nav-link:hover,
#header.scrolled .nav-link.active {
  color: var(--primary) !important;
}

#header.scrolled .nav-link::after {
  background: var(--primary);
}

/* Dark header variant for sub-pages */
.header-dark .nav-link {
  color: var(--dark-600) !important;
}

.header-dark .nav-link:hover,
.header-dark .nav-link.active {
  color: var(--primary) !important;
}

.header-dark .nav-link::after {
  background: var(--primary);
}

/* Mobile Nav */
.navbar-toggler {
  border: 2px solid rgba(255,255,255,0.3);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.navbar-toggler .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

#header.scrolled .navbar-toggler {
  border-color: var(--gray-300);
}

#header.scrolled .navbar-toggler .navbar-toggler-icon {
  filter: none;
}

.header-dark .navbar-toggler {
  border-color: var(--gray-300);
}

.header-dark .navbar-toggler .navbar-toggler-icon {
  filter: none;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 12px;
    box-shadow: var(--shadow-xl);
  }

  .nav-link {
    color: var(--dark-600) !important;
    padding: 10px 16px !important;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-50);
  }

  .nav-link::after {
    display: none;
  }
}

/* ============================================
   Hero Section - Full Width Image + Overlay
   ============================================ */
.hero-fullwidth {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-fullwidth .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-fullwidth .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.6) 50%,
    rgba(15, 23, 42, 0.75) 100%
  );
  z-index: 1;
}

.hero-fullwidth .hero-content-v2 {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 900px;
}

.hero-fullwidth .hero-label {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-fullwidth .hero-title-v2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-fullwidth .hero-title-v2 .highlight {
  color: var(--accent-light);
}

.hero-fullwidth .hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-fullwidth .hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Carousel Controls */
.hero-fullwidth .carousel-control-prev,
.hero-fullwidth .carousel-control-next {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: var(--transition);
  z-index: 5;
}

.hero-fullwidth .carousel-control-prev {
  left: 30px;
}

.hero-fullwidth .carousel-control-next {
  right: 30px;
}

.hero-fullwidth .carousel-control-prev:hover,
.hero-fullwidth .carousel-control-next:hover {
  background: rgba(255,255,255,0.2);
  opacity: 1;
}

.hero-fullwidth .carousel-indicators {
  bottom: 40px;
  z-index: 5;
}

.hero-fullwidth .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  margin: 0 6px;
  transition: var(--transition);
}

.hero-fullwidth .carousel-indicators button.active {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: scale(1.2);
}

/* Watch Now Button */
.hero-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-watch-btn:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.hero-watch-btn i {
  font-size: 1.2rem;
}

/* Sub-page Hero */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-700) 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero h1 .highlight {
  color: var(--accent-light);
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.page-hero .breadcrumb {
  justify-content: center;
  margin-top: 20px;
}

.page-hero .breadcrumb-item a {
  color: rgba(255,255,255,0.6);
}

.page-hero .breadcrumb-item.active {
  color: var(--accent-light);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--gray-50);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card .service-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--dark-500);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Feature Cards */
.feature-card-v2 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  height: 100%;
}

.feature-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}

.feature-card-v2 .feature-icon-v2 {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--primary-50);
  color: var(--primary);
}

.feature-card-v2 h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card-v2 p {
  color: var(--dark-500);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================
   Stats / Achievement Section
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-700) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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='%23ffffff' fill-opacity='0.03'%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");
}

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .stat-suffix {
  color: var(--accent-light);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ============================================
   Artist / Composer Cards
   ============================================ */
.artist-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.artist-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.artist-card-image {
  position: relative;
  padding-top: 120%;
  overflow: hidden;
}

.artist-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.artist-card:hover .artist-card-image img {
  transform: scale(1.08);
}

.artist-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 20px;
  background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, transparent 100%);
  color: var(--white);
}

.artist-card-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.artist-card-role {
  font-size: 0.8rem;
  color: var(--accent-light);
  margin-bottom: 0;
  font-weight: 500;
}

/* Artist Hidden (Show More) */
.artist-hidden {
  display: none;
}

.artist-hidden.show {
  display: block;
}

/* ============================================
   News Cards
   ============================================ */
.news-card-v2 {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.news-card-v2 .news-img {
  height: 220px;
  overflow: hidden;
}

.news-card-v2 .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card-v2:hover .news-img img {
  transform: scale(1.08);
}

.news-card-v2 .news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-v2 .news-category {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}

.news-card-v2 .news-date {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.news-card-v2 h5 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.news-card-v2 p {
  color: var(--dark-500);
  font-size: 0.9rem;
  flex-grow: 1;
}

/* News Card V2 - Page variant */
.news-card-v2 .news-card-v2-img {
  height: 220px;
  overflow: hidden;
}

.news-card-v2 .news-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card-v2:hover .news-card-v2-img img {
  transform: scale(1.08);
}

.news-card-v2 .news-card-v2-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-v2 .news-card-v2-date {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 10px;
  display: block;
}

.news-card-v2 .news-card-v2-body h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.news-card-v2 .news-card-v2-body p {
  color: var(--dark-500);
  font-size: 0.9rem;
  flex-grow: 1;
  margin-bottom: 16px;
}

.news-card-v2 .news-card-v2-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.news-card-v2 .news-card-v2-link:hover {
  color: var(--primary-dark);
}

/* ============================================
   Partner Cards
   ============================================ */
.partner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  height: 100px;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}

.partner-card img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: var(--transition);
}

.partner-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ============================================
   Contact Form
   ============================================ */
.form-control,
.form-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 8px;
}

/* Contact Info Cards */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

/* ============================================
   Social Links
   ============================================ */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--primary);
}

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 700;
}

footer a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

footer a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

footer .footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

footer .input-group .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

footer .input-group .form-control::placeholder {
  color: rgba(255,255,255,0.4);
}

footer .input-group .btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ============================================
   Back to Top
   ============================================ */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
  z-index: 999;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* ============================================
   Utility Classes
   ============================================ */
.bg-gradient-custom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rounded-xl { border-radius: var(--radius-xl); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-md { box-shadow: var(--shadow-md); }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

/* ============================================
   Leadership Card
   ============================================ */
.leadership-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.leadership-initials {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
}

/* ============================================
   Pagination
   ============================================ */
.pagination .page-link {
  border: none;
  color: var(--dark-500);
  padding: 10px 16px;
  border-radius: var(--radius-md) !important;
  margin: 0 4px;
  font-weight: 600;
  transition: var(--transition);
}

.pagination .page-item.active .page-link {
  background: var(--primary);
  color: var(--white);
}

.pagination .page-link:hover {
  background: var(--primary-50);
  color: var(--primary);
}

/* ============================================
   Table Styles
   ============================================ */
.table-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.table {
  margin-bottom: 0;
}

.table thead th {
  background: var(--dark);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 16px 20px;
  border: none;
  font-family: var(--font-heading);
}

.table tbody td {
  padding: 14px 20px;
  vertical-align: middle;
  border-color: var(--gray-100);
  font-size: 0.9rem;
}

.table tbody tr:hover {
  background: var(--primary-50);
}

/* Filter Card */
.filter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

/* Stats Card (catalog) */
.stats-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

/* ============================================
   Social Media Cards
   ============================================ */
.social-media-card {
  min-height: auto;
}

.social-media-card .card-body {
  padding: 28px;
}

.social-media-card .ratio {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   Feature Icon (legacy support)
   ============================================ */
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--primary-50);
  color: var(--primary);
  transition: var(--transition);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-title {
  font-size: 1.1rem;
  margin-top: 16px;
  margin-bottom: 10px;
}

.feature-text {
  color: var(--dark-500);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991.98px) {
  .section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero-fullwidth {
    min-height: 100vh;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .stats-section {
    padding: 60px 0;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .hero-fullwidth .carousel-control-prev,
  .hero-fullwidth .carousel-control-next {
    display: none;
  }

  footer {
    padding: 60px 0 30px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .hero-fullwidth .hero-title-v2 {
    font-size: 2rem;
  }

  .hero-fullwidth .hero-desc {
    font-size: 0.95rem;
  }

  .stat-item {
    padding: 12px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .service-card {
    padding: 24px 20px;
  }

  .partner-card {
    height: 80px;
    padding: 16px;
  }

  .partner-card img {
    max-height: 36px;
  }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}
