/*
 * Birat IVF - Enhanced Styles
 * Additional animations, components, and advanced features
 */

/* === Top Bar === */
.top-bar {
  background: linear-gradient(
    90deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  color: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 3%;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.9);
}

.top-bar a:hover {
  color: white;
}

.top-bar-left {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar i {
  margin-right: 0.5rem;
  color: var(--primary-light);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-left: 0.5rem;
  transition: var(--transition-fast);
}

.social-icons a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* === Enhanced Navbar === */
.navbar-enhanced {
  background: linear-gradient(
    90deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    var(--primary-dark) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.8rem 3%;
  transition: var(--transition-medium);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-enhanced.scrolled {
  padding: 0.5rem 3%;
  box-shadow: var(--shadow-medium);
  background: rgba(90, 17, 82, 0.98);
}

.nav-links-enhanced {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-links-enhanced a {
  padding: 0.8rem 1.3rem;
  font-weight: 400;
  font-size: 0.95rem;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.nav-links-enhanced a:hover {
  color: white;
  border-bottom-color: var(--accent);
}

.nav-links-enhanced a.active {
  color: white;
  border-bottom-color: var(--accent);
  font-weight: 500;
}

/* CTA Button in Nav */
.nav-links-enhanced .btn {
  margin-left: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  border-bottom: none;
}

.nav-links-enhanced .btn:hover {
  border-bottom: none;
  transform: translateY(-2px);
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  border-radius: 15px;
  box-shadow: var(--shadow-medium);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-medium);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--text-dark);
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.dropdown-menu a i {
  margin-right: 0.8rem;
  color: var(--primary);
  width: 20px;
}

/* === Banner Image Section === */
.banner-image-section {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* === Modern Split Hero === */
.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fdfbfc 0%, #fff 50%, #fdf5fb 100%);
  padding: 100px 0 60px;
  overflow: hidden;
}

.hero-modern-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.hero-modern-content {
  animation: fadeInLeft 0.8s ease;
}

.hero-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary) 100%
  );
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge-modern i {
  color: var(--accent);
}

.hero-modern h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-modern h1 .highlight {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-modern-content > p {
  font-size: 1.15rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 500px;
}

.hero-features-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.hero-feature-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

.hero-buttons-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}

/* Hero Image Section */
.hero-modern-image {
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(90, 17, 82, 0.2);
}

.hero-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-image-card .hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(90, 17, 82, 0.3) 100%
  );
}

/* Floating Stats */
.floating-stat-card {
  position: absolute;
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 3s ease-in-out infinite;
}

.floating-stat-card .stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.floating-stat-card .stat-info {
  display: flex;
  flex-direction: column;
}

.floating-stat-card .stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.floating-stat-card .stat-text {
  font-size: 0.8rem;
  color: var(--text-light);
}

.stat-1 {
  top: 20px;
  left: -30px;
  animation-delay: 0s;
}

.stat-2 {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation-delay: 1s;
}

.stat-3 {
  bottom: 40px;
  left: 20px;
  animation-delay: 2s;
}

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

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

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

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-modern-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-modern-content {
    text-align: center;
    order: 2;
  }

  .hero-modern-content > p {
    max-width: 100%;
  }

  .hero-features-modern {
    justify-content: center;
  }

  .hero-buttons-modern {
    justify-content: center;
  }

  .hero-modern-image {
    order: 1;
  }

  .hero-image-card img {
    height: 350px;
  }

  .floating-stat-card {
    padding: 12px 16px;
  }

  .stat-1 {
    left: 10px;
    top: 10px;
  }

  .stat-2 {
    right: 10px;
  }

  .stat-3 {
    left: auto;
    right: 10px;
    bottom: 10px;
  }

  .floating-stat-card .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .floating-stat-card .stat-num {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-modern {
    padding: 80px 0 40px;
  }

  .hero-modern h1 {
    font-size: 2rem;
  }

  .hero-image-card img {
    height: 280px;
  }

  .floating-stat-card {
    display: none;
  }

  .hero-feature-item {
    font-size: 0.85rem;
  }
}

/* === Legacy Hero Styles === */
.hero-fullwidth {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(90, 17, 82, 0.85) 0%,
    rgba(117, 22, 106, 0.75) 30%,
    rgba(90, 17, 82, 0.65) 70%,
    rgba(60, 10, 55, 0.8) 100%
  );
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.hero-content-box {
  max-width: 700px;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease;
}

.hero-fullwidth h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  animation: slideInLeft 0.8s ease 0.1s both;
}

.hero-fullwidth h1 span {
  font-weight: 700;
  display: inline;
}

.hero-fullwidth p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 550px;
  line-height: 1.8;
  animation: slideInLeft 0.8s ease 0.2s both;
}

.hero-stats-inline {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  animation: slideInLeft 0.8s ease 0.3s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-fullwidth .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: slideInLeft 0.8s ease 0.4s both;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
  font-size: 1.2rem;
}

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

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

@media (max-width: 768px) {
  .hero-fullwidth {
    min-height: 100vh;
    background-attachment: scroll;
  }

  .hero-content-box {
    text-align: center;
    max-width: 100%;
  }

  .hero-fullwidth h1 {
    font-size: 2.2rem;
  }

  .hero-fullwidth p {
    font-size: 1.05rem;
    max-width: 100%;
  }

  .hero-stats-inline {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-stat .stat-number {
    font-size: 1.6rem;
  }

  .hero-stat .stat-label {
    font-size: 0.75rem;
  }

  .hero-fullwidth .hero-buttons {
    justify-content: center;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* === Legacy Hero (keep for compatibility) === */
.hero-enhanced {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #fdf5fb 0%,
    #fff 30%,
    #fef8fc 70%,
    #f8e6f6 100%
  );
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.hero-enhanced::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(117, 22, 106, 0.05) 0%,
    transparent 70%
  );
  animation: float 20s ease-in-out infinite;
}

.hero-enhanced::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg-light), transparent);
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-5%, 5%) rotate(5deg);
  }
  50% {
    transform: translate(5%, -5%) rotate(-5deg);
  }
  75% {
    transform: translate(-3%, -3%) rotate(3deg);
  }
}

.hero-content-enhanced {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding-left: 3%;
}

.hero-content-enhanced .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease;
}

.hero-content-enhanced h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  animation: slideInLeft 0.8s ease 0.1s both;
  line-height: 1.15;
}

.hero-content-enhanced h1 strong {
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content-enhanced p {
  font-size: 1.3rem;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  max-width: 580px;
  animation: slideInLeft 0.8s ease 0.2s both;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: slideInLeft 0.8s ease 0.3s both;
}

.hero-image-enhanced {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  animation: slideInRight 1s ease 0.5s both;
}

.hero-visual {
  position: relative;
  width: 550px;
  height: 550px;
}

.hero-visual-main {
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, white 0%, #fff5fb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 100px rgba(117, 22, 106, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-visual-main::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 3px solid var(--primary-light);
  border-radius: 50%;
  opacity: 0.5;
}

.hero-visual-main i {
  font-size: 10rem;
  color: var(--primary);
  opacity: 0.8;
}

/* Floating cards around hero image */
.hero-float-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card:nth-child(1) {
  top: 0;
  left: -80px;
  animation-delay: 0s;
}

.hero-float-card:nth-child(2) {
  top: 30%;
  right: -60px;
  animation-delay: 1s;
}

.hero-float-card:nth-child(3) {
  bottom: 50px;
  left: -40px;
  animation-delay: 2s;
}

.hero-float-card i {
  font-size: 2rem;
  color: var(--primary);
}

.hero-float-card span {
  font-weight: 600;
  color: var(--primary-dark);
}

.hero-float-card small {
  color: var(--text-light);
  font-size: 0.8rem;
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate(50px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

/* === Stats Bar === */
.stats-bar {
  background: var(--primary-dark);
  padding: 2.5rem 5%;
  position: relative;
  z-index: 5;
  margin-top: -80px;
  border-radius: 30px 30px 0 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  color: white;
}

.stats-bar-item {
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-bar-item:last-child {
  border-right: none;
}

.stats-bar-item .number {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-light);
  display: block;
  line-height: 1;
}

.stats-bar-item .label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

/* === Section Styles === */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--primary-dark);
  color: white;
}

.section-gradient {
  background: var(--bg-gradient);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header .overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-header .overline::before,
.section-header .overline::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--primary-light);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-header h2 strong {
  font-weight: 600;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-medium);
}

