/* ===== HERO WRAPPER - SINGLE SCREEN CONTAINER ===== */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  min-height: 700px; /* Reduced from 800px */
  display: flex;
  flex-direction: column;
  background: #000000;
  overflow: hidden;
}

/* ===== TOP BANNER - REDUCED HEIGHT ===== */
.hero-top-banner {
  position: relative;
  width: 100%;
  height: 30vh; /* Reduced from 40vh to 30vh */
  min-height: 200px; /* Reduced from 300px */
  max-height: 280px; /* Reduced from 400px */
  background: #0a0a0a;
  overflow: hidden;
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
  z-index: 5;
  flex-shrink: 0;
}

.banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.6) contrast(1.1);
  transition: transform 0.6s ease;
}

.hero-wrapper:hover .banner-img {
  transform: scale(1.03); /* Reduced scale effect */
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 0, 0, 0.4) 50%, 
    rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

/* ===== HERO SECTION - ADJUSTED FOR REDUCED BANNER ===== */
.about-hero-section {
  position: relative;
  flex: 1; /* Takes remaining height */
  background: #000000;
  overflow: hidden;
  isolation: isolate;
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding: 1.5rem 5rem; /* Reduced top/bottom padding */
}

.about-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
  z-index: 0;
  animation: backgroundShift 25s ease infinite;
  pointer-events: none;
}

.about-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  z-index: 1;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.about-hero-section .container {
  position: relative;
  z-index: 2;
  max-width: 1300px; /* Reduced from 1400px */
  margin: 0 auto;
  width: 100%;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; /* Reduced from 4rem */
  align-items: center;
}

/* Left Content - Adjusted */
.about-hero-content {
  padding-right: 1rem; /* Reduced from 2rem */
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem; /* Reduced from 2rem */
}

.badge-line {
  width: 50px; /* Reduced from 60px */
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, transparent);
  border-radius: 2px;
}

.badge-text {
  font-size: 0.85rem; /* Slightly smaller */
  font-weight: 300;
  color: #b0b0b0;
  letter-spacing: 2px; /* Reduced from 3px */
  text-transform: uppercase;
}

