/* ==========================================================================
   KONARK AYUSH PLUS - Multi Specialty Wellness Center
   Design System, Non-Overlapping Header Layout & Responsive Architecture
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --color-primary: #1B4D3E;        /* Deep Forest Green */
  --color-primary-dark: #0B231B;   /* Darker Midnight Forest */
  --color-primary-light: #2A6B56;  /* Soft Emerald */
  --color-accent: #C5A059;         /* Warm Gold Accent */
  --color-accent-bright: #D4AF37;  /* Bright Gold */
  --color-accent-dark: #A47E38;    /* Deep Gold / Bronze */
  --color-bronze-bg: #BA9367;      /* Warm Bronze for Conditions Section */
  --color-bronze-dark: #987247;
  --color-bg-light: #FAF8F5;       /* Warm Ivory/Cream background */
  --color-bg-white: #FFFFFF;
  --color-text-dark: #1E2724;      /* Deep Charcoal Green */
  --color-text-muted: #57645E;     /* Muted Sage/Slate */
  --color-text-light: #F4F6F5;
  --color-border: #E5DFC9;
  
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(11, 35, 27, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 35, 27, 0.1);
  --shadow-lg: 0 20px 45px rgba(11, 35, 27, 0.16);
  --shadow-gold-glow: 0 6px 22px rgba(197, 160, 89, 0.45);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-primary-dark);
  letter-spacing: 0.5px;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   1. TOP UTILITY BAR
   ========================================================================== */
.top-bar {
  background: var(--color-primary-dark);
  color: #D1E0DA;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  position: relative;
  z-index: 1002;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(197, 160, 89, 0.15);
  color: #FFE6B3;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.top-divider {
  color: rgba(197, 160, 89, 0.4);
  font-size: 0.8rem;
}

.top-contact-link {
  color: #E2ECE8;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-contact-link:hover {
  color: var(--color-accent-bright);
}

.top-bar-right a {
  color: #D1E0DA;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
}

.top-bar-right a:hover {
  color: var(--color-accent-bright);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-left: 6px;
}

.social-icons a {
  color: var(--color-accent);
  transition: var(--transition-fast);
}

.social-icons a:hover {
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.2);
}

/* ==========================================================================
   2. NON-OVERLAPPING MAIN HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid rgba(197, 160, 89, 0.22);
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 12px 35px rgba(11, 35, 27, 0.12);
  border-bottom-color: var(--color-accent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  width: 100%;
}

/* Brand Logo (Strict Flex Shrink 0) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.main-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  background: #FFF;
  padding: 2px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.brand-logo:hover .main-logo-img {
  transform: scale(1.05);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-gold-glow);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.1;
  letter-spacing: 1.2px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.brand-logo:hover .brand-name {
  color: var(--color-primary);
}

/* Nav Wrapper & Flexible Spacing */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 8px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: var(--transition-fast);
  position: relative;
}

.nav-icon {
  font-size: 0.84rem;
  color: var(--color-primary-light);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-primary-dark);
  background-color: rgba(197, 160, 89, 0.14);
}

.nav-link:hover .nav-icon {
  color: var(--color-accent-dark);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--color-primary-dark);
  font-weight: 700;
  background: rgba(27, 77, 62, 0.09);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.nav-link.active .nav-icon {
  color: var(--color-accent-bright);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-bright) 0%, var(--color-accent) 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.55);
  transform: translateY(-2px);
}

.btn-luxury-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.7s ease;
}