.section-dark .section-header .overline {
  color: var(--primary-light);
}

/* Section Badge - Modern label style */
.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* === Enhanced Service Cards === */
.services-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card-enhanced {
  background: white;
  border-radius: 30px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-medium);
  border: 1px solid rgba(27, 90, 126, 0.1);
}

.service-card-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: var(--transition-medium);
}

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

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

.service-icon-enhanced {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bg-light), white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-icon-enhanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: var(--transition-medium);
}

.service-card-enhanced:hover .service-icon-enhanced::before {
  opacity: 1;
}

.service-icon-enhanced i {
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  z-index: 1;
  transition: var(--transition-medium);
}

.service-card-enhanced:hover .service-icon-enhanced i {
  color: white;
}

.service-card-enhanced h4 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.service-card-enhanced p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-features span {
  background: var(--bg-light);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-medium);
}

.service-card-enhanced .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
}

.service-card-enhanced .learn-more i {
  transition: var(--transition-fast);
}

.service-card-enhanced:hover .learn-more i {
  transform: translateX(5px);
}

/* === Enhanced Team Cards === */
.team-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-card-enhanced {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-soft);
}

.team-card-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.team-card-image {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, var(--bg-light), #fce8f4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-card-image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(11, 45, 69, 0.8), transparent);
  opacity: 0;
  transition: var(--transition-medium);
}

.team-card-enhanced:hover .team-card-image::before {
  opacity: 1;
}

.team-card-image i {
  font-size: 8rem;
  color: var(--primary);
  opacity: 0.7;
}

.team-card-social {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  transition: var(--transition-medium);
}

.team-card-enhanced:hover .team-card-social {
  bottom: 1.5rem;
}

.team-card-social a {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-fast);
}

.team-card-social a:hover {
  background: var(--primary);
  color: white;
}

.team-card-content {
  padding: 1.5rem;
  text-align: center;
}

.team-card-content h4 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}

.team-card-content .role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-card-content .experience {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* === Enhanced Testimonials === */
.testimonials-slider-enhanced {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.testimonial-card-enhanced {
  flex: 0 0 400px;
  background: white;
  border-radius: 30px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.testimonial-card-enhanced::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: var(--bg-light);
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: var(--warning);
  font-size: 1.2rem;
}

.testimonial-card-enhanced blockquote {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-image {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author-image i {
  font-size: 2rem;
  color: var(--primary);
}

.testimonial-author-info h5 {
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.testimonial-author-info span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-nav button {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.testimonial-nav button:hover {
  background: var(--primary);
  color: white;
}

/* === Process Timeline === */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-light), var(--primary));
  transform: translateX(-50%);
}

.process-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.process-item:nth-child(even) {
  flex-direction: row-reverse;
}

.process-item:nth-child(even) .process-content {
  text-align: right;
  padding-left: 0;
  padding-right: 3rem;
}

.process-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-soft);
}

.process-content {
  flex: 1;
  padding-left: 3rem;
  max-width: calc(50% - 40px);
}

.process-content h4 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.process-content p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* === Gallery Masonry === */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

.gallery-masonry-item {
  background: linear-gradient(135deg, var(--bg-light), #fce8f4);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-masonry-item.tall {
  grid-row: span 2;
}

.gallery-masonry-item.wide {
  grid-column: span 2;
}

.gallery-masonry-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-masonry-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 45, 69, 0.8), transparent);
  opacity: 0;
  transition: var(--transition-medium);
}

.gallery-masonry-item:hover::before {
  opacity: 1;
}

.gallery-masonry-item i {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.5;
}

.gallery-masonry-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
  transform: translateY(100%);
  transition: var(--transition-medium);
}

.gallery-masonry-item:hover .overlay {
  transform: translateY(0);
}

/* === Pricing Cards === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: 30px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: var(--transition-medium);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.pricing-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

.pricing-card h4 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.pricing-card .price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-features {
  text-align: left;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pricing-features li i {
  color: var(--accent);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* === Blog Cards === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-soft);
}

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

.blog-card-image {
  height: 220px;
  background: linear-gradient(135deg, var(--bg-light), #fce8f4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-image i {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.5;
}

.blog-card-image .category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-card-content {
  padding: 2rem;
}

.blog-card-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.blog-card-meta span i {
  margin-right: 0.4rem;
  color: var(--primary);
}

.blog-card-content h4 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.blog-card-content h4 a:hover {
  color: var(--primary);
}

.blog-card-content p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-card-content .read-more {
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card-content .read-more:hover i {
  transform: translateX(5px);
}

.blog-card-content .read-more i {
  transition: var(--transition-fast);
}

/* === CTA Section Enhanced === */
.cta-enhanced {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  border-radius: 50px;
  padding: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-enhanced::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(30deg);
}

.cta-enhanced h3 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-enhanced p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-enhanced .btn-primary {
  background: white;
  color: var(--primary-dark);
}

.cta-enhanced .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-3px);
}

