

/* =====================================================
   GLOBAL FIXES
   ===================================================== */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* =====================================================
   ENHANCED ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(60px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { 
    opacity: 0; 
    transform: scale(0.85); 
  }
  to { 
    opacity: 1; 
    transform: scale(1); 
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-25px); }
}

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

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

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* =====================================================
   SCROLL ANIMATIONS - ENHANCED
   ===================================================== */
.animate-visible { opacity: 1 !important; }

.page-badge.animate-visible { animation: scaleIn 0.6s ease 0.2s both; }
.page-title.animate-visible { animation: fadeInUp 0.8s ease 0.4s both; }
.page-subtitle.animate-visible { animation: fadeInUp 0.8s ease 0.6s both; }
.split-content-left.animate-visible { animation: fadeInLeft 1s ease 0.2s both; }
.split-content-right.animate-visible { animation: fadeInRight 1s ease 0.4s both; }
.stat-box.animate-visible { animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.value-card.animate-visible { animation: fadeInUp 0.7s ease both; }
.zigzag-item.animate-visible { animation: fadeInUp 0.9s ease both; }

/* Stagger animation for multiple cards */
.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.2s; }
.stat-box:nth-child(3) { animation-delay: 0.3s; }

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }





/* =====================================================
   50/50 SPLIT SECTION
   ===================================================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.split-content-left {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFFFFF;
  position: relative;
  z-index: 2;
}

.split-content-left h2 {
  font-size: 2rem;
  font-weight: 600;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.split-content-left p {
  font-size: 1.15rem;
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  animation: fadeInLeft 0.8s ease both;
}

.split-content-left p:nth-child(2) { animation-delay: 0.2s; }
.split-content-left p:nth-child(3) { animation-delay: 0.4s; }
.split-content-left p:nth-child(4) { animation-delay: 0.6s; }

.split-content-right {
  position: relative;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-photo-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.team-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}

.team-photo-wrapper:hover {
  transform: scale(1.03) translateY(-15px) rotate(1deg);
}

.team-photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.team-photo-wrapper:hover img {
  transform: scale(1.05);
}

.team-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: all 0.3s ease;
}

.team-badge:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.team-badge h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.team-badge p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin: 0;
}

.decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.decorative-shape-1 {
  width: 250px;
  height: 250px;
  top: 5%;
  right: 5%;
  animation: float 12s ease-in-out infinite;
}

.decorative-shape-2 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  left: 5%;
  animation: float 10s ease-in-out infinite reverse;
}

/* =====================================================
   STATS OVERLAY - GLASSMORPHIC CARDS
   ===================================================== */