.btn-luxury-glow:hover::before {
  transform: rotate(30deg) translateY(100%);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-outline:hover {
  background-color: var(--color-primary-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold-outline {
  background-color: transparent;
  color: var(--color-accent-bright);
  border-color: var(--color-accent-bright);
}

.btn-gold-outline:hover {
  background-color: var(--color-accent-bright);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  padding: 5px;
  transition: var(--transition-fast);
}

.mobile-nav-toggle:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   PREMIUM HERO SLIDER SECTION
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  background-color: var(--color-primary-dark);
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 85vh;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  transform: scale(1.05);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 10;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 35, 27, 0.52) 0%, rgba(11, 35, 27, 0.85) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 20;
  color: #FFFFFF;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-slide.active .hero-tagline-sub {
  animation: slideFadeDown 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
}

.hero-slide.active .hero-title {
  animation: slideFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
}

.hero-slide.active .hero-lead {
  animation: slideFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
}

.hero-slide.active .hero-cta-group {
  animation: slideFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s forwards;
}

.hero-tagline-sub {
  opacity: 0;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent-bright);
  margin-bottom: 15px;
  display: inline-block;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-title {
  opacity: 0;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 6px;
  line-height: 1.15;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 4px 25px rgba(0,0,0,0.6);
}

.hero-lead {
  opacity: 0;
  font-size: 1.2rem;
  max-width: 840px;
  margin: 0 auto 35px auto;
  font-weight: 300;
  color: #E2ECE8;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-cta-group {
  opacity: 0;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-gold-glow);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  gap: 12px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--color-accent-bright);
  border-color: #FFFFFF;
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
}

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

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

/* ==========================================================================
   SECTIONS & CARDS STYLING
   ========================================================================== */
.intro-section {
  padding: 100px 0;
  background-color: var(--color-bg-light);
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 65px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-bright) 100%);
  margin: 14px auto 0 auto;
  border-radius: 2px;
}

.intro-content {
  max-width: 920px;
  margin: 0 auto;
}

.intro-p {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  margin-bottom: 22px;
  line-height: 1.85;
}

.signboard-badge-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 38px 0;
}

.signboard-pill {
  padding: 10px 22px;
  background: var(--color-primary);
  color: #FFF;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
}

.signboard-pill:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(27, 77, 62, 0.25);
  border-color: var(--color-accent-bright);
}

.signboard-pill.gold {
  background: var(--color-accent-dark);
}

.signboard-pill.gold:hover {
  background: var(--color-accent);
  box-shadow: var(--shadow-gold-glow);
}

/* INTEGRATIVE MEDICINE SECTION & SLIDER */
.integrative-section {
  padding: 100px 0;
  background-color: var(--color-bg-white);
  position: relative;
}

.carousel-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 6px 16px;
  background: rgba(17, 52, 41, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.carousel-status-indicator .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a745;
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.8);
  animation: pulseGreen 1.5s infinite;
}

.carousel-status-indicator.paused {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--color-accent);
}

.carousel-status-indicator.paused .status-dot {
  background: var(--color-accent-dark);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.9);
  animation: none;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  70% {
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

.integrative-slider-container {
  position: relative;
  margin-top: 40px;
  padding: 10px 0;
}

.integrative-slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 15px 5px 25px 5px;
  margin: -15px -5px -25px -5px;
  touch-action: pan-y;
}

.integrative-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.integrative-slide-item {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 14px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .integrative-slide-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .integrative-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.therapy-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.therapy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(17, 52, 41, 0.15);
  border-color: var(--color-accent);
}

/* Luxury Slider Navigation Arrows */
.integrative-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(17, 52, 41, 0.9);
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent-bright);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.integrative-arrow.prev {
  left: -22px;
}

.integrative-arrow.next {
  right: -22px;
}

@media (max-width: 991px) {
  .integrative-arrow.prev {
    left: -5px;
  }
  .integrative-arrow.next {
    right: -5px;
  }
}

.integrative-arrow:hover {
  background: var(--color-primary-light);
  color: #FFF;
  border-color: #FFF;
  transform: translateY(-50%) scale(1.12);
  box-shadow: var(--shadow-gold-glow);
}

/* Pagination Dots */
.integrative-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.integrative-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(27, 77, 62, 0.2);
  border: 1px solid var(--color-accent);
  cursor: pointer;
  transition: all 0.3s ease;
}