/* === Enhanced Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 60px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition-medium);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-dark);
  color: white;
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: white;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--primary-dark);
}

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

.btn-sm {
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
}

.btn-icon {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
}

/* === Enhanced Footer === */
.footer-enhanced {
  background: var(--primary-dark);
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.footer-top {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 4rem 5%;
  transform: skewY(-3deg);
  margin-bottom: -2rem;
}

.footer-top-inner {
  transform: skewY(3deg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-top h3 {
  color: white;
  font-size: 2rem;
  font-weight: 400;
}

.footer-main {
  padding: 5rem 5% 3rem;
}

.footer-grid-enhanced {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
  padding-right: 2rem;
}

.footer-brand h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.footer-brand .tagline {
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.footer-column h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-light);
}

.footer-links-enhanced li {
  margin-bottom: 0.8rem;
}

.footer-links-enhanced a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links-enhanced a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact-item i {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}

.footer-contact-item div span {
  display: block;
  color: white;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.footer-bottom-enhanced {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
  color: white;
}

/* === Back to Top === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
  z-index: 99;
  box-shadow: var(--shadow-soft);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* === WhatsApp Button === */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 99;
  box-shadow: var(--shadow-soft);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  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 === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 45, 69, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-medium);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 10;
}

.modal-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #eee;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  padding: 1rem 2rem 2rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* === Responsive Styles === */
@media (max-width: 1200px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }

  .hero-content-enhanced {
    max-width: 100%;
    padding: 0 5%;
  }

  .hero-content-enhanced p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-enhanced {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 3rem;
  }

  .hero-enhanced {
    min-height: auto;
    padding: 5rem 0 4rem;
  }

  .hero-visual {
    width: 400px;
    height: 400px;
    margin: 0 auto;
  }

  .hero-visual-main {
    width: 350px;
    height: 350px;
  }

  .hero-trust {
    justify-content: center;
  }

  .footer-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .top-bar {
    display: none;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-item,
  .process-item:nth-child(even) {
    flex-direction: column;
    padding-left: 80px;
  }

  .process-number {
    left: 0;
    transform: none;
  }

  .process-content,
  .process-item:nth-child(even) .process-content {
    max-width: 100%;
    padding: 0;
    text-align: left;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-masonry-item.wide,
  .gallery-masonry-item.large {
    grid-column: span 1;
  }

  .gallery-masonry-item.large {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .nav-links-enhanced {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(
      180deg,
      var(--primary-dark) 0%,
      var(--primary) 100%
    );
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links-enhanced.active {
    display: flex;
  }

  .nav-links-enhanced a {
    padding: 1rem 1.5rem;
    border-radius: 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links-enhanced a:last-child {
    border-bottom: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    margin-top: 0;
    padding: 0;
  }

  .dropdown-menu a {
    color: white;
    padding-left: 2.5rem;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .hero-float-card {
    display: none;
  }

  .hero-content-enhanced h1 {
    font-size: 2.2rem;
  }

  .stats-bar {
    margin-top: 0;
    border-radius: 0;
  }

  .stats-bar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-enhanced {
    padding: 3rem 2rem;
    border-radius: 30px;
  }

  .cta-enhanced h3 {
    font-size: 1.8rem;
  }

  .footer-grid-enhanced {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-bottom-enhanced {
    flex-direction: column;
    text-align: center;
  }

  .footer-top-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .testimonial-card-enhanced {
    flex: 0 0 calc(100vw - 40px);
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

/* === Animation Classes === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}
.animate-delay-2 {
  transition-delay: 0.2s;
}
.animate-delay-3 {
  transition-delay: 0.3s;
}
.animate-delay-4 {
  transition-delay: 0.4s;
}

/* === Utility Classes === */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 2rem;
}
.mb-4 {
  margin-bottom: 3rem;
}
.mb-5 {
  margin-bottom: 4rem;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 2rem;
}
.mt-4 {
  margin-top: 3rem;
}
.mt-5 {
  margin-top: 4rem;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-5 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.d-flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.5rem;
}
.gap-2 {
  gap: 1rem;
}
.gap-3 {
  gap: 2rem;
}

.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

.bg-white {
  background: white;
}
.bg-light {
  background: var(--bg-light);
}
.bg-dark {
  background: var(--primary-dark);
  color: white;
}

.rounded {
  border-radius: var(--border-radius);
}
.rounded-lg {
  border-radius: var(--border-radius-lg);
}
.shadow {
  box-shadow: var(--shadow-soft);
}
.shadow-md {
  box-shadow: var(--shadow-medium);
}

/* === Hero Main Image Styles === */
.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.hero-visual-main:hover .hero-main-image {
  transform: scale(1.05);
}

/* === About Section Image Grid === */
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.about-img-main {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.about-img-secondary,
.about-img-tertiary {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.about-img-main:hover,
.about-img-secondary:hover,
.about-img-tertiary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .about-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
    min-height: auto;
  }

  .about-img-main {
    grid-column: 1;
    grid-row: 1;
    height: 180px;
  }

  .about-img-secondary,
  .about-img-tertiary {
    height: 140px;
  }

  .hero-visual {
    width: 350px;
    height: 350px;
  }

  .hero-visual-main {
    width: 300px;
    height: 300px;
  }
}

/* === Dr. Prerana Featured Section === */
.dr-prerana-section {
  background: linear-gradient(135deg, #fce8f4 0%, #fff5fb 50%, #f0e6ff 100%);
  padding: 5rem 0;
  margin: 3rem 0;
  border-radius: 30px;
}

.dr-prerana-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.dr-prerana-image {
  flex: 0 0 350px;
  position: relative;
}

.dr-image-wrapper {
  width: 350px;
  height: 420px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(117, 22, 106, 0.25);
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  position: relative;
}

.dr-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dr-image-wrapper:hover img {
  transform: scale(1.05);
}

.dr-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
}

.dr-image-placeholder i {
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.6);
}

.dr-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(200, 158, 63, 0.4);
  white-space: nowrap;
}

.dr-badge i {
  font-size: 1.2rem;
}

.dr-prerana-content {
  flex: 1;
}

.dr-prerana-content .overline {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.dr-prerana-content h2 {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.dr-prerana-content h2 strong {
  color: var(--primary);
}

.dr-designation {
  color: var(--text-medium);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.dr-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.dr-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dr-highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.dr-highlight-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(117, 22, 106, 0.15);
}

.dr-highlight-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.dr-highlight-item div {
  display: flex;
  flex-direction: column;
}

.dr-highlight-item strong {
  color: var(--text-dark);
  font-size: 1rem;
}

.dr-highlight-item span {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.dr-cta .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .dr-prerana-container {
    flex-direction: column;
    text-align: center;
  }

  .dr-prerana-image {
    flex: none;
  }

  .dr-image-wrapper {
    width: 280px;
    height: 340px;
  }

  .dr-prerana-content h2 {
    font-size: 2.2rem;
  }

  .dr-highlight-item {
    justify-content: center;
  }

  .dr-highlight-item:hover {
    transform: translateY(-5px);
  }
}

/* === Image Distribution Layouts === */

/* About Section Single Image */
.about-single-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(117, 22, 106, 0.2);
}

.about-single-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-single-image:hover img {
  transform: scale(1.05);
}

/* Why Choose Us Grid with Image */
.why-choose-section {
  background: linear-gradient(135deg, #5a1152 0%, #75166a 100%);
  border-radius: 0;
  padding: 4rem 0;
  margin: 3rem 0;
  color: white;
  overflow: hidden;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  grid-template-areas:
    "image content"
    "cards cards";
  gap: 40px;
  align-items: start;
}

.why-choose-image {
  grid-area: image;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.why-choose-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.why-choose-image:hover img {
  transform: scale(1.05);
}

.why-choose-content .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.why-choose-content {
  grid-area: content;
  min-width: 0;
}

.why-choose-content .section-header h2,
.why-choose-content .section-header h2 strong {
  color: white;
}

.why-choose-content .section-header p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 100%;
}

.why-choose-content .section-header .overline {
  color: #f8c8ec;
}

.why-cards-grid {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.why-cards-grid .why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: background 0.3s ease;
  min-width: 0;
}

.why-cards-grid .why-card:hover {
  background: rgba(255, 255, 255, 0.18);
}

.why-cards-grid .why-card i {
  color: #f8c8ec;
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  margin-top: 2px;
}

.why-cards-grid .why-card h4 {
  color: white;
  margin: 0 0 0.35rem 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.why-cards-grid .why-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.55;
}

/* Services Section Redesigned (Homepage) */
.services-section-redesigned {
  background: linear-gradient(160deg, #fdf6fc 0%, #f0e8f5 60%, #fdf6fc 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.services-section-redesigned::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(117, 22, 106, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Top row: image left + header right */
.services-top-row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.services-top-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(117, 22, 106, 0.18);
  flex-shrink: 0;
}

.services-top-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.services-top-header .overline {
  display: block;
  margin-bottom: 0.5rem;
}

.services-top-header h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.services-top-header > p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.services-header-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svc-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border-radius: 14px;
  padding: 0.85rem 1.2rem;
  box-shadow: 0 4px 16px rgba(117, 22, 106, 0.08);
  border-left: 4px solid var(--primary);
}

.svc-highlight > i {
  font-size: 1.4rem;
  color: var(--primary);
  width: 28px;
  flex-shrink: 0;
}

.svc-highlight div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.svc-highlight strong {
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.svc-highlight span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Service cards 3-column grid */
.services-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

/* Keep old class names in case used elsewhere */
.services-section-with-image {
  background: linear-gradient(135deg, #fdf6fc 0%, #f5e8f3 100%);
  padding: 4rem 2rem;
  border-radius: 30px;
  margin: 3rem 0;
}

.services-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: start;
}

.services-image-side {
  position: sticky;
  top: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(117, 22, 106, 0.2);
}

.services-image-side img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.services-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(117, 22, 106, 0.9), transparent);
}

.services-image-overlay .overlay-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.services-image-overlay i {
  font-size: 2rem;
}

.services-image-overlay span {
  font-size: 1.2rem;
  font-weight: 600;
}

.services-content-side .section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.services-content-side .section-header p {
  max-width: 100%;
}

.services-content-side .services-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.services-content-side .service-card-enhanced {
  padding: 1.5rem;
}

/* Responsive for Image Layouts */
@media (max-width: 1100px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "content"
      "cards";
    gap: 30px;
  }

  .why-choose-image {
    max-width: 100%;
    margin: 0 auto;
  }

  .why-choose-image img {
    height: 320px;
  }

  .why-choose-content .section-header {
    text-align: center;
  }

  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services redesigned - tablet */
  .services-top-row {
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
  }

  .services-top-image img {
    height: 360px;
  }

  .services-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Legacy */
  .services-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-image-side {
    position: relative;
    top: 0;
    max-width: 500px;
    margin: 0 auto;
  }

  .services-image-side img {
    height: 350px;
  }

  .services-content-side .section-header {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-single-image img {
    height: 300px;
  }

  .why-choose-section {
    padding: 2.5rem 1.2rem;
    border-radius: 20px;
  }

  .why-choose-image img {
    height: 250px;
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
  }

  .why-cards-grid .why-card {
    padding: 0.8rem 1rem;
  }

  .services-image-side img {
    height: 280px;
  }

  .services-content-side .services-grid-enhanced {
    grid-template-columns: 1fr;
  }
}

/* === Text Color Fixes for Various Sections === */

/* Ensure all .section headers have visible text */
.section .section-header h2 {
  color: #3d0d38;
}

.section .section-header h2 strong {
  color: #75166a;
}

.section .section-header p {
  color: #5a1152;
}

.section .section-header .overline {
  color: #75166a;
}

/* About features text visibility */
.about-feature h4 {
  color: #3d0d38;
}

.about-feature p {
  color: #5a1152;
}

/* Process timeline text visibility */
.process-content h4 {
  color: #3d0d38 !important;
}

.process-content p {
  color: #5a1152 !important;
}

/* FAQ text visibility */
.faq-question span {
  color: #3d0d38;
}

.faq-answer p {
  color: #5a1152;
}

/* Services section text */
.service-card-enhanced h4 {
  color: #3d0d38;
}

.service-card-enhanced p {
  color: #5a1152;
}

/* Testimonials section */
.testimonials-section .section-header h2 {
  color: #3d0d38;
}

/* ================================
   Instagram Reels Section
================================ */
.instagram-reels-section {
  padding: 4rem 0 3rem;
  background: #fff;
}

.instagram-reels-section .section-header .overline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.instagram-reels-section .section-header .overline i {
  font-size: 1.1rem;
  color: #e1306c;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.reel-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reel-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.77%; /* 9:16 aspect ratio */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
}

.reel-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.reel-caption {
  font-size: 0.9rem;
  color: var(--text-medium);
  text-align: center;
  line-height: 1.5;
  padding: 0 0.5rem;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  border: none;
}

.btn-instagram:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: white;
}

@media (max-width: 1100px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reels-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* CTA Section text visibility */
.cta-consultation-section h2 {
  color: white;
}

.cta-consultation-section p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-consultation-section .cta-feature {
  color: white;
}

/* ============================================ */
/* MOBILE RESPONSIVE FIXES - Prevent Overflow  */
/* ============================================ */

/* Global overflow prevention (applies to all devices) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Mobile Hero Fixes */
@media (max-width: 768px) {
  /* Mobile-only container and section overflow fixes */
  .container {
    max-width: 100%;
    overflow-x: hidden;
  }

  section {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .hero-modern {
    padding: 100px 15px 40px;
    overflow: hidden;
  }

  .hero-modern-container {
    padding: 0 10px;
  }

  .hero-modern-content {
    padding: 0 5px;
    text-align: center;
  }

  .hero-modern h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    text-align: center;
  }

  .hero-modern-content > p {
    font-size: 1rem;
    padding: 0 10px;
    text-align: center;
  }

  .hero-badge-modern {
    margin: 0 auto 1rem;
  }

  .hero-features-modern {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .hero-buttons-modern {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
  }

  .hero-buttons-modern .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image-card {
    max-width: 100%;
  }

  .hero-image-card img {
    width: 100%;
    height: 250px;
  }

  /* About Section Mobile */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }

  .about-visual {
    order: 1;
  }

  .about-content {
    order: 2;
    padding: 0 10px;
    text-align: center;
  }

  .about-content .section-header {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-single-image img {
    height: 250px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-feature {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .about-feature-icon {
    margin-bottom: 0.5rem;
  }

  .about-content .btn {
    display: inline-flex;
    margin: 0 auto;
  }

  /* Services Section Mobile */
  .services-section-redesigned {
    padding: 3.5rem 0 2.5rem;
  }

  .services-top-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .services-top-image img {
    height: 280px;
  }

  .services-top-header h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .services-top-header .overline,
  .services-top-header > p {
    text-align: center;
  }

  .services-top-header > p {
    max-width: 100%;
  }

  .services-top-header .btn {
    display: flex;
    width: fit-content;
    margin: 1.5rem auto 0;
  }

  .services-cards-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-card-enhanced {
    padding: 1.2rem;
    text-align: center;
  }

  .service-card-enhanced .service-icon-enhanced {
    margin: 0 auto 1rem;
  }

  .service-card-enhanced .learn-more {
    justify-content: center;
  }

  /* Legacy services classes mobile */
  .services-section-with-image {
    padding: 3rem 15px;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-image-side {
    position: relative;
    top: 0;
    max-width: 100%;
  }

  .services-image-side img {
    height: 250px;
    width: 100%;
  }

  .services-content-side .section-header {
    text-align: center;
  }

  .services-content-side .services-grid-enhanced {
    grid-template-columns: 1fr;
  }

  /* Why Choose Us Mobile */
  .why-choose-section {
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 0;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-choose-image {
    max-width: 100%;
  }

  .why-choose-image img {
    height: 250px;
    width: 100%;
  }

  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .why-choose-content .section-header {
    text-align: center;
  }

  .why-cards-grid .why-card {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .why-cards-grid .why-card i {
    margin-bottom: 0.5rem;
  }

  /* Dr Prerana Section Mobile */
  .dr-prerana-section {
    padding: 3rem 15px;
    margin: 2rem 0;
    border-radius: 20px;
  }

  .dr-prerana-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0;
    text-align: center;
  }

  .dr-image-wrapper {
    width: 250px;
    height: 300px;
    margin: 0 auto;
  }

  .dr-prerana-content h2 {
    font-size: 1.8rem;
  }

  .dr-highlight-item {
    justify-content: center;
  }

  .dr-cta {
    text-align: center;
  }

  .dr-cta .btn {
    display: inline-flex;
  }

  /* Process Timeline Mobile */
  .process-timeline {
    padding: 0 10px;
  }

  .process-timeline::before {
    left: 20px;
  }

  .process-item,
  .process-item:nth-child(even) {
    flex-direction: row;
    padding-left: 60px;
  }

  .process-number {
    left: 0;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .process-content,
  .process-item:nth-child(even) .process-content {
    max-width: 100%;
    padding: 0;
    text-align: left;
  }

  .process-content h4 {
    font-size: 1.1rem;
  }

  /* Testimonials Mobile */
  .testimonials-section .section-header {
    text-align: center;
  }

  .testimonials-slider-enhanced {
    padding: 0;
  }

  .testimonials-track {
    gap: 1rem;
  }

  .testimonial-card-enhanced {
    flex: 0 0 calc(100vw - 40px);
    min-width: calc(100vw - 40px);
    padding: 1.5rem;
    text-align: center;
  }

  .testimonial-card-enhanced .testimonial-content {
    text-align: center;
  }

  .testimonial-card-enhanced .testimonial-author {
    justify-content: center;
  }

  /* FAQ Mobile */
  .faq-section {
    padding: 3rem 0;
  }

  .faq-section .section-header {
    text-align: center;
  }

  .faq-list {
    padding: 0 10px;
  }

  .faq-item {
    margin-bottom: 0.8rem;
  }

  .faq-question {
    padding: 1rem 1.2rem;
    font-size: 1rem;
    text-align: left;
  }

  .faq-answer {
    padding: 0 1.2rem;
    text-align: left;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.2rem 1rem;
  }

  /* CTA Section Mobile */
  .cta-consultation-section {
    padding: 3rem 15px;
    margin: 2rem 0;
    text-align: center;
  }

  .cta-consultation-content {
    text-align: center;
  }

  .cta-consultation-content h2 {
    font-size: 1.6rem;
  }

  .cta-badge {
    display: inline-flex;
    margin: 0 auto 1rem;
  }

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

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

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

  .cta-note {
    text-align: center;
  }

  /* Stats Bar Mobile */
  .stats-bar {
    padding: 1.5rem 10px;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stats-bar-item {
    text-align: center;
  }

  .stats-bar-item .number {
    font-size: 1.5rem;
  }

  .stats-bar-item .label {
    font-size: 0.75rem;
  }

  /* Section Headers Mobile */
  .section-header {
    padding: 0 10px;
    margin-bottom: 2rem;
    text-align: center;
  }

  .section-header h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .section-header p {
    font-size: 1rem;
    text-align: center;
  }

  .section-header .overline {
    justify-content: center;
  }

  /* Container Mobile */
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 3rem 0;
  }

  /* Button centering */
  .text-center .btn {
    display: inline-flex;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .hero-modern h1 {
    font-size: 1.5rem;
  }

  .hero-badge-modern {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.9rem 1.5rem;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dr-image-wrapper {
    width: 200px;
    height: 250px;
  }

  .about-feature {
    flex-direction: column;
    text-align: center;
  }

  .about-feature-icon {
    margin: 0 auto 0.5rem;
  }
}

/* ============================================ */
/* CONSULTATION PAGE STYLES                     */
/* ============================================ */

/* Hero Section */
.consultation-hero-section {
  position: relative;
  padding: 140px 0 60px;
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.consultation-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.consultation-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.consultation-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 13, 56, 0.9) 0%,
    rgba(26, 26, 46, 0.85) 100%
  );
}

.consultation-hero-section .container {
  position: relative;
  z-index: 1;
}

.consultation-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Breadcrumb */
.consultation-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.consultation-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.consultation-breadcrumb a:hover {
  color: white;
}

.consultation-breadcrumb > i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.consultation-breadcrumb span {
  color: var(--accent);
}

/* Hero Title */
.consultation-hero-content h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.consultation-hero-content h1 strong {
  background: linear-gradient(135deg, #ffd700, #ffeb3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.consultation-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Trust Badges */
.consultation-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.trust-badge-item i {
  color: #27ae60;
  font-size: 1rem;
}

/* Form Section */
.consultation-form-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.consultation-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Form Column */
.consultation-form-column {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Cards */
.consultation-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
}

.consultation-card.form-card {
  box-shadow: none;
}

/* Progress Bar */
.form-progress-bar {
  height: 5px;
  background: #e0e0e0;
  border-radius: 3px 3px 0 0;
}

.form-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 33.33%;
  transition: width 0.4s ease;
  border-radius: 3px;
}

/* Success/Error Cards */
.consultation-card.success-card,
.consultation-card.error-card {
  text-align: center;
  padding: 4rem 3rem;
}

.success-icon,
.error-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  margin: 0 auto 1.5rem;
}

.success-icon {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.error-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.consultation-card h2 {
  font-size: 2rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.consultation-card > p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.response-time {
  color: #888;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.success-actions,
.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sidebar */
.consultation-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-card {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Doctor Card */
.doctor-card .doctor-header h4 {
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.75rem 0;
  text-align: center;
}

.doctor-profile {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.doctor-profile img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--primary-light);
  margin-bottom: 0.75rem;
}

.doctor-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.75rem;
}

.doctor-profile h5 {
  font-size: 1rem;
  color: #1a1a2e;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.doctor-profile .doctor-title {
  color: var(--primary);
  font-size: 0.85rem;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.doctor-profile .doctor-qual {
  color: #666;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.3;
}

/* Contact Card */
.contact-card h4 {
  font-size: 0.95rem;
  color: #1a1a2e;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-card h4 i {
  color: var(--primary);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

a.contact-item:hover {
  background: var(--primary-light);
  transform: translateX(3px);
}

.contact-item i {
  color: var(--primary);
  width: 18px;
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

.contact-item span {
  font-size: 0.85rem;
  word-break: break-word;
  line-height: 1.3;
}

/* Reasons Card */
.reasons-card h4 {
  font-size: 0.95rem;
  color: #1a1a2e;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reasons-card h4 i {
  color: var(--accent);
}

.reasons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reasons-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: #555;
  font-size: 0.9rem;
}

.reasons-list li i {
  color: #27ae60;
  font-size: 0.75rem;
}

/* Benefits Section */
.consultation-benefits-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a2e 100%);
  padding: 4rem 0;
}

.consultation-benefits-section .section-title {
  text-align: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 1.25rem;
  color: white;
}

.benefit-content h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Form T3 Styles (kept for form functionality) */
.form-t3-step {
  display: none;
}

.form-t3-step.active {
  display: block;
}

.form-t3-content {
  padding: 2rem;
}

.form-t3-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-num {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
}

.step-info h3 {
  color: #1a1a2e;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.step-info p {
  color: #666;
  font-size: 0.95rem;
}

/* Gender selection */
.gender-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.gender-card {
  position: relative;
  cursor: pointer;
}

.gender-card input {
  position: absolute;
  opacity: 0;
}

.gender-card-inner {
  padding: 2rem 1.5rem;
  border: 3px solid #d0d0d0;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  background: #ffffff;
}

.gender-card:hover .gender-card-inner {
  border-color: var(--primary);
  background: #fdf6fc;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(117, 22, 106, 0.15);
}

.gender-card input:checked + .gender-card-inner {
  border-color: var(--primary);
  background: linear-gradient(
    135deg,
    rgba(117, 22, 106, 0.1),
    rgba(227, 21, 135, 0.08)
  );
  box-shadow: 0 8px 25px rgba(117, 22, 106, 0.25);
}

.gender-card .icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(117, 22, 106, 0.15),
    rgba(227, 21, 135, 0.1)
  );
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.gender-card:hover .icon-wrap,
.gender-card input:checked + .gender-card-inner .icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.gender-card h4 {
  color: #1a1a2e;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

/* Form grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  margin-bottom: 0;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  color: #333;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61, 13, 56, 0.1);
}

.form-group input.error {
  border-color: #e74c3c;
}

/* Form sections */
.form-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.form-section h4 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Yes/No grid */
.yes-no-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.yes-no-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.9rem;
}

.yes-no-item span {
  color: #333;
  flex: 1;
  padding-right: 1rem;
}

.toggle-group {
  display: flex;
  gap: 0.5rem;
}

.toggle-group label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: #666;
}

.toggle-group input[type="radio"] {
  width: auto;
  margin: 0;
}

/* Consultation Mobile Responsive */
@media (max-width: 992px) {
  .consultation-layout {
    grid-template-columns: 1fr;
  }

  .consultation-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-card {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .consultation-hero-section {
    padding: 120px 15px 40px;
    min-height: auto;
  }

  .consultation-hero-content {
    padding: 0 15px;
  }

  .consultation-trust-badges {
    gap: 0.75rem;
  }

  .trust-badge-item {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .consultation-form-section {
    padding: 2rem 0;
  }

  .consultation-layout {
    gap: 1.5rem;
  }

  .consultation-sidebar {
    flex-direction: column;
  }

  .sidebar-card {
    min-width: auto;
  }

  .form-t3-content {
    padding: 1.5rem;
  }

  .form-t3-footer {
    padding: 1rem 1.5rem;
  }

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

  .gender-card-inner {
    padding: 1.25rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .yes-no-grid {
    grid-template-columns: 1fr;
  }

  .yes-no-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .yes-no-item span {
    padding-right: 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon {
    margin: 0 auto;
  }

  .consultation-card.success-card,
  .consultation-card.error-card {
    padding: 2.5rem 1.5rem;
  }

  .success-icon,
  .error-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .consultation-card h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .consultation-hero-content h1 {
    font-size: 1.5rem;
  }

  .consultation-subtitle {
    font-size: 0.95rem;
  }

  .trust-badge-item {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .step-header {
    flex-direction: column;
    text-align: center;
  }

  .step-info {
    text-align: center;
  }
}

/* ============================================ */
/* ABOUT PAGE STYLES                            */
/* ============================================ */

/* About Hero Section */
.about-hero-section {
  position: relative;
  padding: 140px 0 80px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 13, 56, 0.9) 0%,
    rgba(26, 26, 46, 0.85) 100%
  );
}

.about-hero-section .container {
  position: relative;
  z-index: 1;
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* About Breadcrumb */
.about-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.about-breadcrumb a:hover {
  color: white;
}

.about-breadcrumb > i {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.about-breadcrumb span {
  color: var(--accent);
}

/* About Hero Title */
.about-hero-content h1 {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-hero-content h1 strong {
  background: linear-gradient(135deg, #ffd700, #ffeb3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Story Section */
.about-story-section {
  padding: 5rem 0;
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-story-content {
  max-width: 600px;
}

.about-story-content h2 {
  font-size: 2.25rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-story-content h2 strong {
  color: var(--primary);
}

.lead-text {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-story-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Story Image */
.about-story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.story-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.story-image-badge .badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.story-image-badge .badge-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Stats Bar */
.about-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(61, 13, 56, 0.3);
}

.about-stat-item {
  text-align: center;
  color: white;
}

.about-stat-item .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.about-stat-item .stat-label {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* MVV Section */
.about-mvv-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-mvv-section .mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mvv-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mvv-card .mvv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mvv-card .mvv-icon i {
  font-size: 2rem;
  color: white;
}

.mvv-card h3 {
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.mvv-card p {
  color: #666;
  line-height: 1.7;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #555;
  font-size: 0.95rem;
}

.values-list li i {
  color: #27ae60;
  margin-top: 0.25rem;
}

/* Features Section */
.about-features-section {
  padding: 5rem 0;
  background: #fff;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header-center h2 {
  font-size: 2.25rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.section-header-center h2 strong {
  color: var(--primary);
}

.section-header-center p {
  color: #666;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-light);
}

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.feature-icon-wrap i {
  font-size: 1.75rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon-wrap i {
  color: white;
}

.feature-card h4 {
  font-size: 1.15rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Team Section */
.about-team-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.team-card-photo {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-light), #e8d8e6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.3s ease;
}

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

.team-avatar {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(61, 13, 56, 0.3);
}

.team-avatar i {
  font-size: 3.5rem;
  color: white;
}

.team-card-info {
  padding: 1.5rem;
}

.team-card-info h4 {
  font-size: 1.25rem;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-qualification {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Facility Section */
.about-facility-section {
  padding: 5rem 0;
  background: white;
}

.about-facility-section .facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.facility-card {
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.facility-card:hover {
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.facility-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.facility-card h4 {
  font-size: 1.1rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.facility-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Accreditations Section */
.about-accreditations-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.accreditations-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.accreditation-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  min-width: 180px;
}

.accreditation-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.accreditation-card span {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

/* CTA Section */
.about-cta-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
}

.about-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about-cta-content h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* About Page Mobile Responsive */
@media (max-width: 992px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story-image {
    order: -1;
  }

  .about-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-mvv-section .mvv-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-facility-section .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: 120px 15px 50px;
    min-height: auto;
  }

  .about-hero-content {
    padding: 0 15px;
  }

  .about-hero-content h1 {
    font-size: 1.75rem;
  }

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

  .about-story-section,
  .about-mvv-section,
  .about-features-section,
  .about-team-section,
  .about-facility-section,
  .about-accreditations-section,
  .about-cta-section {
    padding: 3rem 0;
  }

  .about-story-content h2 {
    font-size: 1.75rem;
  }

  .about-story-image img {
    height: 300px;
  }

  .about-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .about-stat-item .stat-number {
    font-size: 2rem;
  }

  .features-grid,
  .about-facility-section .facility-grid {
    grid-template-columns: 1fr;
  }

  .section-header-center h2 {
    font-size: 1.75rem;
  }

  .accreditations-grid {
    gap: 1rem;
  }

  .accreditation-card {
    padding: 1.5rem;
    min-width: 150px;
  }

  .about-cta-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-hero-content h1 {
    font-size: 1.5rem;
  }

  .about-stats-bar {
    grid-template-columns: 1fr;
  }

  .story-image-badge {
    bottom: 10px;
    right: 10px;
    padding: 0.75rem 1rem;
  }

  .story-image-badge .badge-number {
    font-size: 1.5rem;
  }

  .mvv-card {
    padding: 1.5rem;
  }

  .team-card-info {
    text-align: center;
  }

  .team-card-photo {
    height: 250px;
  }
}

/* ================================================
   SERVICES PAGE STYLES
   ================================================ */

/* Services Hero Section */
.services-hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.services-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(16, 87, 119, 0.92) 0%,
    rgba(6, 44, 62, 0.95) 100%
  );
}

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

.services-hero-content {
  max-width: 800px;
  color: white;
  padding: 6rem 0 4rem;
}

.services-hero-content .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.services-hero-content .breadcrumb-nav a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.services-hero-content .breadcrumb-nav a:hover {
  opacity: 0.8;
}

.services-hero-content .breadcrumb-nav i {
  font-size: 0.7rem;
}

.services-hero-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.services-hero-content h1 strong {
  color: var(--accent);
}

.services-hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
}

.services-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
}

.btn-outline-light:hover {
  background: white;
  border-color: white;
  color: var(--primary);
}

/* Services Quick Navigation */
.services-quick-nav {
  background: white;
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.services-quick-nav .container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.quick-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  border-radius: 15px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background: var(--gray-bg);
}

.quick-nav-item:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.quick-nav-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quick-nav-item:hover .quick-nav-icon {
  background: rgba(255, 255, 255, 0.2);
}

.quick-nav-icon i {
  font-size: 1.3rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.quick-nav-item:hover .quick-nav-icon i {
  color: white;
}

.quick-nav-item span {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

/* Services Statistics Bar */
.services-stats-bar {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 3rem 0;
  margin-top: 2rem;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.stat-bar-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-bar-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-bar-content {
  display: flex;
  flex-direction: column;
}

.stat-bar-value {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.stat-bar-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Services List Section */
.services-list-section {
  padding: 5rem 0;
  background: var(--gray-bg);
}

.services-list-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-list-section .section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.services-list-section .section-header h2 strong {
  color: var(--primary);
}

.services-list-section .section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-medium);
}

/* Service Detail Card */
.service-detail-card {
  background: white;
  border-radius: 25px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 2.5rem;
  scroll-margin-top: 100px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(16, 87, 119, 0.03) 0%,
    rgba(244, 164, 96, 0.03) 100%
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card-icon.icsi {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.service-card-icon.iui {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.service-card-icon.egg-freezing {
  background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.service-card-icon.genetic {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.service-card-icon.male {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.service-card-icon i {
  font-size: 2rem;
  color: white;
}

.service-card-title {
  flex: 1;
}

.service-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.service-badge.advanced {
  background: #6366f1;
}

.service-badge.affordable {
  background: #10b981;
}

.service-badge.preservation {
  background: #06b6d4;
}

.service-badge.precision {
  background: #f59e0b;
}

.service-badge.specialized {
  background: #3b82f6;
}

.service-card-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.service-tagline {
  color: var(--accent);
  font-weight: 500;
  margin: 0;
  font-size: 0.95rem;
}

/* Service Card Body */
.service-card-body {
  padding: 2.5rem;
}

.service-intro {
  margin-bottom: 2rem;
}

.service-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-medium);
}

.service-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.service-process h4,
.service-candidates h4,
.service-highlights h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.service-process h4 i,
.service-candidates h4 i,
.service-highlights h4 i {
  color: var(--primary);
}

.process-list {
  padding-left: 1.5rem;
  margin: 0;
}

.process-list li {
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.process-list li strong {
  color: var(--text-dark);
}

.candidates-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.candidates-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

.candidates-list li i {
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.service-highlights p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.highlight-stat {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  color: white;
}

.highlight-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.highlight-stat .stat-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.highlight-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.highlight-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-dark);
}

.highlight-features span i {
  color: var(--accent);
}

/* Service Features */
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-light);
  padding: 0.6rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.feature-tag i {
  color: var(--accent);
}

/* Service Card Footer */
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  background: var(--gray-bg);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.service-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Process Types List */
.process-types {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-types li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--gray-bg);
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.process-types li strong {
  color: var(--primary);
  font-size: 1rem;
}

.process-types li span {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* Services Offered List */
.services-offered {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-offered li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

.services-offered li i {
  color: var(--primary);
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 20px;
}

.services-offered li strong {
  color: var(--text-dark);
}

/* Additional Services Section */
.additional-services-section {
  background: white;
  border-radius: 25px;
  padding: 3rem;
  margin-top: 3rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.additional-services-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.additional-services-section .section-header h3 {
  font-size: 1.75rem;
  margin-top: 1rem;
}

.additional-services-section .section-header h3 strong {
  color: var(--primary);
}

.additional-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.additional-service-card {
  background: var(--gray-bg);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.additional-service-card:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.additional-service-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.additional-service-card:hover .additional-service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.additional-service-icon i {
  font-size: 1.75rem;
  color: var(--primary);
  transition: color 0.3s ease;
}

.additional-service-card:hover .additional-service-icon i {
  color: white;
}

.additional-service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.additional-service-card:hover h4 {
  color: white;
}

.additional-service-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.additional-service-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Services Why Section */
.services-why-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 5rem 0;
}

.services-why-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-why-section .section-header h2 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: 1rem;
}

.services-why-section .section-header h2 strong {
  color: var(--accent);
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.services-why-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-why-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.services-why-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.services-why-icon i {
  font-size: 1.5rem;
  color: white;
}

.services-why-item h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.services-why-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Services CTA Section */
.services-cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #e07b24 100%);
  padding: 5rem 0;
}

.services-cta-section .cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.services-cta-section h2 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 1rem 0;
}

.services-cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.btn-white {
  background: white;
  color: var(--primary);
  border: 2px solid white;
}

.btn-white:hover {
  background: transparent;
  color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}

/* Services Page Responsive */
@media (max-width: 1200px) {
  .quick-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .service-details-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .additional-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-hero-content {
    padding: 5rem 0 3rem;
  }

  .services-hero-content h1 {
    font-size: 1.75rem;
  }

  .services-hero-actions {
    flex-direction: column;
  }

  .services-quick-nav {
    margin-top: -20px;
  }

  .quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .quick-nav-item {
    padding: 1rem 0.75rem;
  }

  .quick-nav-icon {
    width: 40px;
    height: 40px;
  }

  .service-card-header {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .service-card-body {
    padding: 2rem 1.5rem;
  }

  .service-card-footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 1.5rem;
  }

  .service-features {
    justify-content: center;
  }

  .stats-bar-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-bar-item {
    justify-content: flex-start;
    padding: 0 1rem;
  }

  .services-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .services-why-item {
    padding: 1.5rem 1rem;
  }

  .additional-services-grid {
    grid-template-columns: 1fr;
  }

  .additional-services-section {
    padding: 2rem 1.5rem;
  }

  .cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .services-hero-content h1 {
    font-size: 1.5rem;
  }

  .quick-nav-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-nav-item span {
    font-size: 0.75rem;
  }

  .service-card-title h3 {
    font-size: 1.25rem;
  }

  .feature-tag {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .services-why-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

/* Contact Hero */
.contact-hero-section {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(61, 13, 56, 0.92) 0%,
    rgba(26, 26, 46, 0.88) 100%
  );
}

.contact-hero-section .container {
  position: relative;
  z-index: 1;
}

.contact-hero-content {
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero-content .breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-hero-content .breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.contact-hero-content .breadcrumb-nav a:hover {
  color: white;
}

.contact-hero-content .breadcrumb-nav i {
  font-size: 0.7rem;
  opacity: 0.6;
}

.contact-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.contact-hero-content h1 strong {
  color: var(--accent);
}

.contact-hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Contact Info Section */
.contact-info-section {
  padding: 4rem 0;
  background: #f8f9fa;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.contact-info-icon i {
  font-size: 1.75rem;
  color: white;
}

.contact-info-card h4 {
  font-size: 1.1rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}

.contact-info-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-info-card p .highlight {
  color: var(--accent);
  font-weight: 500;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--accent);
  gap: 0.75rem;
}

.emergency-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Contact Main Section */
.contact-main-section {
  padding: 4rem 0;
  background: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
  align-items: start;
}

/* Contact Form Card */
.contact-form-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-form-header h3 {
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.contact-form-header h3 i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.contact-form-header p {
  color: #666;
  margin-bottom: 2rem;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-form .form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form .form-group label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(117, 22, 106, 0.1);
}

.contact-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-form .checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.contact-form .checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.contact-form .checkbox-group a {
  color: var(--primary);
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quick-contact-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.quick-contact-card h4 {
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.quick-contact-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.quick-contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
}

.whatsapp-card .quick-contact-icon {
  background: #25d366;
  color: white;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border: none;
  width: 100%;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  color: white;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn.facebook {
  background: #1877f2;
}
.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #bc1888);
}
.social-btn.youtube {
  background: #ff0000;
}
.social-btn.twitter {
  background: #1da1f2;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.cta-card h4,
.cta-card p {
  color: white;
}

.cta-card p {
  opacity: 0.9;
}

.cta-card .btn-primary {
  background: white;
  color: var(--primary);
  width: 100%;
}

.cta-card .btn-primary:hover {
  background: #f0f0f0;
}

/* Map Section */
.contact-map-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.map-wrapper {
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.travel-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.travel-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.travel-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    rgba(227, 21, 135, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.travel-icon i {
  font-size: 1.25rem;
  color: var(--primary);
}

.travel-content h5 {
  font-size: 0.95rem;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}

.travel-content p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

/* FAQ Section */
.contact-faq-section {
  padding: 4rem 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faq-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.faq-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-card h4 {
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.faq-card h4 i {
  color: var(--accent);
  margin-top: 0.15rem;
}

.faq-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
}

.contact-cta-section .cta-content {
  text-align: center;
  color: white;
}

.contact-cta-section h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
}

.contact-cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

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

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .quick-contact-card {
    flex: 1;
    min-width: 250px;
  }

  .travel-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 100px 15px 40px;
    min-height: auto;
  }

  .contact-info-section {
    padding: 2rem 0;
    margin-top: 0;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    display: flex;
    text-align: left;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .contact-info-icon {
    margin: 0;
    width: 55px;
    height: 55px;
    flex-shrink: 0;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    flex-direction: column;
  }

  .quick-contact-card {
    min-width: auto;
  }

  .travel-info-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta-section .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* =====================================================
   SUCCESS STORIES PAGE STYLES
   ===================================================== */

/* Stories Hero Section */
.stories-hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.stories-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.stories-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stories-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(117, 22, 106, 0.92) 0%,
    rgba(227, 21, 135, 0.85) 100%
  );
}

.stories-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: white;
}

.stories-hero-content .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.stories-hero-content .breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.stories-hero-content .breadcrumb-nav a:hover {
  color: white;
}

.stories-hero-content .breadcrumb-nav i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.stories-hero-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.stories-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.stories-hero-content h1 strong {
  color: #ffd93d;
}

.stories-hero-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.stories-hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd93d;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Stories Stats Bar */
.stories-stats-bar {
  background: white;
  padding: 2rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  border-radius: 20px 20px 0 0;
}

/* Featured Stories Section */
.featured-stories-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.featured-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.featured-story-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(117, 22, 106, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.featured-story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(117, 22, 106, 0.2);
}

.featured-story-header {
  padding: 2rem 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.story-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #e31587;
}

.story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #75166a, #e31587);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.video-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: #e31587;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  border: 3px solid white;
}

.story-rating {
  display: flex;
  gap: 0.25rem;
}

.story-rating i {
  color: #ddd;
  font-size: 0.9rem;
}

.story-rating i.active {
  color: #ffd93d;
}

.featured-story-content {
  padding: 1.5rem 2rem 2rem;
  position: relative;
}

.story-quote-icon {
  position: absolute;
  top: -1.5rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e31587, #75166a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
  font-style: italic;
  padding-top: 1rem;
}

.story-meta {
  margin-bottom: 1rem;
}

.couple-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.story-details {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.story-details span {
  font-size: 0.85rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.story-details i {
  color: #e31587;
}

.story-journey {
  margin-top: 1rem;
}

.journey-badge {
  background: linear-gradient(
    135deg,
    rgba(227, 21, 135, 0.1),
    rgba(117, 22, 106, 0.1)
  );
  color: #75166a;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.story-video-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, #e31587, #75166a);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.story-video-link:hover {
  background: linear-gradient(135deg, #75166a, #e31587);
}

/* All Stories Section */
.all-stories-section {
  padding: 5rem 0;
  background: white;
}

.stories-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 2px solid #eee;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn:hover {
  border-color: #e31587;
  color: #e31587;
}

.filter-btn.active {
  background: linear-gradient(135deg, #e31587, #75166a);
  border-color: transparent;
  color: white;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.story-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(117, 22, 106, 0.15);
  border-color: rgba(227, 21, 135, 0.2);
}

.story-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.story-avatar-small {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e31587;
  flex-shrink: 0;
}

.story-avatar-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder-small {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #75166a, #e31587);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.story-card-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.story-location {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.story-location i {
  color: #e31587;
  font-size: 0.75rem;
}

.card-type-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.card-type-badge.video {
  background: linear-gradient(135deg, #e31587, #75166a);
  color: white;
}

.story-card-body {
  padding: 1.25rem;
}

.treatment-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(227, 21, 135, 0.1),
    rgba(117, 22, 106, 0.1)
  );
  color: #75166a;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.story-excerpt {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
}

.story-rating-small {
  display: flex;
  gap: 0.15rem;
}

.story-rating-small i {
  font-size: 0.75rem;
  color: #ddd;
}

.story-rating-small i.active {
  color: #ffd93d;
}

.years-badge {
  font-size: 0.8rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.years-badge i {
  color: #e31587;
}

.story-card-video-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem;
  background: #f8f9fa;
  color: #e31587;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-top: 1px solid #eee;
}

.story-card-video-btn:hover {
  background: linear-gradient(135deg, #e31587, #75166a);
  color: white;
}

.no-stories-message {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8f9fa;
  border-radius: 16px;
}

.no-stories-message i {
  font-size: 4rem;
  color: #e31587;
  margin-bottom: 1.5rem;
}

.no-stories-message h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.75rem;
}

.no-stories-message p {
  color: #666;
}

/* Trust Section */
.stories-trust-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.trust-text .section-badge.light {
  background: linear-gradient(
    135deg,
    rgba(227, 21, 135, 0.1),
    rgba(117, 22, 106, 0.1)
  );
  color: #75166a;
}

.trust-text h2 {
  font-size: 2.5rem;
  color: #333;
  margin: 1rem 0;
}

.trust-text h2 strong {
  color: #e31587;
}

.trust-text > p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.trust-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: #444;
}

.trust-features li i {
  color: #e31587;
  font-size: 1.25rem;
}

.cta-card {
  background: linear-gradient(135deg, #75166a 0%, #e31587 100%);
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  color: white;
  box-shadow: 0 20px 60px rgba(117, 22, 106, 0.3);
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.cta-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-card p {
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-card .btn-primary {
  background: white;
  color: #75166a;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.cta-card .btn-primary:hover {
  background: #ffd93d;
  transform: translateY(-2px);
}

.cta-note {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Share Story Section */
.share-story-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #75166a 0%, #e31587 100%);
  position: relative;
  overflow: hidden;
}

.share-story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.share-story-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.share-story-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.share-story-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.share-story-content h2 strong {
  color: #ffd93d;
}

.share-story-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-white {
  background: white;
  color: #75166a;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: #ffd93d;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for Success Stories */
@media (max-width: 992px) {
  .stories-hero-content h1 {
    font-size: 2.75rem;
  }

  .stories-hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-value {
    font-size: 2rem;
  }

  .featured-stories-grid {
    grid-template-columns: 1fr;
  }

  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .stories-hero-section {
    min-height: auto;
    padding: 7rem 0 4rem;
  }

  .stories-hero-content h1 {
    font-size: 2.25rem;
  }

  .stories-hero-content p {
    font-size: 1.05rem;
  }

  .stories-hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero-stat-item {
    flex: 1;
    min-width: 80px;
  }

  .stories-filter {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .share-story-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .stories-hero-content h1 {
    font-size: 1.85rem;
  }

  .hero-stat-value {
    font-size: 1.75rem;
  }

  .featured-story-card {
    margin: 0 -1rem;
    border-radius: 0;
  }

  .featured-story-header,
  .featured-story-content {
    padding: 1.25rem;
  }

  .trust-text h2 {
    font-size: 2rem;
  }

  .cta-card {
    padding: 2rem;
  }

  .share-story-content h2 {
    font-size: 1.75rem;
  }
}
