/* ============================================
   ROOT COLORS & VARIABLES - GOLD & BLACK THEME
   ============================================ */
:root {
  --primary: #FFD700;         /* Gold */
  --primary-dark: #B8860B;    /* Dark Goldenrod */
  --primary-light: #FFF8DC;   /* Cream */
  --secondary: #000000;       /* Black */
  --accent: #FFD700;          /* Gold */
  --success: #FFD700;         /* Gold */
  
  --light-bg: #1a1a1a;        /* Dark Gray */
  --bg: #000000;              /* Black Background */
  --card-bg: #111111;         /* Dark Card */
  --surface: #222222;         /* Dark Surface */
  
  --text-primary: #FFD700;    /* Gold Text */
  --text-secondary: #CCCCCC;  /* Light Gray */
  --text-muted: #888888;      /* Muted Gray */
  
  --border-color: #333333;
  --shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(255, 215, 0, 0.2);
  --transition: all 0.3s ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.88)), url("assets/back.jpg") center/cover fixed no-repeat;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1em; color: var(--text-secondary); }

a {
  text-decoration: none;
  color: var(--primary-light);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  background: url("assets/head.jpg") center/cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  max-height: 5.5rem !important;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  margin-left: 1rem;
  cursor: pointer;
  outline: none;
}

.nav-toggle .hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  position: relative;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  left: 0;
  transition: transform 0.3s ease;
}

.nav-toggle .hamburger::before {
  top: -7px;
}

.nav-toggle .hamburger::after {
  top: 7px;
}

body.nav-open .nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  gap: 1.5rem;
}

body.nav-open .nav a {
  font-size: 1.2rem;
}

body.nav-open .nav a.cta {
  padding: 0.75rem 1.5rem;
}

body.nav-open .hamburger {
  transform: rotate(45deg);
}

body.nav-open .hamburger::before {
  transform: rotate(90deg) translateX(-7px);
}

body.nav-open .hamburger::after {
  transform: rotate(90deg) translateX(7px);
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--primary);
}

.nav a:hover::after {
  width: 100%;
}

.nav a.cta {
  background: var(--primary);
  color: var(--secondary);
  padding: 0.625rem 1.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.nav a.cta:hover {
  background: var(--primary-dark);
  color: var(--secondary);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: 1.25;
  animation: fadeInUp 1s ease-out;
}

.lead {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}
/* broken CSS removed */

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.3px;
  font-size: 0.95rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn.primary {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.btn.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

.btn.primary:hover {
  background: var(--primary-dark);
}

.btn:not(.primary) {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: var(--secondary);
}

.btn:not(.primary):hover {
  background: var(--surface);
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

/* ============================================
   HERO VISUAL & CARDS
   ============================================ */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}

.hero-image:hover {
  transform: scale(1.05);
}

.welcome-visual {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  box-shadow: var(--shadow-lg);
}

.welcome-visual-top {
  max-width: 460px;
}

.welcome-pill {
  display: inline-block;
  background: rgba(255, 215, 0, 0.18);
  color: var(--primary);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 1.25rem;
}

.welcome-visual h2 {
  font-size: 2.1rem;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1rem;
}

.welcome-visual p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
}

.welcome-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.stat-card span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.welcome-message {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2.5rem;
}

.welcome-message h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.welcome-message p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.quick-link-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
}

.quick-link-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.quick-link-card h3 {
  color: var(--primary);
  margin: 1rem 0;
}

.quick-link-card p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.link-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.12);
  color: var(--primary);
  font-size: 1.4rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--surface);
}

.section h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
  font-size: 2.5rem;
  color: var(--primary);
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  animation: fadeInUp 1s ease-out both;
  animation-delay: calc(var(--index, 0) * 0.2s);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.02);
}

.service-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-features h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  text-align: left;
}

.service-features ul {
  list-style: none;
  text-align: left;
}

.service-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--surface);
}

.service-features li:last-child {
  border-bottom: none;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  padding: 2rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-item h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.feature-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 12px;
  margin: 4rem 0;
  box-shadow: var(--shadow-lg);
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-section .btn.primary {
  background: white;
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}

.cta-section .btn.primary:hover {
  background: var(--light-bg);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--secondary);
  color: var(--primary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-secondary);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: 2.75rem;
  margin-bottom: 1rem;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

/* ============================================
   TWO COLUMN SECTION
   ============================================ */
.two-column-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-column h2 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.content-column p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.visual-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  border-radius: 12px;
  padding: 4rem 3rem;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 350px;
}

