@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --gold: #d9a04c;
  --gold-light: #e8b866;
  --gold-dark: #b98832;
  --gold-muted: rgba(217, 160, 76, 0.15);
  --dark: #0d0d0d;
  --dark-800: #1a1a1a;
  --dark-700: #2d2d2d;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --bg: #fafafa;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 4px 14px rgba(217, 160, 76, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}
.hero-other{
        text-align: left;
        margin: 0;
        max-width: 100%;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 160, 76, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.text-accent {
  color: var(--gold);
}

.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  padding: 16px 0;
  transition: var(--transition);
}

.navbar-wrapper.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  flex: 1;
}

.hamburger {
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger:hover span {
  background: var(--gold-light);
}

.nav-logo img {
  height: 70px;
  transition: var(--transition);
}

.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

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

.nav-right .btn-primary {
  display: none;
}

.search-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.search-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
}

@media (min-width: 992px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-right .btn-primary {
    display: inline-flex;
  }
}

.side-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 24px;
  box-shadow: var(--shadow-xl);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.side-menu.active {
  left: 0;
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.side-logo {
  height: 50px;
}

.close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.close-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.side-menu ul li {
  margin-bottom: 8px;
}

.side-menu ul li a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius);
  transition: var(--transition);
}

.side-menu ul li a:hover,
.side-menu ul li a.active {
  background: var(--gold-muted);
  color: var(--gold-dark);
}

.side-menu-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 100px 24px 24px;
  z-index: 1100;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}

.search-panel.active {
  transform: translateY(0);
}

.search-container {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
}

.search-container input {
  flex: 1;
  padding: 16px 24px;
  font-size: 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  outline: none;
  transition: var(--transition);
}

.search-container input:focus {
  border-color: var(--gold);
}

.search-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--gold-dark);
}

.hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 110px 24px 50px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 50%, var(--dark-700) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/154147/pexels-photo-154147.jpeg') center/cover no-repeat;
  opacity: 0.3;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero > .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1400px;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(217, 160, 76, 0.15);
  border: 1px solid rgba(217, 160, 76, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease-out;
}

.badge-icon {
  color: var(--gold);
  font-size: 14px;
}

.hero-badge span:last-child {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.4s both;
  justify-content: center;
}

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

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-number::after {
  content: '+';
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease-out 0.5s both;
}

.hero-card.featured-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 340px;
  transform: rotate(3deg);
  transition: var(--transition);
}

.hero-card.featured-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-card .card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  z-index: 1;
}

.hero-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hero-card .card-content {
  padding: 20px;
}

.hero-card .card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.hero-card .dancer-name {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.hero-card .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.hero-card .verified {
  color: #10b981;
  font-weight: 600;
}

.hero-card .date {
  color: var(--gray-500);
}

@media (min-width: 992px) {
  .hero {
    padding: 130px 48px 60px;
  }

  .hero > .container {
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
  }

  .hero-visual {
    display: flex;
  }

  .hero-content {
    text-align: center;
    margin-left: 32%;
    max-width: 100%;
  }

  .hero-title {
    margin-bottom: 24px;
  }

  .hero-subtitle {
    margin: 0 0 32px 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-stats {
    justify-content: flex-start;
  }
  
  .stat-item {
    text-align: left;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 110px 20px 50px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card.featured-card {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }
  
  .hero > .container {
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 16px 40px;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .hero-stats {
    gap: 16px;
  }
  
  .stat-divider {
    display: none;
  }
}

.trust-bar {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-text {
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-logo {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  opacity: 0.7;
  transition: var(--transition);
}

.trust-logo:hover {
  opacity: 1;
  color: var(--gray-600);
}

.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gold-muted);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-600);
}

.section-cta {
  text-align: center;
  margin-top: 36px;
}

.section-cta .btn-outline {
  color: var(--gray-800);
  border-color: var(--gray-300);
}

.section-cta .btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.how-it-works {
  background: var(--gray-50);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.process-card {
  position: relative;
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.process-number {
  position: absolute;
  top: -12px;
  right: 24px;
  font-size: 60px;
  font-weight: 700;
  color: var(--gold-muted);
  line-height: 1;
}

.process-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
}

.process-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.process-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.featured-section {
  background: var(--white);
}

.records-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.records-grid .record-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.record-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.record-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.record-image {
  position: relative;
  overflow: hidden;
}

.record-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.record-card.large .record-image img {
  height: 300px;
}

.record-card:hover .record-image img {
  transform: scale(1.08);
}

.record-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
}

.record-content {
  padding: 24px;
}

.record-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.record-card.large .record-content h3 {
  font-size: 22px;
}

.record-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.record-card.large .record-value {
  font-size: 32px;
}

.record-holder,
.record-location {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.record-holder i,
.record-location i {
  color: var(--gold);
  margin-right: 8px;
  width: 16px;
}

.record-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
}

.record-link:hover {
  color: var(--gold);
}

.record-link i {
  transition: transform 0.3s ease;
}

.record-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .records-grid .record-card.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .record-card.large .record-image img {
    height: 200px;
  }
}

.categories-section {
  background: var(--gray-50);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-muted);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: var(--gold);
  color: var(--white);
}

.category-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.category-card p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.category-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(217, 160, 76, 0.1) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.stats-content {
  position: relative;
  z-index: 1;
}

.stats-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.stats-content>p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 500px;
}