.integrative-dot.active {
  width: 32px;
  background: var(--color-accent-dark);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.therapy-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.therapy-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.therapy-card:hover .therapy-img-wrap img {
  transform: scale(1.1);
}

.therapy-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(27, 77, 62, 0.92);
  color: var(--color-accent-bright);
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.therapy-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.therapy-icon-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.therapy-icon-title i {
  color: var(--color-accent);
  font-size: 1.35rem;
  transition: transform 0.3s ease;
}

.therapy-card:hover .therapy-icon-title i {
  transform: scale(1.2) rotate(10deg);
}

.therapy-title {
  font-size: 1.55rem;
  color: var(--color-primary-dark);
}

.therapy-desc {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  margin-bottom: 22px;
  flex-grow: 1;
}

.therapy-link {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.therapy-link:hover {
  color: var(--color-primary-dark);
  gap: 12px;
}

/* SPECIALIZED PROGRAMMES SECTION (LUXURY REDESIGN) */
.programmes-section {
  padding: 105px 0;
  background: linear-gradient(180deg, #F5F1E8 0%, #EFEBE0 100%);
  position: relative;
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
  margin-top: 55px;
}

.programme-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-top: 5px solid var(--color-accent);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.programme-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(17, 52, 41, 0.18);
  border-color: var(--color-accent);
  border-top-color: var(--color-accent-bright);
}

/* Card Hero Image Header (Increased Height 220px) */
.prog-card-header {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #113429;
}

.prog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.programme-card:hover .prog-card-img {
  transform: scale(1.1);
}

.prog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 52, 41, 0.2) 0%, rgba(17, 52, 41, 0.85) 100%);
}

/* Upper Icon Avatar */
.prog-icon-upper {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: var(--color-accent-bright);
  border: 1.5px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  z-index: 5;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(4px);
}

.programme-card:hover .prog-icon-upper {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: var(--shadow-gold-glow);
}

.prog-tag-badge {
  position: absolute;
  top: 14px;
  left: 66px;
  background: rgba(17, 52, 41, 0.92);
  color: var(--color-accent-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  backdrop-filter: blur(4px);
}

.prog-duration-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-primary-dark);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 4px;
}

.prog-duration-pill i {
  color: var(--color-accent-dark);
}

/* Card Body (Streamlined Content) */
.prog-card-body {
  padding: 22px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prog-title-group {
  margin-bottom: 10px;
}

.prog-title {
  font-size: 1.35rem;
  color: var(--color-primary-dark);
  line-height: 1.25;
  margin-bottom: 3px;
  font-family: var(--font-heading);
}

.prog-subtitle {
  font-size: 0.8rem;
  color: var(--color-accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
}

.prog-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.prog-highlights-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 4px;
}

.prog-features {
  list-style: none;
  margin-bottom: 18px;
  flex-grow: 1;
}

.prog-features li {
  font-size: 0.86rem;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.programme-card:hover .feature-check {
  background: var(--color-accent-dark);
  color: #FFF;
}

.prog-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 11px 16px;
  font-size: 0.88rem;
  margin-top: auto;
}

/* MEDICAL CONDITIONS THAT WE TREAT SECTION */
.conditions-section {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--color-bronze-bg) 0%, var(--color-bronze-dark) 100%);
  color: #FFFFFF;
  text-align: center;
}

.conditions-section .section-subtitle {
  color: #FFE6B3;
}

.conditions-section .section-title {
  color: #FFFFFF;
}

.conditions-section .section-title::after {
  background-color: #FFE6B3;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  margin-top: 55px;
}

.condition-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-normal);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.condition-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px) scale(1.02);
  border-color: #FFE6B3;
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

.condition-icon {
  font-size: 2.4rem;
  color: #FFE6B3;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.condition-card:hover .condition-icon {
  transform: scale(1.2);
}

.condition-title {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.condition-desc {
  font-size: 0.88rem;
  color: #F3E5D8;
  line-height: 1.65;
}

.conditions-cta-bar {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* TESTIMONIALS SECTION & SLIDER */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--color-bg-white);
  text-align: center;
  position: relative;
}

.testimonial-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-accent);
  border-radius: 30px;
  color: var(--color-primary-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.testimonial-rating-badge i {
  color: var(--color-accent);
  font-size: 0.95rem;
}

.testimonial-slider-container {
  position: relative;
  margin-top: 45px;
  padding: 10px 0;
}

.testimonial-slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 15px 5px 25px 5px;
  margin: -15px -5px -25px -5px;
  touch-action: pan-y;
}

.testimonial-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-slide-item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .testimonial-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.testimonial-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 42px 35px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(17, 52, 41, 0.12);
  border-color: var(--color-accent);
  background: #FFF;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  opacity: 0.4;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-primary-dark);
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}