.image-placeholder span {
  display: block;
  color: white;
}

.image-placeholder p {
  color: white;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ============================================
   MISSION GRID
   ============================================ */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mission-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.mission-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mission-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mission-card h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.mission-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.values-list {
  list-style: none;
  text-align: left;
  margin-top: 1rem;
}

.values-list li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--surface);
  font-size: 0.95rem;
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list strong {
  color: var(--primary-dark);
}

/* ============================================
   FORM STYLES
   ============================================ */
.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(0, 180, 216, 0.05));
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* ============================================
   SERVICES LIST
   ============================================ */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
  animation: fadeInUp 1s ease-out both;
  animation-delay: calc(var(--index, 0) * 0.2s);
}

.service-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   AWARD SECTION
   ============================================ */
.award-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--card-bg);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 1s ease-out;
}

.award-icon {
  font-size: 4rem;
  color: var(--primary);
  animation: bounce 2s infinite;
}

.award-text {
  text-align: center;
}

.award-text h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.award-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-style: italic;
}

/* ============================================
   CORE VALUES SECTION
   ============================================ */
.core-values-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--card-bg);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 1s ease-out;
}

.value-icon {
  font-size: 4rem;
  color: var(--primary);
  animation: scale 2s ease-in-out infinite;
}

.value-text {
  text-align: center;
}

.value-text h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.value-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
}

/* ============================================
   WELCOME PAGE STYLES
   ============================================ */
.welcome-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.welcome-message {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.welcome-message h2 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.welcome-message p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.quick-link-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  animation: fadeInUp 1s ease-out both;
  animation-delay: calc(var(--index, 0) * 0.2s);
}

.quick-link-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.link-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
  animation: bounce 2s infinite;
}

.quick-link-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.quick-link-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ============================================
   TICKET BOOKING PAGE STYLES
   ============================================ */
.booking-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.booking-section {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.booking-section h2 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.event-selection {
  display: grid;
  gap: 1rem;
}

.event-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  animation: fadeInUp 1s ease-out both;
  animation-delay: calc(var(--index, 0) * 0.1s);
}

.event-card:hover,
.event-card.selected {
  border-color: var(--primary);
  background: var(--surface);
}

.event-image {
  font-size: 2rem;
  min-width: 60px;
  text-align: center;
}

.event-details h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.event-details p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.ticket-selection {
  display: grid;
  gap: 1.5rem;
}

.ticket-type {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  transition: var(--transition);
}

.ticket-type:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.ticket-header h4 {
  color: var(--primary);
  margin: 0;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.qty-btn {
  background: var(--primary);
  color: var(--secondary);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.qty-input {
  width: 60px;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text-primary);
}

.order-summary {
  background: var(--surface);
  border-radius: 8px;
  padding: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
  border-bottom: none;
  border-top: 2px solid var(--primary);
  padding-top: 0.5rem;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--primary);
}

.booking-form,
.payment-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: auto;
}

.checkbox-label a {
  color: var(--primary);
}

.payment-notice {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.payment-notice p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.full-width {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: var(--card-bg);
  margin: 10% auto;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  color: var(--primary);
  margin: 0;
}

.modal-close {
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary);
}

.modal-body {
  padding: 1.5rem;
}

.booking-details {
  background: var(--surface);
  border-radius: 6px;
  padding: 1rem;
  margin: 1rem 0;
}

.booking-details h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.booking-details p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.modal-footer {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
  }
  
  .actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  
  .hero {
    padding: 40px 0;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .hero-card {
    padding: 2rem 1rem;
  }
  
  .hero-icon {
    font-size: 2.5rem;
  }
}

/* ============================================
   PAGE HEADER STYLES
   ============================================ */
.page-header {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 180, 216, 0.05));
  padding: 5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  margin-bottom: 1rem;
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.two-column-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-column {
  line-height: 1.8;
}

.content-column p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.visual-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 180, 216, 0.05));
  border: 2px solid var(--border-color);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.image-placeholder:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.image-placeholder p {
  color: var(--primary);
  font-weight: 600;
  margin: 0;
}