.stats-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.highlight-item i {
  color: var(--gold);
  font-size: 20px;
}

.stats-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
}

.stat-value {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-value::after {
  content: '+';
}

.stat-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  margin-bottom: 24px;
}

.quote-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.author-info p {
  font-size: 14px;
  color: var(--gray-600);
}

.news-section {
  background: var(--gray-50);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card.featured-news {
  display: grid;
  grid-template-columns: 1fr;
}

.news-image {
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card.featured-news .news-image img {
  height: 280px;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
}

.news-content {
  padding: 24px;
}

.news-date {
  font-size: 13px;
  color: var(--gray-500);
  display: block;
  margin-bottom: 12px;
}

.news-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card.featured-news .news-content h3 {
  font-size: 22px;
}

.news-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
}

.news-link:hover {
  color: var(--gold);
}

.news-link i {
  transition: transform 0.3s ease;
}

.news-link:hover i {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-card.featured-news {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .news-card.featured-news {
    grid-column: span 1;
    grid-row: span 2;
  }

  .news-card.featured-news .news-image img {
    height: 100%;
    min-height: 300px;
  }
}

.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: pulse 15s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content>p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--gold-dark);
  box-shadow: var(--shadow-lg);
}

.cta-section .btn-primary:hover {
  background: var(--gray-100);
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.cta-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.cta-features i {
  font-size: 18px;
}

.footer {
  background: var(--dark);
  color: var(--white);
}

.footer-main {
  padding: 80px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact ul li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact ul li i {
  color: var(--gold);
  margin-top: 4px;
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

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

@media (min-width: 992px) {
  .footer-brand {
    grid-column: span 2;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.records-section {
  padding: 60px 6%;
  background: var(--gray-50);
}

.filter-container {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--white);
  border: 2px solid var(--gray-200);
  padding: 12px 24px;
  margin: 6px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.records-grid-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .records-grid-page {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .records-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .records-grid-page {
    grid-template-columns: 1fr;
  }
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.card-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 15px;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.more-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.why-section {
  padding: 80px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.why-section h2 {
  font-family: var(--font-display);
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.why-text {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  margin-bottom: 48px;
  color: var(--gray-600);
}

.why-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.why-card {
  background: var(--white);
  padding: 40px 32px;
  width: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.why-card i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--gray-900);
}

.why-card p {
  color: var(--gray-600);
  font-size: 15px;
}

.verify-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background: var(--gray-50);
}

.verify-box {
  background: var(--white);
  width: 100%;
  max-width: 600px;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.input-area {
  display: flex;
  gap: 12px;
}

.input-area input {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  font-size: 16px;
  transition: var(--transition);
}

.input-area input:focus {
  outline: none;
  border-color: var(--gold);
}

.input-area button {
  background: var(--gold);
  border: none;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.input-area button:hover {
  background: var(--gold-dark);
}

.small-note {
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
  color: var(--gray-500);
}

.result-section {
  display: flex;
  justify-content: center;
  padding: 48px 20px;
}

.result-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  box-shadow: var(--shadow-md);
}

.cert-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.verified-status {
  color: #10b981;
  font-weight: 700;
}

.how-section {
  padding: 80px 20px;
  background: var(--white);
}

.how-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gray-900);
}

.steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.step {
  background: var(--gray-50);
  padding: 32px;
  width: 280px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--gray-600);
}

.gallery-section {
  padding: 80px 5%;
  background: var(--gray-50);
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gray-900);
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gray-200);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
}

#closeBtn {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

#closeBtn:hover {
  color: var(--gold);
}

.filter-buttons {
  text-align: center;
  margin: 40px 0;
}

.filter-buttons button {
  padding: 12px 24px;
  border: 2px solid var(--gray-200);
  margin: 6px;
  cursor: pointer;
  border-radius: var(--radius-full);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 24px;
}

.news-container .news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-container .news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.news-container .news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-container .news-card:hover img {
  transform: scale(1.05);
}

.news-container .news-card h3 {
  margin: 20px 24px 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
}

.news-container .news-card p {
  font-size: 15px;
  color: var(--gray-600);
  margin: 0 24px;
  line-height: 1.7;
  flex-grow: 1;
}

.news-container .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 20px 24px 24px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  width: fit-content;
}

.news-container .read-more:hover {
  background: var(--gold-dark);
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .news-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .news-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 550px) {
  .news-container {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  
  .news-container .news-card img {
    height: 200px;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  background: var(--white);
  padding: 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.team-card h4 {
  margin: 12px 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.team-card span {
  font-size: 14px;
  color: var(--gray-500);
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.cards .card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.cards .card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.cards .card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--gray-900);
}

.cards .card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.section-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.section-grid p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
}

@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1508700929628-666bc8bd84ea?w=1200') center/cover no-repeat;
  opacity: 0.25;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 24px;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}