/* ====================================
   CHEVRON CASPIAN - MAIN STYLES (INDEX)
   Prefix: cc- (Chevron Caspian)
   Using root variables from general.css
   ==================================== */

/* ------------------------------------
   RESET & BASE
------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
}
body {
  font-family: var(--font-primary, 'Inter', sans-serif);
  color: var(--dark-color, #1e293b);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white-color, #ffffff);
}

/* ------------------------------------
   LOADER
------------------------------------ */
.cc-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark, #0a1929);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.cc-loader.cc-hidden {
  opacity: 0;
  visibility: hidden;
}

.cc-loader-content {
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 400px;
}

.cc-loader-logo {
  margin-bottom: 30px;
  animation: ccPulse 2s infinite;
}

.cc-loader-logo img {
  max-width: 280px;
  height: auto;
  filter: brightness(0) invert(1);
}

.cc-loader-progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.cc-loader-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--secondary-color, #ffd966);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.cc-loader-text {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

.cc-loader-dots {
  display: inline-block;
  animation: ccDots 1.5s infinite;
  width: 24px;
  text-align: left;
}

.cc-loader-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cc-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: ccParticleFloat 8s infinite;
}

.cc-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.cc-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.cc-particle:nth-child(3) { top: 80%; left: 20%; animation-delay: 2s; }
.cc-particle:nth-child(4) { top: 30%; left: 90%; animation-delay: 3s; }
.cc-particle:nth-child(5) { top: 70%; left: 40%; animation-delay: 4s; }
.cc-particle:nth-child(6) { top: 40%; left: 60%; animation-delay: 5s; }

@keyframes ccPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes ccDots {
  0% { opacity: 0.2; }
  20% { opacity: 1; }
  100% { opacity: 0.2; }
}

@keyframes ccParticleFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-200px) rotate(360deg); opacity: 0; }
}

/* ------------------------------------
   CINEMATIC HERO SLIDER - FIXED TEXT SIZE
------------------------------------ */
.cc-hero-cinema {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background-color: var(--primary-dark, #0a1929);
  z-index: 100;
}

.cc-cinema-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.cc-cinema-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s ease;
  z-index: 1;
}

.cc-cinema-slide.cc-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.cc-slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cc-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 25, 41, 0.7) 0%, rgba(10, 25, 41, 0.3) 50%, rgba(10, 25, 41, 0.1) 100%);
  z-index: 2;
}

.cc-slide-kenburns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cc-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease;
}

.cc-cinema-slide.cc-active .cc-slide-image {
  transform: scale(1.1);
}

.cc-slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 650px;
  color: var(--white-color, #ffffff);
  z-index: 3;
  padding-right: 20px;
  pointer-events: none;
}

.cc-slide-content * {
  pointer-events: auto;
}

.cc-slide-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 217, 102, 0.3);
  color: var(--secondary-color, #ffd966);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.2s;
}

.cc-slide-title {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--white-color, #ffffff);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
}

.cc-slide-description {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 550px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.6s;
}

.cc-slide-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.8s;
}

.cc-cinema-slide.cc-active .cc-slide-badge.cc-reveal,
.cc-cinema-slide.cc-active .cc-slide-title.cc-reveal,
.cc-cinema-slide.cc-active .cc-slide-description.cc-reveal,
.cc-cinema-slide.cc-active .cc-slide-buttons.cc-reveal {
  opacity: 1;
  transform: translateY(0);
}

.cc-btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--transition-fast, 0.3s ease);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
}