.testimonial-author {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.testimonial-loc {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.testimonial-info {
  font-size: 0.82rem;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 12px;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-accent);
  font-size: 1rem;
}

.testimonial-stars .star-filled {
  color: #D4AF37;
}

.testimonial-stars .star-empty {
  color: #CCC;
}

.testimonial-stars .star-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-left: 8px;
}

/* Testimonial Arrow Buttons */
.testimonial-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(17, 52, 41, 0.9);
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent-bright);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.testimonial-arrow.prev {
  left: -22px;
}

.testimonial-arrow.next {
  right: -22px;
}

@media (max-width: 991px) {
  .testimonial-arrow.prev {
    left: -5px;
  }
  .testimonial-arrow.next {
    right: -5px;
  }
}

.testimonial-arrow:hover {
  background: var(--color-primary-light);
  color: #FFF;
  border-color: #FFF;
  transform: translateY(-50%) scale(1.12);
  box-shadow: var(--shadow-gold-glow);
}

/* Dots */
.testimonial-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(27, 77, 62, 0.2);
  border: 1px solid var(--color-accent);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  width: 32px;
  background: var(--color-accent-dark);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* MEDIA & ACCREDITATION SECTION */
.media-section {
  padding: 100px 0;
  background-color: var(--color-bg-light);
  text-align: center;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 55px;
}

.media-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 35px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.media-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.media-publisher {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}

.media-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.media-title {
  font-size: 1.2rem;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.media-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* FOOTER STYLING */
.main-footer {
  background-color: #0B231B;
  color: #A3B5AE;
  padding-top: 85px;
  font-size: 0.92rem;
}

.footer-top {
  padding-bottom: 65px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 45px;
}

.footer-brand img {
  height: 68px;
  margin-bottom: 22px;
  background: #FFF;
  padding: 5px 10px;
  border-radius: 4px;
}

.footer-brand p {
  line-height: 1.75;
  margin-bottom: 22px;
  color: #B5C7C0;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 38px;
  height: 2px;
  background-color: var(--color-accent);
  margin-top: 9px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #B5C7C0;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent-bright);
  padding-left: 6px;
}

.footer-contact-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  color: #B5C7C0;
}

.footer-contact-list i {
  color: var(--color-accent);
  margin-top: 4px;
}

.footer-bottom {
  padding: 28px 0;
  text-align: center;
  font-size: 0.84rem;
  color: #798C84;
}

/* Floating WhatsApp Button with pulse */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--transition-fast);
  animation: pulseWa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  color: #FFF;
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Modal Popup Styling */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 35, 27, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #FFFFFF;
  width: 90%;
  max-width: 650px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
  position: relative;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-header {
  background: var(--color-primary-dark);
  color: #FFFFFF;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  color: #FFFFFF;
  font-size: 1.55rem;
}

.modal-close {
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  cursor: pointer;
}

.modal-body {
  padding: 32px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--color-text-dark);
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #FFF;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Responsive Rules & Mobile Hamburger Switch */
@media (max-width: 1240px) {
  .nav-link {
    padding: 7px 10px;
    font-size: 0.84rem;
  }
  .brand-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 1100px) {
  .top-bar-left, .top-bar-right {
    justify-content: center;
    width: 100%;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-wrapper {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-white);
    padding: 25px 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-160%);
    transition: var(--transition-normal);
    z-index: 999;
  }
  
  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .nav-link {
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 1rem;
  }

  .nav-wrapper.active {
    transform: translateY(0);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .slider-arrow {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* SMARTPHONE ORIGINAL STYLE GALLERY & LIGHTBOX VIEWER */
.phone-gallery-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.gallery-category-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery-tab {
  background: var(--color-bg-white);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-dark);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-primary-dark);
}

.gallery-tab.active {
  background: var(--color-primary-dark);
  color: var(--color-accent-bright);
  border-color: var(--color-primary-dark);
  box-shadow: 0 4px 15px rgba(17, 52, 41, 0.2);
}

.gallery-view-toggle {
  display: flex;
  background: #E8E2D5;
  padding: 4px;
  border-radius: 25px;
  gap: 4px;
}