.stats-overlay-section {
  position: relative;
  min-height: 450px;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1200&h=800&fit=crop') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stats-overlay-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.88) 0%, rgba(22, 33, 62, 0.88) 100%);
  z-index: 1;
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-box:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
  border-color: rgba(255, 107, 53, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #FF6B35;
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.stat-box:hover .stat-number {
  transform: scale(1.1);
  text-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.stat-label {
  display: block;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =====================================================
   VALUES SLIDER - SMOOTH INFINITE LOOP (NO ARROWS)
   ===================================================== */
.values-section {
  padding: 6rem 0;
  background: #FFFFFF;
  overflow: hidden;
}

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

.section-header h2 {
  font-size: 1.7rem;
  font-weight: 600;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #5a5a5a;
}

.values-slider-container {
  position: relative;
  overflow: hidden;
  padding: 0 2rem; /* Reduced from 60px */
  max-width: 100%;
}

.values-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0 2rem;
  scroll-snap-type: x mandatory;
}

.values-slider::-webkit-scrollbar { display: none; }

.value-card {
  min-width: 320px;
  width: 320px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-left: 4px solid #FF6B35;
  padding: 2.5rem 2rem;
  border-radius: 5px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 30px rgba(26, 26, 46, 0.08);
  flex-shrink: 0;
  scroll-snap-align: start;
}

.value-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
  border-left-color: #F7931E;
  border-left-width: 6px;
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FF6B35;
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(247, 147, 30, 0.25) 100%);
}

.value-card h3 {
  font-size: 1.15rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.value-card:hover h3 {
  color: #FF6B35;
}

.value-card p {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

/* Remove slider navigation arrows */
.slider-nav {
  display: none !important;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: rgba(255, 107, 53, 0.6);
  transform: scale(1.2);
}

.slider-dot.active {
  background: #FF6B35;
  width: 30px;
  border-radius: 5px;
}

/* =====================================================
   ZIGZAG FEATURES - ORANGE L-BORDER + ENHANCED
   ===================================================== */
.features-zigzag {
  padding: 6rem 0;
  background: #F9FAFB;
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.zigzag-item:nth-child(even) { direction: rtl; }
.zigzag-item:nth-child(even) > * { direction: ltr; }

.zigzag-image {
  position: relative;
  border-radius: 5px; /* Reduced from 20px */
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.15);
  transition: all 0.4s ease;
}

.zigzag-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(26, 26, 46, 0.2);
}

.zigzag-image img {
  width: 100%;
  height: 350px; /* Reduced from 400px */
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.zigzag-content {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 53, 0.1);
  padding: 3rem;
  border-radius: 5px;
  box-shadow: 0 10px 40px rgba(26, 26, 46, 0.1);
  text-align: center;
  transition: all 0.4s ease;
}

/* Orange L-Border: Top-Right Half to Right Side Half */
.zigzag-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 50%; /* Half of right side */
  background: linear-gradient(180deg, #FF6B35 0%, #F7931E 100%);
  border-radius: 0 0 0 4px;
  transition: all 0.3s ease;
}

.zigzag-content::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%; /* Half of top */
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #FF6B35 50%, #F7931E 100%);
  border-radius: 0 4px 0 0;
  transition: all 0.3s ease;
}

.zigzag-content:hover::before {
  height: 60%;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.zigzag-content:hover::after {
  width: 60%;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.zigzag-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.zigzag-content .feature-icon {
  width: 60px;
  height: 60px;

  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 700;
  color: #FF6B35;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.zigzag-content:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.zigzag-content h3 {
  font-size: 1.15rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
  transition: color 0.3s ease;
}

.zigzag-content:hover h3 {
  color: #FF6B35;
}

.zigzag-content p {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

/* =====================================================
   GLASSMORPHIC BUTTONS
   ===================================================== */
.btn-glass {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}


/* =====================================================
   RESPONSIVE - TABLET (992px and below)
   ===================================================== */
@media (max-width: 992px) {

  
  .split-section { grid-template-columns: 1fr; }
  .split-content-left { padding: 4rem 2rem; text-align: center; }
  .split-content-left h2 { text-align: center; }
  .split-content-right { min-height: 450px; }
  
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  
  .values-slider-container { padding: 0 1rem; }
  .value-card { min-width: 280px; width: 280px; }
  
  .zigzag-item { grid-template-columns: 1fr; gap: 3rem; }
  .zigzag-item:nth-child(even) { direction: ltr; }
  .zigzag-image img { height: 300px; }
}

/* =====================================================
   RESPONSIVE - MOBILE (768px and below)
   ===================================================== */
@media (max-width: 768px) {
  
  
  /* Our Story - CENTERED */
  .split-content-left {
    padding: 3rem 1.5rem;
    text-align: center;
  }
  
  .split-content-left h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .split-content-left p {
    font-size: 1rem;
    text-align: center;
  }
  



  .split-content-right {
    min-height: 500px; /* Increased from 400px */
    padding: 3rem 1rem; /* More padding */
  }
  
  .team-photo-container {
    padding: 2rem 1rem; /* More breathing room */
  }
  
  .team-photo-wrapper {
    max-width: 100%; /* Full width available */
    width: 100%; /* Changed from 95% to 100% */
    height: auto;
  }
  
  .team-photo-wrapper img {
    width: 100%;
    height: auto;
    min-height: 350px; /* NEW: Ensure minimum height */
    object-fit: cover;
    object-position: center;
  }
  
  .team-badge {
    bottom: 1.5rem; /* More space from bottom */
    left: 1.5rem;
    right: 1.5rem;
    padding: 0.8rem 1.15rem; /* Larger padding */
  }
  
  .team-badge h4 {
    font-size: 1rem; /* Larger text */
    margin-bottom: 0.25rem;
  }
  
  .team-badge p {
    font-size: 0.85rem; /* Larger text */
  }
  
  /* Stats - Mobile Horizontal Layout (Same as Home Page) */
  .stats-overlay-section {
    min-height: auto;
    background-attachment: scroll;
    padding: 3rem 0;
  }
  
  .stats-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
    grid-template-columns: none;
    padding: 2rem 1rem;
  }
  
  .stat-box {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    min-width: auto !important;
    width: auto !important;







    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.25rem;
    transition: none;
  }
  
  .stat-box:hover {
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  
  .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF !important;
    text-shadow: none !important;
    line-height: 1;
  }
  
  .stat-box:hover .stat-number {
    transform: none !important;
    text-shadow: none !important;
  }
  
  .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Values Section */
  .section-header h2 { font-size: 1.5rem; }
  .section-subtitle { font-size: 1rem; }
  
  .values-slider-container { padding: 0 1rem; }
  
  .value-card {
    min-width: calc(100vw - 70px);
    width: calc(100vw - 70px);
    max-width: 350px;
    padding: 2rem 1.5rem;
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
  
  .value-card h3 { font-size: 1.25rem; }
  .value-card p { font-size: 0.9375rem; }
  
  /* Zigzag Features */
  .zigzag-item { 
    padding: 0 1rem; 
    margin-bottom: 3rem; 
  }
  
  .zigzag-image {
    border-radius: 10px;
  }
  
  .zigzag-image img {
    height: 250px;
    object-fit: cover;
    object-position: center;
  }
  
  .zigzag-content {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  
  .zigzag-content .feature-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
  }
  
  .zigzag-content h3 {
    font-size: 1.375rem;
    text-align: center;
  }
  
  .zigzag-content p {
    font-size: 1rem;
    text-align: center;
  }
  
  /* CTA */
  .cta-section { padding: 3rem 1rem; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-buttons .btn { width: 100%; }
}

/* =====================================================
   RESPONSIVE - SMALL MOBILE (480px and below)
   ===================================================== */
@media (max-width: 480px) {
 
  
  .team-badge h4 { font-size: 0.85rem; }
  .team-badge p { font-size: 0.7rem; }
  
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.85rem; }
  
  .value-card {
    min-width: calc(100vw - 50px);
    width: calc(100vw - 50px);
  }
  
  .zigzag-image img {
    height: 220px;
  }
}





/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

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

/* Glassmorphic Secondary Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }

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

    .cta-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

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