.cc-btn-secondary {
  background: var(--secondary-color, #ffd966);
  color: var(--primary-dark, #0a1929);
}

.cc-btn-secondary:hover {
  background: var(--secondary-dark, #ffcd4d);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 217, 102, 0.3);
}

.cc-btn-outline {
  background: transparent;
  color: var(--white-color, #ffffff);
  border-color: var(--white-color, #ffffff);
}

.cc-btn-outline:hover {
  background: var(--white-color, #ffffff);
  color: var(--primary-dark, #0a1929);
  transform: translateY(-2px);
}

.cc-btn-primary {
  background: var(--primary-color, #0a1929);
  color: var(--white-color, #ffffff);
}

.cc-btn-primary:hover {
  background: var(--primary-dark, #1a2b3e);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(10, 25, 41, 0.2);
}

.cc-btn-outline-dark {
  background: transparent;
  color: var(--primary-color, #0a1929);
  border-color: var(--primary-color, #0a1929);
}

.cc-btn-outline-dark:hover {
  background: var(--primary-color, #0a1929);
  color: var(--white-color, #ffffff);
}
/* Movie-style Controls */
/* Movie-style Controls - FIXED POSITION */
.cc-cinema-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  opacity: 1;
  visibility: visible;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 100;
  padding: 0 20px;
  pointer-events: none;
  
  left: 50%;
  pointer-events: auto;
  will-change: transform;
}

.cc-cinema-controls > * {
  pointer-events: auto;
}

.cc-control-btn {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white-color, #ffffff);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast, 0.3s ease);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cc-control-btn:hover {
  background: rgba(255, 217, 102, 0.3);
  border-color: var(--secondary-color, #ffd966);
  transform: scale(1.1);
}

.cc-control-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.cc-timeline-container {
  flex: 1;
  max-width: 400px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}

.cc-timeline-progress {
  height: 100%;
  width: 33.333%;
  background: var(--secondary-color, #ffd966);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.cc-slide-indicators {
  display: flex;
  gap: 8px;
}

.cc-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast, 0.3s ease);
}

.cc-indicator.cc-active {
  background: var(--secondary-color, #ffd966);
  transform: scale(1.3);
  box-shadow: 0 0 15px var(--secondary-color, #ffd966);
}

.cc-play-pause {
  position: relative;
}

/* Tablet */
@media (max-width: 768px) {
  .cc-cinema-controls {
    bottom: 50px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cc-cinema-controls {
    bottom: 60px;
  }
}
/* ------------------------------------
   SECTION STYLES
------------------------------------ */
.cc-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
  background-color: var(--white-color, #ffffff);
}

.cc-first-section {
  margin-top: 0;
  position: relative;
  z-index: 3;
}

.cc-section-light {
  background-color: var(--light-color, #f8fafc);
}

.cc-container {
  max-width: var(--max-width, 1280px);
  margin: 0 auto;
  padding: 0 30px;
}

.cc-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.cc-section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color, #0a1929);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.cc-section-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-color, #ffd966);
}

.cc-section-header p {
  font-size: 1.1rem;
  color: var(--gray-medium, #64748b);
  max-width: 700px;
  margin: 0 auto;
}

/* ------------------------------------
   CONTENT BLOCK
------------------------------------ */
.cc-content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cc-content-block.cc-reverse {
  direction: rtl;
}

.cc-content-block.cc-reverse .cc-content-text {
  direction: ltr;
}

.cc-content-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-medium, 0 20px 40px rgba(0, 0, 0, 0.1));
}

.cc-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.cc-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium, 0.6s ease);
}

.cc-img-placeholder:hover img {
  transform: scale(1.05);
}

.cc-content-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color, #0a1929);
  margin-bottom: 20px;
  line-height: 1.3;
}

.cc-content-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-dark, #334155);
  margin-bottom: 15px;
}

.cc-content-text p {
  margin-bottom: 20px;
  color: var(--gray-dark, #475569);
}

.cc-content-text ul {
  margin-bottom: 30px;
  list-style: none;
}

.cc-content-text ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.cc-content-text ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--secondary-color, #ffd966);
  border-radius: 50%;
}

/* ------------------------------------
   GRID SYSTEMS
------------------------------------ */
.cc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.cc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ------------------------------------
   ICON CARDS
------------------------------------ */
.cc-icon-card {
  background: var(--white-color, #ffffff);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-light, 0 10px 30px rgba(0, 0, 0, 0.05));
  transition: all var(--transition-fast, 0.3s ease);
  text-align: center;
}

.cc-icon-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium, 0 20px 40px rgba(0, 0, 0, 0.1));
}

.cc-icon {
  width: 70px;
  height: 70px;
  background: var(--light-color, #f1f5f9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-color, #0a1929);
  transition: all var(--transition-fast, 0.3s ease);
}

.cc-icon-card:hover .cc-icon {
  background: var(--secondary-color, #ffd966);
  color: var(--primary-color, #0a1929);
}

.cc-icon-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color, #0a1929);
}

.cc-icon-card p {
  color: var(--gray-medium, #64748b);
  line-height: 1.6;
}

/* ------------------------------------
   STATS SECTION - ADDED MORE CONTENT
------------------------------------ */
.cc-stats-section {
  background: linear-gradient(135deg, var(--primary-dark, #0a1929) 0%, var(--primary-color, #1a2b3e) 100%);
  padding: 80px 0;
  color: var(--white-color, #ffffff);
}

.cc-stat-item {
  text-align: center;
}

.cc-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--secondary-color, #ffd966);
}

.cc-stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

/* ------------------------------------
   FEATURE LIST
------------------------------------ */
.cc-feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cc-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.cc-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--secondary-color, #ffd966);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color, #0a1929);
}

.cc-feature-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color, #0a1929);
}

.cc-feature-content p {
  color: var(--gray-medium, #64748b);
  line-height: 1.6;
}

/* ------------------------------------
   ENHANCED NEWS SLIDESHOW WITH IMAGES
------------------------------------ */
.cc-news-section-enhanced {
  background: var(--white-color, #ffffff);
  overflow: hidden;
  padding: 100px 0;
}

.cc-news-carousel-enhanced {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
}

.cc-news-track-enhanced {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
}

.cc-news-slide-enhanced {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 300px;
}

.cc-news-card-enhanced {
  background: var(--white-color, #ffffff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light, 0 10px 30px rgba(0, 0, 0, 0.08));
  transition: all var(--transition-medium, 0.4s ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #eef2f6;
}

.cc-news-card-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy, 0 25px 50px rgba(0, 0, 0, 0.15));
}

.cc-news-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.cc-news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium, 0.6s ease);
}

.cc-news-card-enhanced:hover .cc-news-image {
  transform: scale(1.1);
}

.cc-news-badge-enhanced {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color, #ffd966);
  color: var(--primary-dark, #0a1929);
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.cc-news-content-enhanced {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cc-news-date-enhanced {
  color: var(--secondary-color, #ffd966);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cc-news-content-enhanced h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color, #0a1929);
  line-height: 1.4;
}

.cc-news-excerpt {
  color: var(--gray-medium, #64748b);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.cc-news-link-enhanced {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color, #0a1929);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  transition: all var(--transition-fast, 0.3s ease);
  align-self: flex-start;
}

.cc-news-link-enhanced svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform var(--transition-fast, 0.3s ease);
}

.cc-news-link-enhanced:hover {
  color: var(--secondary-color, #ffd966);
}

.cc-news-link-enhanced:hover svg {
  transform: translateX(5px);
}

.cc-news-controls-enhanced {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.cc-news-btn-enhanced {
  background: var(--white-color, #ffffff);
  border: 1px solid var(--gray-light, #e2e8f0);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast, 0.3s ease);
  color: var(--primary-color, #0a1929);
}

.cc-news-btn-enhanced:hover {
  background: var(--secondary-color, #ffd966);
  border-color: var(--secondary-color, #ffd966);
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 217, 102, 0.3);
}

.cc-news-btn-enhanced svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.cc-news-dots-enhanced {
  display: flex;
  gap: 12px;
}

.cc-news-dot-enhanced {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-light, #cbd5e1);
  cursor: pointer;
  transition: all var(--transition-fast, 0.3s ease);
}

.cc-news-dot-enhanced.cc-active {
  background: var(--secondary-color, #ffd966);
  transform: scale(1.3);
  box-shadow: 0 0 15px var(--secondary-color, #ffd966);
}

/* ------------------------------------
   NEWS MODAL - FIXED SCROLLING
------------------------------------ */
.cc-news-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cc-news-modal.show {
  display: flex;
}

.cc-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.cc-modal-container {
  position: relative;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  z-index: 10001;
  animation: modalSlideUp 0.4s ease;
  overflow-y: auto;
  border-radius: 16px;
}

.cc-modal-content {
  background: var(--white-color, #ffffff);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy, 0 30px 60px rgba(0, 0, 0, 0.3));
}

.cc-modal-header {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.cc-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-modal-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-color, #ffd966);
  color: var(--primary-dark, #0a1929);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cc-modal-body {
  padding: 40px;
  max-height: calc(90vh - 300px);
  overflow-y: auto;
}

.cc-modal-date {
  color: var(--secondary-color, #ffd966);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cc-modal-body h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color, #0a1929);
  margin-bottom: 25px;
  line-height: 1.3;
}

.cc-modal-text {
  color: var(--gray-dark, #475569);
  font-size: 1.1rem;
  line-height: 1.8;
}

.cc-modal-text p {
  margin-bottom: 20px;
}

.cc-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white-color, #ffffff);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast, 0.3s ease);
  z-index: 10002;
}

.cc-modal-close:hover {
  background: var(--secondary-color, #ffd966);
  color: var(--primary-dark, #0a1929);
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------
   FIGURES SECTION - ADDED MORE CONTENT
------------------------------------ */
.cc-figures-section {
  background: var(--light-color, #f8fafc);
  padding: 100px 0;
}

.cc-figures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.cc-figure-item {
  text-align: center;
  padding: 35px 25px;
  background: var(--white-color, #ffffff);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-fast, 0.3s ease);
  border: 1px solid #eef2f6;
}

.cc-figure-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium, 0 15px 30px rgba(0, 0, 0, 0.1));
}

.cc-figure-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color, #0a1929);
  margin-bottom: 10px;
}

.cc-figure-label {
  color: var(--gray-medium, #64748b);
  font-size: 0.95rem;
}

/* Additional Figures Content */
.cc-figures-description {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--gray-dark, #475569);
  font-size: 1.1rem;
  line-height: 1.7;
}

.cc-figures-note {
  background: linear-gradient(135deg, var(--primary-dark, #0a1929) 0%, var(--primary-color, #1a2b3e) 100%);
  color: var(--white-color, #ffffff);
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
}

.cc-figures-note p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.cc-figures-note strong {
  color: var(--secondary-color, #ffd966);
}

/* ------------------------------------
   CTA SECTION
------------------------------------ */
.cc-cta-section {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white-color, #ffffff);
  position: relative;
}

.cc-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 41, 0.7);
  z-index: 1;
}

.cc-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cc-cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white-color, #ffffff);
}

.cc-cta-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 35px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.cc-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ------------------------------------
   ANIMATIONS & UTILITIES
------------------------------------ */
.cc-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cc-fade.cc-visible {
  opacity: 1;
  transform: translateY(0);
}

.cc-fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cc-fade-left.cc-visible {
  opacity: 1;
  transform: translateX(0);
}

.cc-fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cc-fade-right.cc-visible {
  opacity: 1;
  transform: translateX(0);
}

.cc-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cc-scale.cc-visible {
  opacity: 1;
  transform: scale(1);
}

.cc-text-center {
  text-align: center;
}

.cc-mt-40 {
  margin-top: 40px;
}

/* ------------------------------------
   RESPONSIVE DESIGN - COMPREHENSIVE
------------------------------------ */
/* Large Desktop */
@media (max-width: 1440px) {
  .cc-slide-content {
    max-width: 600px;
  }
  
  .cc-slide-title {
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .cc-slide-content {
    max-width: 550px;
    left: 8%;
  }
  
  .cc-slide-title {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
  }
  
  .cc-section {
    padding: 80px 0;
  }
  
  .cc-section-header h2 {
    font-size: 2.2rem;
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .cc-slide-content {
    left: 6%;
    max-width: 500px;
  }
  
  .cc-slide-title {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
  }
  
  .cc-slide-description {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
  }
  
  .cc-grid-3,
  .cc-grid-4,
  .cc-figures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .cc-content-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cc-content-block.cc-reverse {
    direction: ltr;
  }
  
  .cc-news-slide-enhanced {
    flex: 0 0 calc(50% - 10px);
  }
  
  .cc-cinema-controls {
    bottom: 20px;
    gap: 15px;
  }
  
  .cc-timeline-container {
    max-width: 300px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .cc-section {
    padding: 60px 0;
  }
  
  .cc-first-section {
    padding-top: 60px;
  }
  
  .cc-slide-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
    text-align: center;
    padding: 0 20px;
  }
  
  .cc-slide-buttons {
    justify-content: center;
  }
  
  .cc-slide-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  
  .cc-slide-description {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cc-slide-buttons {
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .cc-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  .cc-cinema-controls {
    bottom: 80px;
    gap: 10px;
    padding: 0 10px;
    flex-wrap: wrap;
  }
  
  .cc-control-btn {
    width: 40px;
    height: 40px;
  }
  
  .cc-timeline-container {
    max-width: 150px;
  }
  
  .cc-grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cc-figures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .cc-figure-item {
    padding: 25px 15px;
  }
  
  .cc-figure-value {
    font-size: 2rem;
  }
  
  .cc-cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cc-news-slide-enhanced {
    flex: 0 0 100%;
  }
  
  .cc-modal-header {
    height: 200px;
  }
  
  .cc-modal-body {
    padding: 25px;
  }
  
  .cc-modal-body h2 {
    font-size: 1.5rem;
  }
  
  .cc-section-header h2 {
    font-size: 2rem;
  }
  
  .cc-section-header h2:after {
    width: 50px;
  }
  
  .cc-stat-number {
    font-size: 2.5rem;
  }
  
  .cc-stat-label {
    font-size: 1rem;
  }
  
  .cc-icon-card {
    padding: 30px 20px;
  }
  
  .cc-icon-card h4 {
    font-size: 1.2rem;
  }
  
  .cc-content-text h2 {
    font-size: 2rem;
  }
}

/* Mobile Landscape */
@media (max-width: 640px) {
  .cc-grid-3,
  .cc-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .cc-figures-grid {
    grid-template-columns: 1fr;
  }
  
  .cc-container {
    padding: 0 20px;
  }
  
  .cc-section-header {
    margin-bottom: 40px;
  }
  
  .cc-section-header h2 {
    font-size: 1.8rem;
  }
  
  .cc-section-header p {
    font-size: 1rem;
  }
  
  .cc-content-text h2 {
    font-size: 1.8rem;
  }
  
  .cc-content-text h3 {
    font-size: 1.3rem;
  }
  
  .cc-img-placeholder {
    min-height: 300px;
  }
  
  .cc-news-content-enhanced {
    padding: 20px;
  }
  
  .cc-news-content-enhanced h3 {
    font-size: 1.2rem;
  }
  
  .cc-cta-section {
    padding: 80px 0;
  }
  
  .cc-cta-content p {
    font-size: 1rem;
  }
  
  .cc-cta-buttons {
    gap: 15px;
  }
  
  .cc-cinema-controls {
    bottom: 70px;
  }
  
  .cc-control-btn {
    width: 36px;
    height: 36px;
  }
  
  .cc-control-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .cc-timeline-container {
    max-width: 120px;
  }
  
  .cc-slide-indicators {
    gap: 5px;
  }
  
  .cc-indicator {
    width: 8px;
    height: 8px;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .cc-hero-cinema {
    min-height: 600px;
  }
  
  .cc-slide-content {
    top: 55%;
  }
  
  .cc-slide-title {
    font-size: 1.5rem;
  }
  
  .cc-slide-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .cc-btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  
  .cc-cinema-controls {
    bottom: 60px;
  }
  
  .cc-control-btn {
    width: 32px;
    height: 32px;
  }
  
  .cc-control-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .cc-timeline-container {
    max-width: 80px;
  }
  
  .cc-stat-number {
    font-size: 2.2rem;
  }
  
  .cc-stat-label {
    font-size: 0.9rem;
  }
  
  .cc-figure-value {
    font-size: 1.8rem;
  }
  
  .cc-figure-label {
    font-size: 0.85rem;
  }
  
  .cc-news-controls-enhanced {
    gap: 15px;
  }
  
  .cc-news-btn-enhanced {
    width: 40px;
    height: 40px;
  }
  
  .cc-news-dot-enhanced {
    width: 10px;
    height: 10px;
  }
  
  .cc-modal-body {
    padding: 20px;
  }
  
  .cc-modal-body h2 {
    font-size: 1.3rem;
  }
  
  .cc-modal-text {
    font-size: 0.95rem;
  }
  
  .cc-section {
    padding: 50px 0;
  }
  
  .cc-first-section {
    padding-top: 50px;
  }
  
  .cc-section-header h2 {
    font-size: 1.6rem;
  }
  
  .cc-content-text h2 {
    font-size: 1.6rem;
  }
  
  .cc-content-text h3 {
    font-size: 1.2rem;
  }
  
  .cc-content-text p {
    font-size: 0.95rem;
  }
  
  .cc-icon-card {
    padding: 25px 15px;
  }
  
  .cc-icon-card h4 {
    font-size: 1.1rem;
  }
  
  .cc-icon-card p {
    font-size: 0.9rem;
  }
  
  .cc-feature-item {
    gap: 15px;
  }
  
  .cc-feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .cc-feature-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .cc-feature-content h4 {
    font-size: 1.1rem;
  }
  
  .cc-feature-content p {
    font-size: 0.9rem;
  }
  
  .cc-news-image-wrapper {
    height: 180px;
  }
  
  .cc-news-badge-enhanced {
    font-size: 10px;
    padding: 4px 10px;
  }
  
  .cc-news-date-enhanced {
    font-size: 11px;
  }
  
  .cc-news-content-enhanced h3 {
    font-size: 1.1rem;
  }
  
  .cc-news-excerpt {
    font-size: 0.85rem;
  }
  
  .cc-news-link-enhanced {
    font-size: 0.85rem;
  }
  
  .cc-news-link-enhanced svg {
    width: 14px;
    height: 14px;
  }
}

/* Small Mobile */
@media (max-width: 360px) {
  .cc-slide-title {
    font-size: 1.3rem;
  }
  
  .cc-slide-description {
    font-size: 0.85rem;
  }
  
  .cc-btn {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
  
  
  .cc-control-btn {
    width: 28px;
    height: 28px;
  }
  
  .cc-control-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .cc-timeline-container {
    max-width: 60px;
  }
  
  .cc-indicator {
    width: 6px;
    height: 6px;
  }
  
  .cc-section-header h2 {
    font-size: 1.4rem;
  }
  
  .cc-content-text h2 {
    font-size: 1.4rem;
  }
  
  .cc-stat-number {
    font-size: 2rem;
  }
  
  .cc-stat-label {
    font-size: 0.8rem;
  }
  
  .cc-figure-value {
    font-size: 1.6rem;
  }
  
  .cc-figure-label {
    font-size: 0.8rem;
  }
  
  .cc-news-content-enhanced h3 {
    font-size: 1rem;
  }
}