.about-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); /* Reduced max size */
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1rem; /* Reduced from 1.5rem */
  color: #ff6b35;
  font-family: "Montserrat Underline", serif;
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.about-hero-text {
  font-size: 1rem; /* Reduced from 1.1rem */
  line-height: 1.7; /* Reduced from 1.8 */
  color: #b0b0b0;
  margin-bottom: 1rem; /* Reduced from 1.5rem */
  max-width: 500px; /* Reduced from 550px */
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

.about-hero-quote {
  font-size: 1rem; /* Reduced from 1.1rem */
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 1.5rem; /* Reduced from 2.5rem */
  max-width: 500px;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  border-left: 3px solid #ff6b35;
  padding-left: 1.2rem; /* Reduced from 1.5rem */
}

/* ===== REARRANGED IMAGE GALLERY - PROPER SIZING ===== */
.gallery-container {
  position: relative;
  width: 100%;
  max-width: 500px; /* Reduced from 550px */
}

.gallery-main {
  height: 250px; /* Reduced from 300px */
  margin-bottom: 15px; /* Reduced from 20px */
  border-radius: 16px; /* Slightly smaller radius */
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.gallery-main .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(255, 107, 53, 0.3);
}

.gallery-main:hover img {
  transform: scale(1.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px; /* Reduced from 20px */
}

.gallery-item {
  height: 150px; /* Reduced from 180px */
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
}

.gallery-item .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(255, 107, 53, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Image Overlay Content - Adjusted for smaller images */
.image-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgba(0, 0, 0, 0.8) 50%, 
    transparent 100%);
  padding: 1.5rem 1.2rem 1rem; /* Reduced padding */
  border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.image-overlay-content.small {
  padding: 1rem 0.8rem; /* Reduced padding */
}

.image-category {
  font-size: 0.75rem; /* Reduced from 0.8rem */
  letter-spacing: 1.5px; /* Reduced from 2px */
  margin-bottom: 0.3rem;
  border-left: 2px solid #ff6b35;
  padding-left: 8px;
}

.image-category.small {
  font-size: 0.65rem;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
  border-left-width: 2px;
  padding-left: 5px;
}

.image-title {
  font-size: 1.2rem; /* Reduced from 1.5rem */
  margin-bottom: 0.3rem;
}

.image-title.small {
  font-size: 0.9rem; /* Reduced from 1rem */
  margin-bottom: 0.1rem;
}

.image-divider {
  width: 30px; /* Reduced from 40px */
  height: 2px;
  margin: 0.5rem 0; /* Reduced from 0.8rem */
}

.image-link {
  font-size: 0.8rem; /* Reduced from 0.9rem */
  gap: 3px;
}

.image-link.small {
  font-size: 0.7rem;
}

.image-link i {
  font-size: 0.8rem;
}

.image-link.small i {
  font-size: 0.7rem;
}

/* Remove shine effects for cleaner look */
.image-shine,
.image-shine.small {
  display: none;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1400px) {
  .about-hero-section { 
    padding: 1.5rem 4rem; 
  }
}

@media (max-width: 1200px) {
  .about-hero-grid { 
    gap: 2.5rem; 
  }
  
  .gallery-main { 
    height: 220px; 
  }
  
  .gallery-item { 
    height: 130px; 
  }
  
  .gallery-grid { 
    gap: 12px; 
  }
  
  .about-hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 992px) {
  .hero-wrapper {
    height: auto;
    min-height: 100vh;
  }
  
  .hero-top-banner {
    height: 25vh;
    min-height: 180px;
  }
  
  .about-hero-section { 
    padding: 1.5rem 2.5rem; 
  }
  
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-hero-content {
    order: 2;
    text-align: center;
    padding-right: 0;
  }
  
  .hero-badge {
    justify-content: center;
  }
  
  .about-hero-text,
  .about-hero-quote {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-left: none;
    padding-left: 0;
  }
  
  .about-hero-quote {
    border-left: none;
    border-top: 2px solid #ff6b35;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  
  .about-image-gallery {
    order: 1;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .gallery-main { 
    height: 240px; 
  }
  
  .gallery-item { 
    height: 140px; 
  }
}

@media (max-width: 768px) {
  .hero-top-banner {
    height: 22vh;
    min-height: 150px;
  }
  
  .about-hero-section { 
    padding: 1rem 1.5rem; 
  }
  
  .about-hero-title { 
    font-size: 2rem; 
  }
  
  .about-hero-text { 
    font-size: 0.9rem; 
  }
  
  .gallery-main { 
    height: 200px; 
  }
  
  .gallery-item { 
    height: 120px; 
  }
  
  .gallery-grid { 
    gap: 10px; 
  }
  
  .image-title { 
    font-size: 1rem; 
  }
  
  .image-title.small { 
    font-size: 0.8rem; 
  }
}

@media (max-width: 576px) {
  .hero-top-banner {
    height: 20vh;
    min-height: 120px;
  }
  
  .about-hero-section { 
    padding: 0.8rem 1rem; 
  }
  
  .about-hero-title { 
    font-size: 1.6rem; 
  }
  
  .about-hero-text { 
    font-size: 0.85rem; 
    line-height: 1.5;
  }
  
  .about-hero-quote { 
    font-size: 0.85rem; 
    padding-top: 0.8rem;
  }
  
  .about-image-gallery {
    max-width: 100%;
  }
  
  .gallery-main { 
    height: 180px; 
  }
  
  .gallery-item { 
    height: 110px; 
  }
  
  .gallery-grid { 
    gap: 8px; 
  }
  
  .image-overlay-content { 
    padding: 1rem 0.8rem; 
  }
  
  .image-overlay-content.small { 
    padding: 0.5rem; 
  }
  
  .image-title { 
    font-size: 0.9rem; 
  }
  
  .image-title.small { 
    font-size: 0.7rem; 
  }
  
  .image-category { 
    font-size: 0.65rem; 
  }
  
  .image-link { 
    font-size: 0.7rem; 
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  .gallery-main,
  .gallery-item,
  .gallery-main img,
  .gallery-item img,
  .banner-img,
  .about-hero-section::before {
    transition: none !important;
    animation: none !important;
  }
  
  .gallery-main:hover,
  .gallery-item:hover,
  .hero-wrapper:hover .banner-img {
    transform: none;
  }
}
/* ===== STORY SECTION - PURE TEXT VERSION ===== */
.story-section {
  position: relative;
  padding: 6rem 2rem;
  background: #000000;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Orange line at top (matching about section) */
.story-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 107, 53, 0.3) 20%, 
    var(--primary-orange, #ff6b35) 50%, 
    rgba(255, 107, 53, 0.3) 80%, 
    transparent 100%);
  z-index: 1;
}

/* Subtle radial pattern (matching about section) */
.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
  animation: backgroundShift 25s ease infinite;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.story-section .container {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--primary-orange, #ff6b35);
  font-family: "Montserrat Underline", serif;
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== STORY CONTENT ===== */
.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-paragraph {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--paragraph-grey, #b0b0b0);
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.story-paragraph:last-of-type {
  margin-bottom: 0;
}

.story-highlight {
  color: var(--primary-orange, #ff6b35);
  font-weight: 400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .story-section {
    padding: 5rem 2rem;
  }
  
  .story-paragraph {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .story-section {
    padding: 4rem 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .story-paragraph {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}

@media (max-width: 576px) {
  .story-section {
    padding: 3rem 1rem;
    min-height: auto;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .story-paragraph {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  .story-section::before {
    animation: none;
  }
}

/* Dark Mode Enhancement */
@media (prefers-color-scheme: dark) {
  .story-section {
    background: #000000;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .story-paragraph {
    color: #ffffff;
  }
  
  .story-highlight {
    color: #ff4500;
  }
}
/* ===== JOURNEY SECTION - WITH BLACK DOOR BACKGROUND ===== */
.journey-section {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000000;
}

/* Background Image Container */
.journey-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.journey-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) contrast(1.2);
  transform: scale(1.02);
  transition: transform 10s ease;
}

.journey-section:hover .journey-bg-img {
  transform: scale(1.05);
}

/* Premium Overlay */
.journey-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.85) 0%, 
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

/* Animated Pattern Overlay */
.journey-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(45deg, 
      rgba(255, 107, 53, 0.02) 0px, 
      rgba(255, 107, 53, 0.02) 20px,
      transparent 20px, 
      transparent 40px);
  z-index: 2;
  pointer-events: none;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* Orange Line at Top */
.journey-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 107, 53, 0.3) 20%, 
    var(--primary-orange, #ff6b35) 50%, 
    rgba(255, 107, 53, 0.3) 80%, 
    transparent 100%);
  z-index: 5;
}

.journey-section .container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--primary-orange, #ff6b35);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  position: relative;
  padding: 0 1.5rem;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--primary-orange, #ff6b35);
  opacity: 0.5;
}

.section-subtitle::before {
  left: -20px;
}

.section-subtitle::after {
  right: -20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--primary-orange, #ff6b35);
  font-family: "Montserrat Underline", serif;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* ===== JOURNEY GRID ===== */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}

/* Journey Card - Base Styles */
.journey-card {
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* ===== HOVER EFFECT 1: Card Lift & Glow ===== */
.journey-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary-orange, #ff6b35);
  box-shadow: 
    0 30px 60px -10px rgba(255, 107, 53, 0.4),
    0 0 0 2px rgba(255, 107, 53, 0.2),
    0 0 30px rgba(255, 107, 53, 0.3);
}

/* ===== HOVER EFFECT 2: Top Glow Bar ===== */
.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--primary-orange, #ff6b35), 
    var(--primary-orange-light, #ff8c5a), 
    var(--primary-orange, #ff6b35), 
    transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
}

.journey-card:hover::before {
  opacity: 1;
  animation: glowPulse 1.5s infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* ===== HOVER EFFECT 3: Corner Accents ===== */
.journey-card::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
  transition: all 0.4s ease;
  z-index: 11;
}

.journey-card:hover::after {
  border-top-color: var(--primary-orange, #ff6b35);
  border-right-color: var(--primary-orange, #ff6b35);
}

/* Bottom-left corner accent */
.journey-card .card-corner {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  transition: all 0.4s ease;
  z-index: 11;
  pointer-events: none;
}

.journey-card:hover .card-corner {
  border-bottom-color: var(--primary-orange, #ff6b35);
  border-left-color: var(--primary-orange, #ff6b35);
}

/* Add corner element in HTML if needed - but we'll create it with CSS */
.journey-card {
  position: relative;
}

/* Create bottom-left corner using pseudo-element */
.journey-card .card-corner {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  transition: all 0.4s ease;
  z-index: 11;
  pointer-events: none;
}

.journey-card:hover .card-corner {
  border-bottom-color: var(--primary-orange, #ff6b35);
  border-left-color: var(--primary-orange, #ff6b35);
}

/* ===== HOVER EFFECT 4: Shine Effect ===== */
.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    rgba(255, 107, 53, 0.2),
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 12;
  opacity: 0;
}

.journey-card:hover .card-shine {
  left: 150%;
  opacity: 1;
}

/* ===== HOVER EFFECT 5: Floating Particles ===== */
.card-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 13;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-orange, #ff6b35);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.journey-card:hover .particle {
  opacity: 1;
  animation: floatParticle 1.5s ease-out forwards;
}

.particle:nth-child(1) {
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  right: 30%;
  width: 6px;
  height: 6px;
  animation-delay: 0.3s;
}

.particle:nth-child(3) {
  bottom: 20%;
  left: 40%;
  width: 3px;
  height: 3px;
  animation-delay: 0.6s;
}

@keyframes floatParticle {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(calc(cos(45deg) * 50px), calc(sin(45deg) * -50px)) scale(0);
    opacity: 0;
  }
}

/* ===== HOVER EFFECT 6: Year Badge Pulse ===== */
.journey-year-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50px;
  color: var(--primary-orange, #ff6b35);
  font-size: 1.3rem;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.journey-card:hover .journey-year-badge {
  background: var(--primary-orange, #ff6b35);
  color: #000000;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
  animation: badgePulse 1s infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.5); }
  50% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.9); }
}

/* ===== HOVER EFFECT 7: Icon Scale & Rotate ===== */
.journey-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: var(--primary-orange, #ff6b35);
  opacity: 0.15;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.journey-card:hover .journey-icon {
  opacity: 0.4;
  transform: scale(1.5) rotate(10deg);
  color: #ffffff;
  text-shadow: 0 0 20px var(--primary-orange, #ff6b35);
}

/* ===== HOVER EFFECT 8: Title Slide & Color ===== */
.journey-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
}

.journey-card:hover .journey-title {
  transform: translateX(8px);
  color: var(--primary-orange, #ff6b35);
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.journey-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange, #ff6b35);
  transition: width 0.4s ease;
}

.journey-card:hover .journey-title::after {
  width: 50%;
}

/* ===== HOVER EFFECT 9: Text Color Shift ===== */
.journey-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--paragraph-grey, #b0b0b0);
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.journey-card:hover .journey-text {
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== HOVER EFFECT 10: Footer Elements Highlight ===== */
.journey-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  font-size: 0.85rem;
  color: var(--paragraph-grey, #b0b0b0);
  transition: all 0.4s ease;
}

.journey-card:hover .journey-card-footer {
  border-top-color: var(--primary-orange, #ff6b35);
}

.journey-location, .journey-milestone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.4s ease;
}

.journey-card:hover .journey-location {
  transform: translateX(3px);
  color: #ffffff;
}

.journey-card:hover .journey-milestone {
  transform: translateX(-3px);
  color: #ffffff;
}

.journey-location i, .journey-milestone i {
  color: var(--primary-orange, #ff6b35);
  font-size: 0.9rem;
  transition: all 0.4s ease;
}

.journey-card:hover .journey-location i,
.journey-card:hover .journey-milestone i {
  transform: scale(1.2);
  color: #ffffff;
}

/* Timeline Decoration */
.journey-timeline-line {
  position: relative;
  max-width: 800px;
  margin: 2rem auto 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 107, 53, 0.3), 
    var(--primary-orange, #ff6b35), 
    rgba(255, 107, 53, 0.3), 
    transparent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-orange, #ff6b35);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

.timeline-dot.dot-1 { animation-delay: 0s; }
.timeline-dot.dot-2 { animation-delay: 0.5s; }
.timeline-dot.dot-3 { animation-delay: 1s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.5); opacity: 1; }
}

/* Card Inner */
.journey-card-inner {
  padding: 3rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

/* Year Wrapper */
.journey-year-wrapper {
  margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .journey-grid {
    gap: 1.5rem;
  }
  
  .journey-card-inner {
    padding: 2.5rem 1.5rem 1.5rem;
  }
}

@media (max-width: 992px) {
  .journey-section {
    padding: 6rem 2rem;
  }
  
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .journey-timeline-line {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .journey-section {
    padding: 5rem 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
  }
  
  .section-subtitle::before,
  .section-subtitle::after {
    width: 30px;
  }
  
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .journey-card-inner {
    padding: 2rem 1.5rem;
  }
  
  .journey-title {
    font-size: 1.3rem;
  }
  
  .journey-text {
    font-size: 0.9rem;
  }
  
  .journey-timeline-line {
    display: none;
  }
  
  /* Disable some effects on mobile */
  .particle {
    display: none;
  }
}

@media (max-width: 576px) {
  .journey-section {
    padding: 4rem 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 0 1rem;
  }
  
  .section-subtitle::before,
  .section-subtitle::after {
    width: 20px;
  }
  
  .section-subtitle::before { left: -15px; }
  .section-subtitle::after { right: -15px; }
  
  .journey-card-inner {
    padding: 1.8rem 1.2rem;
  }
  
  .journey-year-badge {
    font-size: 1.1rem;
    padding: 0.4rem 1.2rem;
  }
  
  .journey-card-footer {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  .journey-bg-img,
  .journey-bg-pattern,
  .journey-card,
  .journey-card *,
  .timeline-dot,
  .particle,
  .card-shine {
    transition: none !important;
    animation: none !important;
  }
  
  .journey-section:hover .journey-bg-img {
    transform: none;
  }
  
  .journey-card:hover {
    transform: none;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  }
  
  .journey-card:hover .journey-year-badge {
    transform: none;
    animation: none;
  }
  
  .particle {
    display: none;
  }
  
  .card-shine {
    display: none;
  }
}

/* Dark Mode Enhancement */
@media (prefers-color-scheme: dark) {
  .journey-bg-overlay {
    background: linear-gradient(135deg, 
      rgba(0, 0, 0, 0.9) 0%, 
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.9) 100%);
  }
  
  .journey-card {
    background: rgba(5, 5, 5, 0.8);
  }
}
/* ===== WHY CHOOSE US SECTION - PREMIUM VERSION ===== */
.why-choose-section {
  position: relative;
  padding: 6rem 2rem;
  background: #000000;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Orange line at top */
.why-choose-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 107, 53, 0.3) 20%, 
    var(--primary-orange, #ff6b35) 50%, 
    rgba(255, 107, 53, 0.3) 80%, 
    transparent 100%);
  z-index: 1;
}

/* Background Pattern */
.why-bg-pattern {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 40% 50%, rgba(255, 107, 53, 0.01) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
  animation: backgroundShift 25s ease infinite;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Background Glow */
.why-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  animation: glowPulse 10s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.3); }
}

.why-choose-section .container {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--primary-orange, #ff6b35);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  position: relative;
  padding: 0 1.5rem;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--primary-orange, #ff6b35);
  opacity: 0.5;
}

.section-subtitle::before {
  left: -20px;
}

.section-subtitle::after {
  right: -20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--primary-orange, #ff6b35);
  font-family: "Montserrat Underline", serif;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* ===== CONTENT WRAPPER ===== */
.why-content-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

/* Left and Right Columns */
.why-left,
.why-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ===== TEXT BLOCKS ===== */
.why-block {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 20px;
  padding: 1.8rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.why-block:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange, #ff6b35);
  background: rgba(20, 20, 20, 0.8);
  box-shadow: 0 20px 30px -10px rgba(255, 107, 53, 0.2);
}

/* Block Icon */
.block-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-orange, #ff6b35);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.why-block:hover .block-icon {
  background: var(--primary-orange, #ff6b35);
  color: #000000;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Block Content */
.block-content {
  flex: 1;
}

.block-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.3s ease;
}

.why-block:hover .block-title {
  color: var(--primary-orange, #ff6b35);
}

.block-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--paragraph-grey, #b0b0b0);
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  transition: color 0.3s ease;
}

.why-block:hover .block-text {
  color: #e0e0e0;
}

/* Block Positions - Alternating */
.block-1 { transform: translateX(-10px); }
.block-2 { transform: translateX(5px); }
.block-3 { transform: translateX(-5px); }
.block-4 { transform: translateX(10px); }
.block-5 { transform: translateX(-5px); }
.block-6 { transform: translateX(5px); }

/* ===== CENTER DOOR IMAGE - INCREASED HEIGHT ===== */
.why-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.door-image-container {
  position: relative;
  width: 300px;
  height: 480px; /* Increased height */
}

.door-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(255, 107, 53, 0.3);
  transition: all 0.5s ease;
  z-index: 5;
}

.door-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.door-image-wrapper:hover {
  border-color: var(--primary-orange, #ff6b35);
  box-shadow: 0 40px 60px -15px rgba(255, 107, 53, 0.4);
  transform: scale(1.02);
}

.door-image-wrapper:hover .door-image {
  transform: scale(1.1);
}

/* Image Glow Effect */
.door-image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 6;
}

.door-image-wrapper:hover .door-image-glow {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .why-content-wrapper {
    gap: 2rem;
  }
  
  .door-image-container {
    width: 260px;
    height: 420px; /* Adjusted for tablet */
  }
  
  .why-block {
    padding: 1.5rem;
  }
}

@media (max-width: 992px) {
  .why-choose-section {
    padding: 5rem 2rem;
  }
  
  .why-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-left, .why-right {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .why-center {
    order: -1;
  }
  
  .door-image-container {
    width: 240px;
    height: 380px; /* Adjusted for mobile landscape */
  }
  
  .block-1, .block-2, .block-3, .block-4, .block-5, .block-6 {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 4rem 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
  }
  
  .section-subtitle::before,
  .section-subtitle::after {
    width: 30px;
  }
  
  .why-block {
    padding: 1.4rem;
  }
  
  .block-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  .block-title {
    font-size: 1.2rem;
  }
  
  .block-text {
    font-size: 0.9rem;
  }
  
  .door-image-container {
    width: 220px;
    height: 340px; /* Adjusted for tablet */
  }
}

@media (max-width: 576px) {
  .why-choose-section {
    padding: 3rem 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  
  .section-subtitle::before,
  .section-subtitle::after {
    width: 20px;
  }
  
  .section-subtitle::before { left: -15px; }
  .section-subtitle::after { right: -15px; }
  
  .why-left, .why-right {
    gap: 1.2rem;
  }
  
  .why-block {
    padding: 1.2rem;
    gap: 1rem;
  }
  
  .block-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .block-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  
  .block-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .door-image-container {
    width: 200px;
    height: 300px; /* Adjusted for mobile */
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  .why-bg-pattern,
  .why-bg-glow,
  .why-block,
  .door-image-wrapper,
  .door-image {
    transition: none !important;
    animation: none !important;
  }
  
  .why-block:hover {
    transform: none;
  }
  
  .door-image-wrapper:hover {
    transform: none;
  }
  
  .door-image-wrapper:hover .door-image {
    transform: none;
  }
}

/* Dark Mode Enhancement */
@media (prefers-color-scheme: dark) {
  .why-choose-section {
    background: #000000;
  }
  
  .why-block {
    background: rgba(5, 5, 5, 0.7);
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .block-text {
    color: #ffffff;
  }
  
  .block-title {
    color: #ffffff;
  }
  
  .door-image-wrapper {
    border: 3px solid #ff4500;
  }
}
/* ===== CTA SECTION - PREMIUM BLACK BACKGROUND ===== */
.cta-section {
  position: relative;
  padding: 6rem 2rem;
  background: #000000;  /* Solid black background */
  overflow: hidden;
  isolation: isolate;
  width: 100%;
}

/* Orange line at top (matching other sections) */
.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 107, 53, 0.3) 20%, 
    #ff6b35 50%, 
    rgba(255, 107, 53, 0.3) 80%, 
    transparent 100%);
  z-index: 1;
}

/* Subtle radial pattern background (matching other sections) */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.02) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
  animation: backgroundShift 20s ease infinite;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.cta-section .container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ===== TYPOGRAPHY - EXACTLY MATCHING OTHER SECTIONS ===== */
.cta-title {
  font-family: "Montserrat Underline", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  color: #ff6b35;  /* Orange heading */
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b0b0b0;  /* Grey text */
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  font-weight: 300;
}

/* ===== BUTTON STYLING - PILL SHAPED ===== */
.cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: transparent;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #ff6b35;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
  cursor: pointer;
  border-radius: 50px;  /* Pill shape - fully rounded */
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ff6b35;
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
  border-radius: 50px;  /* Match pill shape */
}

.cta-btn:hover {
  color: #000000;
  border-color: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.cta-btn:hover::before {
  left: 0;
}

.cta-btn:active {
  transform: translateY(0);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 992px) {
  .cta-section {
    padding: 5rem 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .cta-btn {
    padding: 14px 42px;
    font-size: 1rem;
    border-radius: 40px;  /* Slightly smaller radius for smaller button */
  }
  
  .cta-btn::before {
    border-radius: 40px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 1.5rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .cta-text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .cta-btn {
    padding: 12px 36px;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    border-radius: 40px;
  }
  
  .cta-btn::before {
    border-radius: 40px;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 3rem 1rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-text {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
  }
  
  .cta-btn {
    padding: 10px 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 30px;  /* Smaller radius for mobile */
  }
  
  .cta-btn::before {
    border-radius: 30px;
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  .cta-section::before,
  .cta-btn,
  .cta-btn::before {
    transition: none !important;
    animation: none !important;
  }
  
  .cta-btn:hover {
    transform: none;
  }
}

/* Dark Mode Enhancement */
@media (prefers-color-scheme: dark) {
  .cta-section {
    background: #000000;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .cta-title {
    color: #ff4500;
  }
  
  .cta-text {
    color: #ffffff;
  }
  
  .cta-btn {
    border-color: #ff4500;
    border-radius: 50px;
  }
  
  .cta-btn::before {
    border-radius: 50px;
  }
  
  .cta-btn:hover {
    background: #ff4500;
    color: #000000;
  }
}
/* ===== IMAGE OVERLAY CONTENT - MATCHING OTHER SECTIONS ===== */
.image-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgba(0, 0, 0, 0.8) 50%, 
    transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 104, 31, 0.3); /* Subtle orange border */
  z-index: 10;
}

/* Main image overlay */
.gallery-main .image-overlay-content {
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgba(0, 0, 0, 0.8) 60%, 
    transparent 100%);
  padding: 2rem 1.8rem 1.5rem;
}

/* Image category - grey text to match other sections */
.image-category {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 300; /* Light weight to match */
  color: #b0b0b0; /* Grey to match paragraph text */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  border-left: 2px solid #FF681F; /* Orange line only */
  padding-left: 12px;
}

.image-category.small {
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding-left: 8px;
  border-left-width: 2px;
}

/* Image title - light weight, white */
.image-title {
  font-size: 1.5rem;
  font-weight: 300; /* Light weight to match headings */
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
  letter-spacing: -0.3px; /* Match other headings */
}

.image-title.small {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 0.3rem;
}

/* Image divider - orange line */
.image-divider {
  width: 40px;
  height: 2px;
  background: #FF681F;
  margin: 0.8rem 0;
}

/* ===== EXPLORE LINKS - GREY WITH ORANGE UNDERLINE (MATCHING OTHER SECTIONS) ===== */
.image-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #b0b0b0; /* Grey to match other links */
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400; /* Regular weight */
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  border-bottom: 1.5px solid #FF681F; /* Orange underline */
  padding-bottom: 3px;
  letter-spacing: 0.5px; /* Match other links */
}

.image-link.small {
  font-size: 0.8rem;
  border-bottom-width: 1.5px;
}

.image-link i {
  font-size: 0.9rem;
  color: #b0b0b0; /* Grey icon */
  transition: transform 0.3s ease;
}

.image-link.small i {
  font-size: 0.8rem;
}

.image-link:hover {
  color: #ffffff; /* White on hover */
  border-bottom-color: #ffffff;
  gap: 8px;
}

.image-link:hover i {
  color: #ffffff;
  transform: translateX(5px);
}

/* ===== ADDITIONAL EXPLORE TEXT - GREY WITH ORANGE UNDERLINE ===== */
.explore-text {
  color: #b0b0b0;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1.5px solid #FF681F;
  padding-bottom: 3px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.explore-text:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

/* ===== SMALL GALLERY ITEMS ===== */
.gallery-item .image-overlay-content.small {
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgba(0, 0, 0, 0.8) 70%, 
    transparent 100%);
  padding: 1rem 1rem 0.8rem;
}

.gallery-item .image-title.small {
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 0.2rem;
}

.gallery-item .image-category.small {
  font-size: 0.65rem;
  margin-bottom: 0.2rem;
}

.gallery-item .image-link.small {
  font-size: 0.75rem;
}

/* ===== HOVER EFFECTS ===== */
.gallery-main:hover .image-link,
.gallery-item:hover .image-link {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.gallery-main:hover .image-link i,
.gallery-item:hover .image-link i {
  color: #ffffff;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  .image-overlay-content {
    padding: 1.2rem 1rem;
  }
  
  .image-title {
    font-size: 1.2rem;
  }
  
  .image-title.small {
    font-size: 0.85rem;
  }
  
  .image-link {
    font-size: 0.8rem;
  }
  
  .image-category {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .image-overlay-content {
    padding: 1rem 0.8rem;
  }
  
  .image-title {
    font-size: 1rem;
  }
  
  .image-title.small {
    font-size: 0.75rem;
  }
  
  .image-link {
    font-size: 0.75rem;
  }
  
  .image-category {
    font-size: 0.65rem;
  }
  
  .image-divider {
    width: 30px;
    margin: 0.5rem 0;
  }
}