/* ============================================
   MISSION & VALUES
   ============================================ */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mission-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
}

.mission-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
  transform: translateY(-5px);
}

.mission-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mission-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.mission-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.values-list {
  list-style: none;
  margin-top: 1rem;
}

.values-list li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
}

.team-avatar {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.team-member h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.team-member p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ============================================
   CONTACT STYLES
   ============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.contact-form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
}

.contact-form-wrapper h2 {
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input {
  width: auto !important;
  margin: 0;
}

.contact-form-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff6b35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-wrapper h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.info-block {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(0, 180, 216, 0.05));
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}

.info-block.highlight {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
}

.info-block h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.info-block p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.info-block a {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ============================================
   PRICING STYLES
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
  transform: scale(1.05);
}

.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.pricing-card h3 {
  color: var(--text-primary);
  margin-top: 1rem;
}

.price {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
  margin: 1rem 0 0.5rem;
}

.pricing-card p {
  color: var(--text-secondary);
}

.pricing-card ul {
  text-align: left;
  list-style: none;
  margin: 1.5rem 0;
  color: var(--text-secondary);
}

.pricing-card ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* ============================================
   EVENTS STYLES
   ============================================ */
.featured-event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 180, 216, 0.05));
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 4rem;
}

.featured-event-content {
  position: relative;
}

.event-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.event-date {
  color: var(--accent);
  font-weight: 600;
  margin: 1rem 0;
}

.event-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 1.5rem 0;
}

.event-highlights {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.highlight-icon {
  font-size: 1.5rem;
}

.featured-event-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.event-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(0, 180, 216, 0.1));
  border: 2px solid var(--border-color);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  transition: var(--transition);
}

.event-placeholder:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.events-hero {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.events-hero-img {
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.event-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
  transform: translateY(-5px);
}

.event-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.event-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(0, 180, 216, 0.1));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  transition: var(--transition);
}

.event-card:hover .event-image-placeholder {
  transform: scale(1.1);
}

.event-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.event-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.event-meta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.event-card .btn {
  margin-top: 1rem;
}

/* ============================================
   FAQ GRID
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.1);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-box {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(0, 180, 216, 0.1));
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.newsletter-form button {
  white-space: nowrap;
}

/* ============================================
   GLOBAL TALENT VISA - MOTION GRAPHICS
   ============================================ */

/* GTV Featured Event Styling */
.gtv-featured {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.gtv-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* GTV Image with floating animation */
.gtv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  animation: gtvImageFloat 6s ease-in-out infinite, gtvImageGlow 4s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
}

@keyframes gtvImageFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes gtvImageGlow {
  0%, 100% {
    filter: drop-shadow(0 20px 60px rgba(168, 85, 247, 0.3));
  }
  50% {
    filter: drop-shadow(0 30px 80px rgba(236, 72, 153, 0.5));
  }
}

/* GTV Title Animation */
.gtv-title {
  font-size: 2.5rem;
  margin: 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
}

.gtv-word {
  display: inline-block;
  margin-right: 0.5rem;
  animation: gtvWordSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}

.gtv-word:nth-child(1) { animation-delay: 0s; }
.gtv-word:nth-child(2) { animation-delay: 0.15s; }
.gtv-word:nth-child(3) { animation-delay: 0.3s; }
.gtv-word:nth-child(4) { animation-delay: 0.45s; }
.gtv-word:nth-child(5) { animation-delay: 0.6s; }

.highlight-word {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: gtvPulse 2s ease-in-out infinite;
}

.gtv-word:nth-child(2),
.gtv-word:nth-child(3),
.gtv-word:nth-child(4) {
  animation: gtvWordSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, gtvHighlightGlow 2s ease-in-out infinite;
}

.gtv-word:nth-child(2) { animation-delay: 0.15s, 0s; }
.gtv-word:nth-child(3) { animation-delay: 0.3s, 0s; }
.gtv-word:nth-child(4) { animation-delay: 0.45s, 0s; }

@keyframes gtvWordSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gtvPulse {
  0%, 100% {
    filter: drop-shadow(0 0 0px rgba(168, 85, 247, 0));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
  }
}

