/* Country Page Styles - Modern & Dynamic */

:root {
  --primary-color: #0D253F;
  --secondary-color: #CC3333;
  --accent-color: #E55A5A;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #F7F9FC;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Positioning for Country Pages */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 37, 63, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Hero Section */
.country-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.country-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.95), rgba(204, 51, 51, 0.85));
  animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

.country-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-badge .flag-icon {
  font-size: 1.5rem;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #CC3333, #E55A5A);
  color: white;
  box-shadow: 0 8px 24px rgba(204, 51, 51, 0.4);
}

.hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(204, 51, 51, 0.5);
}

.hero-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Main Content */
.country-content {
  background: var(--white);
  position: relative;
  z-index: 3;
}

.content-section {
  padding: 6rem 0;
  position: relative;
}

.content-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.content-section:last-child::after {
  display: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border-radius: 2px;
}

.section-title.centered {
  display: block;
  text-align: center;
}

.section-title.centered::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Section Grid */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-grid.reverse {
  direction: rtl;
}

.section-grid.reverse > * {
  direction: ltr;
}

.text-content {
  animation: fadeInLeft 0.8s ease-out;
}

.image-content {
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Feature List */
.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: var(--transition);
}

.feature-item:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateX(10px);
}

.feature-item i {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.feature-item span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Image Card */
.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.image-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay,
.image-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.9), rgba(204, 51, 51, 0.9));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.image-overlay {
  bottom: 1.5rem;
  left: 1.5rem;
}

.image-badge {
  top: 1.5rem;
  right: 1.5rem;
}

/* Services Grid */
.services-section {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Modern Video Section */
.video-section-modern {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.video-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(204, 51, 51, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(13, 37, 63, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.video-section-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.video-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #CC3333, #E55A5A);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(204, 51, 51, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

.video-badge i {
  font-size: 1.125rem;
}

.video-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.video-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.video-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.video-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  background: #000;
}

.video-frame:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.25);
}

.video-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(204, 51, 51, 0.1), rgba(13, 37, 63, 0.1));
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}

.video-frame:hover::before {
  opacity: 1;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: var(--transition);
  z-index: 2;
  pointer-events: none;
}

.video-frame:hover .video-play-overlay {
  opacity: 0;
}

.modern-video-player::-webkit-media-controls-play-button ~ .video-play-overlay,
.modern-video-player[playing] ~ .video-play-overlay {
  opacity: 0;
}

.play-button-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #CC3333, #E55A5A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 15px 50px rgba(204, 51, 51, 0.5);
  transition: var(--transition);
  animation: pulsePlay 2s ease-in-out infinite;
  pointer-events: all;
}

@keyframes pulsePlay {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 15px 50px rgba(204, 51, 51, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(204, 51, 51, 0.7);
  }
}

.play-button-large:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, #E55A5A, #CC3333);
}

.play-button-large i {
  margin-left: 5px;
}

.modern-video-player {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 30px;
}

.video-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(204, 51, 51, 0.2);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(204, 51, 51, 0.1), rgba(229, 90, 90, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.5rem;
  transition: var(--transition);
}

.highlight-item:hover .highlight-icon {
  background: linear-gradient(135deg, #CC3333, #E55A5A);
  color: white;
  transform: rotate(10deg) scale(1.1);
}

.highlight-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 0.375rem 0;
}

.highlight-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: linear-gradient(135deg, #ffffff, var(--bg-light));
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(204, 51, 51, 0.1), transparent);
  transform: rotate(45deg);
  transition: var(--transition);
}

.stat-card:hover::before {
  animation: shine 1.5s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

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

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--text-light);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(204, 51, 51, 0.1), rgba(229, 90, 90, 0.1));
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  align-items: start;
}

.highlight-box i {
  color: var(--secondary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.highlight-box p {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 300px;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 37, 63, 0.9), rgba(204, 51, 51, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 3rem;
}

/* Modern CTA Section */
.cta-section-modern {
  background: linear-gradient(135deg, #0D253F 0%, #1a4d8f 100%);
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 2;
}

.cta-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(204, 51, 51, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(229, 90, 90, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.cta-content-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.cta-content-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-icon-badge {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #CC3333, #E55A5A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  box-shadow: 0 15px 40px rgba(204, 51, 51, 0.4);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(204, 51, 51, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(204, 51, 51, 0.6);
  }
}

.cta-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: var(--transition);
}

.cta-feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.cta-feature-item i {
  color: #4ade80;
  font-size: 1.25rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  padding: 1.125rem 2.5rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary {
  background: linear-gradient(135deg, #CC3333, #E55A5A);
  color: white;
}

.cta-btn-primary:hover {
  background: linear-gradient(135deg, #E55A5A, #CC3333);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(204, 51, 51, 0.4);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-grid.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .country-hero {
    min-height: 80vh;
    padding: 6rem 1.5rem 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .content-section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid,
  .stats-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .cta-decoration {
    font-size: 6rem;
  }

  .gallery-item {
    height: 250px;
  }

  /* Modern CTA Responsive */
  .cta-container {
    padding: 3rem 1.5rem;
  }

  .cta-content-wrapper {
    padding: 3rem 2rem;
  }

  .cta-icon-badge {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .cta-main-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1.125rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .cta-feature-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Video Section Responsive */
  .video-section-modern {
    padding: 3rem 0;
  }

  .video-header {
    margin-bottom: 2rem;
  }

  .video-title {
    font-size: 1.75rem;
  }

  .video-subtitle {
    font-size: 1rem;
  }

  .video-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .highlight-item {
    padding: 1.25rem;
  }

  .highlight-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 1.25rem;
  }

  .play-button-large {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  .video-section-container {
    max-width: 100%;
  }
}

/* Scroll Animations */
.content-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-section.visible {
  opacity: 1;
  transform: translateY(0);
}