.view-mode-btn {
  background: transparent;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.view-mode-btn.active {
  background: #FFF;
  color: var(--color-primary-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* ALBUMS GRID STYLING */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.album-folder-card {
  background: #FFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  cursor: pointer;
}

.album-folder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(17, 52, 41, 0.15);
  border-color: var(--color-accent);
}

.album-cover-stack {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #113429;
}

.album-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.album-folder-card:hover .album-cover-img {
  transform: scale(1.08);
}

.album-photo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(17, 52, 41, 0.9);
  color: var(--color-accent-bright);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212,175,55,0.4);
}

.album-overlay-btn {
  position: absolute;
  inset: 0;
  background: rgba(17, 52, 41, 0.6);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.album-folder-card:hover .album-overlay-btn {
  opacity: 1;
}

.album-card-body {
  padding: 22px 24px;
}

.album-title {
  font-size: 1.3rem;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
}

.album-subtitle {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* PHOTOS GRID STYLING */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.photo-card-item {
  background: #FFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  cursor: pointer;
}

.photo-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(17, 52, 41, 0.12);
  border-color: var(--color-accent);
}

.photo-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.photo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-card-item:hover .photo-img-wrap img {
  transform: scale(1.08);
}

.photo-tag-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(17, 52, 41, 0.88);
  color: var(--color-accent-bright);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.photo-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 52, 41, 0.65);
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-card-item:hover .photo-hover-overlay {
  opacity: 1;
}

.photo-hover-overlay .zoom-icon {
  font-size: 1.8rem;
  color: var(--color-accent-bright);
}

.photo-info-bar {
  padding: 16px 18px;
}

.photo-title {
  font-size: 1.05rem;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}

.photo-album-tag {
  font-size: 0.78rem;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* SMARTPHONE ORIGINAL LIGHTBOX MODAL */
.phone-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.phone-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.phone-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 20, 0.96);
  backdrop-filter: blur(15px);
}

.phone-lightbox-window {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Lightbox Header */
.phone-lightbox-header {
  height: 65px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 52, 41, 0.85);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
}

.phone-lightbox-back {
  background: transparent;
  border: none;
  color: var(--color-accent-bright);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}

.phone-lightbox-back:hover {
  transform: translateX(-4px);
}

.phone-lightbox-title-wrap {
  text-align: center;
}

.phone-lightbox-album-title {
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.phone-lightbox-counter {
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.phone-lightbox-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-ai-badge {
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--color-accent);
  color: var(--color-accent-bright);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
}

.phone-lightbox-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #FFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.phone-lightbox-close:hover {
  background: #E74C3C;
  color: #FFF;
}

/* Lightbox Main Viewport */
.phone-lightbox-body {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.phone-main-img-container {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-main-img-container img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.phone-caption-box {
  margin-top: 15px;
  background: rgba(17, 52, 41, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 14px 22px;
  text-align: center;
  max-width: 680px;
  backdrop-filter: blur(8px);
}

.phone-caption-title {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.phone-caption-desc {
  color: #D4EDDA;
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Navigation Floating Buttons */
.phone-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(17, 52, 41, 0.85);
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent-bright);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.phone-nav-arrow.prev { left: 25px; }
.phone-nav-arrow.next { right: 25px; }

.phone-nav-arrow:hover {
  background: var(--color-primary-light);
  color: #FFF;
  transform: translateY(-50%) scale(1.12);
  box-shadow: var(--shadow-gold-glow);
}

/* Bottom Filmstrip Thumbnails Strip */
.phone-lightbox-filmstrip {
  height: 95px;
  background: rgba(10, 25, 20, 0.92);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
}

.filmstrip-track {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filmstrip-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.55;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.filmstrip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filmstrip-thumb:hover {
  opacity: 0.85;
}

.filmstrip-thumb.active {
  opacity: 1;
  border-color: var(--color-accent);
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
}

@media (max-width: 768px) {
  .phone-nav-arrow.prev { left: 10px; }
  .phone-nav-arrow.next { right: 10px; }
  .phone-main-img-container img { max-height: 50vh; }
  .phone-caption-box { padding: 10px 14px; margin-top: 8px; }
  .phone-caption-title { font-size: 1.05rem; }
  .phone-caption-desc { font-size: 0.82rem; }
}