@keyframes gtvHighlightGlow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(168, 85, 247, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.8), 0 0 35px rgba(236, 72, 153, 0.6);
  }
}

/* GTV Badge Animation */
.gtv-badge {
  animation: gtvBadgePulse 2s ease-in-out infinite;
}

@keyframes gtvBadgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(168, 85, 247, 0);
  }
}

/* GTV Highlights Animation */
.gtv-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.gtv-highlight {
  animation: gtvHighlightBounce 2s ease-in-out infinite;
  animation-delay: calc(var(--index, 0) * 0.2s);
}

.gtv-highlight:nth-child(1) { --index: 0; }
.gtv-highlight:nth-child(2) { --index: 1; }
.gtv-highlight:nth-child(3) { --index: 2; }
.gtv-highlight:nth-child(4) { --index: 3; }

@keyframes gtvHighlightBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* GTV Benefits Section */
.gtv-benefits {
  background: rgba(168, 85, 247, 0.08);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  animation: gtvBenefitsSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
  opacity: 0;
}

@keyframes gtvBenefitsSlide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gtv-benefits h4 {
  color: var(--primary-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.gtv-benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gtv-benefits-list li {
  padding-left: 0;
  animation: gtvListItemFade 0.6s ease-out forwards;
  opacity: 0;
}

.gtv-benefits-list li:nth-child(1) { animation-delay: 0.6s; }
.gtv-benefits-list li:nth-child(2) { animation-delay: 0.7s; }
.gtv-benefits-list li:nth-child(3) { animation-delay: 0.8s; }
.gtv-benefits-list li:nth-child(4) { animation-delay: 0.9s; }

@keyframes gtvListItemFade {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* GTV Contact Section */
.gtv-contact {
  background: linear-gradient(135deg, rgba(6, 182, 216, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
  border: 1px solid rgba(6, 182, 216, 0.3);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  animation: gtvContactSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
  opacity: 0;
}

@keyframes gtvContactSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gtv-contact h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.gtv-contact p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.gtv-contact-info {
  color: var(--accent);
  font-weight: 600;
  animation: gtvContactPulse 2s ease-in-out infinite;
}

@keyframes gtvContactPulse {
  0%, 100% {
    color: var(--accent);
  }
  50% {
    color: var(--primary-light);
  }
}

.gtv-phones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.gtv-phones span {
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: 4px;
  background: rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
  animation: gtvPhonesPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
}

.gtv-phones span:nth-child(1) { animation-delay: 0.9s; }
.gtv-phones span:nth-child(2) { animation-delay: 1s; }
.gtv-phones span:nth-child(3) { animation-delay: 1.1s; }
.gtv-phones span:nth-child(4) { animation-delay: 1.2s; }

@keyframes gtvPhonesPop {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gtv-phones span:hover {
  background: rgba(168, 85, 247, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
}

/* GTV Button Animation */
.gtv-btn {
  animation: gtvButtonPulse 2s ease-in-out infinite 1.3s;
}

@keyframes gtvButtonPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(168, 85, 247, 0);
  }
}

/* GTV Content Layout */
.gtv-content {
  animation: gtvContentFadeIn 0.8s ease-out forwards;
  opacity: 0;
}

@keyframes gtvContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE - TWO COLUMN
   ============================================ */
@media (max-width: 768px) {
  .two-column-section {
    grid-template-columns: 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .featured-event {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .gtv-featured {
    padding: 2rem;
  }

  .gtv-title {
    font-size: 1.8rem;
  }

  .gtv-highlights {
    grid-template-columns: 1fr;
  }

  .gtv-phones {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    min-width: 100%;
  }

  .award-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .award-icon {
    font-size: 3rem;
  }

  .award-text h3 {
    font-size: 1.25rem;
  }

  .core-values-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .value-icon {
    font-size: 3rem;
  }

  .value-text h3 {
    font-size: 1.25rem;
  }

  .welcome-visual span {
    font-size: 4rem !important;
  }

  .welcome-message p {
    font-size: 1rem;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .quick-link-card {
    padding: 1.5rem;
  }

  .link-icon {
    font-size: 2.5rem;
  }

  .booking-section {
    padding: 1.5rem;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .event-image {
    font-size: 1.5rem;
    min-width: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-content {
    margin: 20% auto;
    width: 95%;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
  }
}


