/* 
=================================
XUÂN PHẠM MAKEUP - HOMEPAGE CSS
=================================
File: homepage.css
Mục đích: Styling cho trang chủ chuyên nghiệp
✅ Triển khai đầy đủ Yêu Cầu Kỹ Thuật
*/

/* ===================================== */
/* 1. RESPONSIVE DESIGN (Mobile-first)   */
/* ===================================== */

/* CSS Variables */
:root {
  --primary-color: #e91e63;
  --primary-dark: #c2185b;
  --secondary-color: #f8bbd0;
  --accent-color: #fce4ec;
  --text-color: #333;
  --text-light: #666;
  --text-white: #fff;
  --bg-color: #fff;
  --bg-light: #f9f9f9;
  --gradient-bg: linear-gradient(135deg, #fce4ec, #f8bbd0);
  --gradient-primary: linear-gradient(135deg, #e91e63, #c2185b);
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
  --border-radius-large: 15px;
  --transition: all 0.3s ease;
  --container-max-width: 1200px;
  --container-padding: 20px;
  
  /* Responsive Breakpoints */
  --mobile-max: 767px;
  --tablet-min: 768px;
  --desktop-min: 1024px;
  --large-min: 1200px;
}

/* ===================================== */
/* SPECIAL OFFERS SECTION STYLES         */
/* ===================================== */

.special-offers-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 25%, #e17055 75%, #d63031 100%);
  position: relative;
  overflow: hidden;
}

/* Offers Content Layout */
.offers-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin: 60px 0;
  align-items: start;
}

/* Main Offer Card */
.main-offer-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.main-offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #e91e63, #ff6b9d, #ffd700, #ff6b9d, #e91e63);
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Offer Header */
.offer-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(233, 30, 99, 0.1);
}

.offer-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e91e63, #ff6b9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

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

.offer-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-color);
  margin-bottom: 8px;
  background: linear-gradient(45deg, #e91e63, #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-subtitle {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

/* Offer Description */
.offer-description {
  margin-bottom: 30px;
}

.offer-description p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
}

/* Prizes Grid */
.prizes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.prize-item {
  background: rgba(233, 30, 99, 0.05);
  border: 2px solid rgba(233, 30, 99, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.prize-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.prize-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
  border-color: var(--primary-color);
}

.prize-item:hover::before {
  animation: shimmer 0.6s ease-in-out;
  opacity: 1;
}

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

.prize-jackpot {
  background: linear-gradient(135deg, #ffd700, #ffed4a);
  border-color: #ffd700;
  color: #8b6914;
}

.prize-premium {
  background: linear-gradient(135deg, #e17055, #fab1a0);
  border-color: #e17055;
  color: #7b2d20;
}

.prize-good {
  background: linear-gradient(135deg, #00b894, #00cec9);
  border-color: #00b894;
  color: #1d4444;
}

.prize-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.prize-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.prize-description {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.prize-value {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
}

/* Special Features */
.special-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(233, 30, 99, 0.1);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.feature-item i {
  font-size: 16px;
}

/* Main CTA */
.main-cta {
  text-align: center;
}

.wheel-cta-btn {
  display: inline-block;
  position: relative;
  padding: 20px 40px;
  background: linear-gradient(135deg, #e91e63, #ff6b9d, #ffd700);
  background-size: 200% 200%;
  border: none;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
  animation: gradientBG 3s ease-in-out infinite;
}

@keyframes gradientBG {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.wheel-cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 50px rgba(233, 30, 99, 0.5);
  animation-duration: 1s;
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.wheel-cta-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.wheel-cta-btn:hover .btn-glow {
  left: 100%;
}

.cta-note {
  margin-top: 15px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* Side Content */
.side-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Wheel Preview */
.wheel-preview {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.wheel-visual {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
}

.wheel-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.wheel-section {
  position: absolute;
  width: 50%;
  height: 50%;
  transform-origin: 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.section-1 {
  background: #e91e63;
  transform: rotate(0deg);
}

.section-2 {
  background: #ff6b9d;
  transform: rotate(60deg);
}

.section-3 {
  background: #ffd700;
  transform: rotate(120deg);
  color: #8b6914;
}

.section-4 {
  background: #00b894;
  transform: rotate(180deg);
}

.section-5 {
  background: #e17055;
  transform: rotate(240deg);
}

.section-6 {
  background: #6c5ce7;
  transform: rotate(300deg);
}

.wheel-pointer {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-color);
  font-size: 24px;
  z-index: 10;
}

.preview-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.preview-text p {
  font-size: 14px;
  color: var(--text-light);
}

/* Success Stories */
.success-stories {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stories-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
  text-align: center;
}

.story-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.story-item:hover {
  background: rgba(233, 30, 99, 0.05);
  transform: translateX(5px);
}

.story-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.story-content {
  flex: 1;
}

.story-text {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 5px;
}

.story-time {
  font-size: 12px;
  color: var(--text-light);
}

.story-prize {
  color: #ffd700;
  font-size: 18px;
  animation: bounce 2s ease-in-out infinite;
}

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

/* Terms Notice */
.terms-notice {
  background: rgba(233, 30, 99, 0.05);
  border-radius: 15px;
  padding: 20px;
  border-left: 4px solid var(--primary-color);
}

.terms-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.terms-list {
  list-style: none;
  padding: 0;
}

.terms-list li {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.terms-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* Bottom Statistics */
.offers-statistics {
  margin: 60px 0;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.offers-statistics .stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: rgba(233, 30, 99, 0.05);
  transition: all 0.3s ease;
}

.offers-statistics .stat-item:hover {
  transform: translateY(-5px);
  background: rgba(233, 30, 99, 0.1);
}

.offers-statistics .stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin: 0 auto 15px;
}

.offers-statistics .stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
}

.offers-statistics .stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
}

/* Alternative CTAs */
.alternative-ctas {
  text-align: center;
  margin-top: 40px;
}

.alternative-ctas .cta-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 30px;
}

.alternative-ctas .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Background Elements */
.offers-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-pattern-offers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.floating-gifts {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-gifts i {
  position: absolute;
  color: rgba(255, 255, 255, 0.6);
  animation: float 6s ease-in-out infinite;
}

.gift-1 {
  top: 10%;
  left: 5%;
  font-size: 24px;
  animation-delay: -1s;
}

.star-offer-1 {
  top: 20%;
  right: 10%;
  font-size: 18px;
  color: #ffd700;
  animation-delay: -3s;
}

.gem-1 {
  bottom: 30%;
  left: 15%;
  font-size: 20px;
  color: #00cec9;
  animation-delay: -5s;
}

.crown-1 {
  top: 30%;
  left: 80%;
  font-size: 22px;
  color: #ffd700;
  animation-delay: -2s;
}

.coins-1 {
  bottom: 20%;
  right: 20%;
  font-size: 16px;
  color: #fdcb6e;
  animation-delay: -4s;
}

.trophy-1 {
  top: 60%;
  left: 10%;
  font-size: 18px;
  color: #e17055;
  animation-delay: -6s;
}

.sparkle-offer-1 {
  top: 15%;
  left: 60%;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  animation-delay: -2.5s;
}

.sparkle-offer-2 {
  bottom: 40%;
  right: 5%;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  animation-delay: -4.5s;
}

/* ===================================== */
/* RESPONSIVE DESIGN - SPECIAL OFFERS    */
/* ===================================== */

/* Tablet Styles */
@media (max-width: 1024px) {
  .offers-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .side-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .special-offers-section {
    padding: 60px 0;
  }
  
  .main-offer-card {
    padding: 25px;
  }
  
  .offer-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .offer-title {
    font-size: 24px;
  }
  
  .prizes-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .special-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .wheel-cta-btn {
    padding: 16px 30px;
    font-size: 16px;
  }
  
  .side-content {
    display: flex;
    flex-direction: column;
  }
  
  .wheel-visual {
    width: 150px;
    height: 150px;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .alternative-ctas .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .main-offer-card {
    padding: 20px;
  }
  
  .offer-title {
    font-size: 20px;
  }
  
  .wheel-cta-btn {
    padding: 14px 25px;
    font-size: 14px;
  }
  
  .btn-content {
    gap: 10px;
  }
  
  .alternative-ctas .cta-title {
    font-size: 20px;
  }
}

/* Reduced Motion for Special Offers */
@media (prefers-reduced-motion: reduce) {
  .offer-icon,
  .wheel-circle,
  .story-prize,
  .floating-gifts i,
  .bg-pattern-offers,
  .wheel-cta-btn,
  .prize-item::before {
    animation: none;
  }
  
  .wheel-cta-btn:hover {
    transform: none;
  }
  
  .prize-item:hover {
    transform: none;
  }
}

/* Additional Animation Classes for JavaScript */
.wheel-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.cta-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: cta-ripple-animation 0.8s ease-out;
  pointer-events: none;
}

@keyframes cta-ripple-animation {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.story-update-pulse {
  animation: story-pulse 1s ease-in-out;
}

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

.story-animate-in {
  animation: story-slide-in 0.6s ease-out;
}

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

.prize-animate-in {
  animation: prize-entrance 0.8s ease-out;
}

@keyframes prize-entrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cta-focused {
  outline: 3px solid rgba(233, 30, 99, 0.5);
  outline-offset: 3px;
}

.counting {
  color: var(--primary-color);
  animation: count-glow 0.3s ease-in-out;
}

@keyframes count-glow {
  0%, 100% { text-shadow: none; }
  50% { text-shadow: 0 0 10px var(--primary-color); }
}

.count-complete {
  animation: count-complete-flash 0.5s ease-in-out;
}

@keyframes count-complete-flash {
  0%, 100% { background: transparent; }
  50% { background: rgba(233, 30, 99, 0.1); }
}

/* ===================================== */
/* 2. RESET & BASE STYLES               */
/* ===================================== */

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

/* ===================================== */
/* 3. SERVICES SECTION STYLING           */
/* ===================================== */

/* Services Section */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fce4ec 100%);
  position: relative;
  overflow: hidden;
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  box-shadow: var(--shadow-light);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Service Card */
.service-card {
  position: relative;
  height: 450px;
  perspective: 1000px;
  cursor: pointer;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
  transform: rotateY(180deg);
}

/* Card Front & Back */
.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: var(--bg-color);
  border-radius: var(--border-radius-large);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.service-card-back {
  transform: rotateY(180deg);
  background: var(--gradient-primary);
  color: var(--text-white);
}

/* Service Icon */
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-white);
  box-shadow: var(--shadow-light);
}

/* Service Content */
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.service-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Service Features */
.service-features {
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.feature-item i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 12px;
}

/* Service Price */
.service-price {
  text-align: center;
  padding: 15px;
  background: var(--accent-color);
  border-radius: var(--border-radius);
  margin-top: auto;
}

.price-label {
  font-size: 14px;
  color: var(--text-light);
  display: block;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.price-currency {
  font-size: 14px;
  color: var(--text-light);
}

/* Card Back Content */
.back-content h4 {
  color: var(--text-white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.pricing-list,
.event-types,
.occasion-list,
.course-modules {
  margin-bottom: 25px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.event-type,
.occasion-item,
.module-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--text-white);
}

.event-type i,
.occasion-item i,
.module-item i {
  margin-right: 10px;
  opacity: 0.8;
}

/* Back CTA */
.back-cta {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  justify-content: center;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

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

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

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

.btn-small {
  padding: 8px 16px;
  font-size: 12px;
  flex: 1;
}

.btn-large {
  padding: 15px 30px;
  font-size: 16px;
}

/* Service Badges */
.service-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  box-shadow: var(--shadow-light);
}

.popular-badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.new-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Services CTA */
.services-cta {
  text-align: center;
  margin-top: 60px;
}

.cta-content {
  margin-bottom: 40px;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.cta-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Special Offer Link */
.services-special-offer {
  margin-top: 40px;
}

.special-wheel-link {
  display: block;
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  border-radius: var(--border-radius-large);
  padding: 25px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
}

.special-wheel-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.wheel-link-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.wheel-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-white);
  flex-shrink: 0;
}

.wheel-text {
  flex-grow: 1;
  text-align: left;
}

.wheel-title {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.wheel-subtitle {
  display: block;
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 5px;
}

.wheel-features {
  display: block;
  font-size: 14px;
  color: var(--text-light);
}

.wheel-arrow {
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Background Elements */
.services-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bg-pattern-services {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23e91e63" opacity="0.1"/></svg>') repeat;
  background-size: 50px 50px;
}

.floating-makeup-services {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.floating-item {
  position: absolute;
  color: var(--primary-color);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-item.item-1 {
  top: 10%;
  left: 5%;
  font-size: 2rem;
  animation-delay: 0s;
}

.floating-item.item-2 {
  top: 20%;
  right: 10%;
  font-size: 1.5rem;
  animation-delay: 1s;
}

.floating-item.item-3 {
  bottom: 30%;
  left: 8%;
  font-size: 1.8rem;
  animation-delay: 2s;
}

.floating-item.item-4 {
  bottom: 20%;
  right: 5%;
  font-size: 2.2rem;
  animation-delay: 3s;
}

.floating-item.item-5 {
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  animation-delay: 4s;
}

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

/* ===================================== */
/* 4. RESPONSIVE DESIGN                  */
/* ===================================== */

/* Tablet */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    height: 400px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .wheel-link-content {
    flex-direction: column;
    text-align: center;
  }
  
  .wheel-text {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .services-section {
    padding: 40px 0;
  }
  
  .service-card {
    height: 350px;
  }
  
  .service-card-front,
  .service-card-back {
    padding: 20px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .service-title {
    font-size: 1.3rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .btn-large {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Disable hover on mobile */
@media (hover: none) {
  .service-card:hover .service-card-inner {
    transform: none;
  }
  
  .service-card {
    height: auto;
  }
  
  .service-card-back {
    position: static;
    transform: none;
    margin-top: 20px;
    background: var(--primary-color);
  }
}
  box-sizing: border-box;
}

/* Base Typography */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 80px; /* Space for fixed header */
}

/* Remove body padding when menu is open on mobile */
body.menu-open {
  overflow: hidden;
}

/* ===================================== */
/* 3. ACCESSIBILITY (WCAG 2.1)          */
/* ===================================== */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--primary-color);
  color: var(--text-white);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.skip-link:focus {
  top: 6px;
  outline: 2px solid var(--primary-dark);
  outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* Focus Styles */
:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --text-color: #000;
    --bg-color: #fff;
    --primary-color: #000080;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================================== */
/* 4. TYPOGRAPHY SYSTEM                  */
/* ===================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  line-height: 1.7;
}

/* ===================================== */
/* 5. LAYOUT SYSTEM                      */
/* ===================================== */

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.col {
  flex: 1;
  padding: 0 10px;
}

.col-12 { flex: 0 0 100%; }
.col-6 { flex: 0 0 50%; }
.col-4 { flex: 0 0 33.333%; }
.col-3 { flex: 0 0 25%; }

/* ===================================== */
/* 6. BUTTON SYSTEM                      */
/* ===================================== */

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius-large);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px; /* Accessibility: minimum touch target */
  min-width: 44px;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn:active {
  transform: translateY(0);
}

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

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

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
}

/* ===================================== */
/* 7. RESPONSIVE BREAKPOINTS             */
/* ===================================== */

/* Mobile First (Base: 320px+) */
/* Styles above are mobile-first */

/* Small Mobile (480px+) */
@media (min-width: 480px) {
  :root {
    --container-padding: 30px;
  }
  
  .container {
    padding: 0 var(--container-padding);
  }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
  :root {
    --container-padding: 40px;
  }
  
  .col-md-6 { flex: 0 0 50%; }
  .col-md-4 { flex: 0 0 33.333%; }
  .col-md-3 { flex: 0 0 25%; }
  
  /* Show desktop navigation */
  .nav-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0 !important;
    box-shadow: none !important;
    overflow-y: visible !important;
    display: flex !important;
  }
  
  .hamburger {
    display: none;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  :root {
    --container-padding: 50px;
  }
  
  .col-lg-6 { flex: 0 0 50%; }
  .col-lg-4 { flex: 0 0 33.333%; }
  .col-lg-3 { flex: 0 0 25%; }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/* ===================================== */
/* 8. UTILITY CLASSES                    */
/* ===================================== */

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex utilities */
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-column { flex-direction: column; }

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing */
.m-0 { margin: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.p-0 { padding: 0; }
.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }

/* ===================================== */
/* 9. ANIMATION SYSTEM                   */
/* ===================================== */

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

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

.slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}

/* ===================================== */
/* 10. CROSS-BROWSER COMPATIBILITY       */
/* ===================================== */

/* Autoprefixer will handle vendor prefixes */
/* Manual fallbacks for older browsers */

/* Flexbox fallbacks */
.flexbox-fallback {
  display: table;
  width: 100%;
}

.flexbox-fallback > * {
  display: table-cell;
  vertical-align: middle;
}

/* Grid fallbacks */
@supports not (display: grid) {
  .grid-fallback {
    display: flex;
    flex-wrap: wrap;
  }
  
  .grid-fallback > * {
    flex: 1;
    min-width: 250px;
  }
}

/* CSS Custom Properties fallbacks */
.no-custom-properties .btn-primary {
  background: #e91e63;
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

/* ===================================== */
/* 11. PRINT STYLES                      */
/* ===================================== */

@media print {
  *, *::before, *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  a, a:visited {
    text-decoration: underline;
  }
  
  .no-print {
    display: none !important;
  }
  
  .page-break {
    page-break-before: always;
  }
}

/* ===================================== */
/* 12. HEADER SECTION STYLES             */
/* ===================================== */

/* Main Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-medium);
  border-bottom-color: rgba(233, 30, 99, 0.2);
}

.main-header.hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

/* Navbar */
.navbar {
  padding: 0.75rem 0;
  transition: var(--transition);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--container-padding);
  position: relative;
}

/* Logo Container */
.logo-container {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
  gap: 12px;
}

.logo-link:hover {
  transform: translateY(-1px);
}

.logo-img {
  width: auto;
  height: 50px;
  max-width: 120px;
  object-fit: contain;
  transition: var(--transition);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.logo-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: -2px;
}

/* Desktop Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
  background: rgba(233, 30, 99, 0.05);
  transform: translateY(-1px);
}

.nav-link.active {
  color: var(--primary-color);
  background: rgba(233, 30, 99, 0.1);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

/* Special Menu Items */
.nav-special .nav-wheel {
  background: var(--gradient-primary);
  color: var(--text-white);
  font-weight: 600;
  border-radius: var(--border-radius-large);
  animation: pulse-glow 2s infinite;
}

.nav-wheel:hover {
  color: var(--text-white) !important;
  background: linear-gradient(135deg, #c2185b, #ad1457) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(233, 30, 99, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(233, 30, 99, 0.5);
  }
}

/* Image Glow Border Animation - Only Around Image */
@keyframes image-glow {
  0%, 100% {
    border-color: rgba(233, 30, 99, 0.3);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  }
  50% {
    border-color: rgba(233, 30, 99, 0.8);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1)) drop-shadow(0 0 12px rgba(233, 30, 99, 0.4));
  }
}

/* CTA Navigation Button */
.nav-cta .cta-nav {
  background: linear-gradient(135deg, #4caf50, #388e3c);
  color: var(--text-white);
  font-weight: 600;
  border-radius: var(--border-radius-large);
  padding: 10px 20px;
}

.cta-nav:hover {
  color: var(--text-white) !important;
  background: linear-gradient(135deg, #388e3c, #2e7d32) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Icons in Navigation */
.nav-link i {
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 4px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.hamburger:hover {
  background: rgba(233, 30, 99, 0.1);
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(2px);
}

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

/* ===================================== */
/* 13. RESPONSIVE HEADER STYLES          */
/* ===================================== */

/* Mobile Styles (up to 767px) */
@media (max-width: 767px) {
  .main-header {
    background: rgba(255, 255, 255, 0.98);
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .nav-container {
    padding: 0 15px;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .logo-name {
    font-size: 1.25rem;
  }
  
  .logo-tagline {
    font-size: 0.6rem;
  }
  
  /* Hide desktop menu, show hamburger */
  .nav-menu {
    position: fixed !important;
    top: 70px !important;
    left: -100% !important;
    width: 100% !important;
    height: calc(100vh - 70px) !important;
    background: var(--bg-color) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 20px 0 !important;
    transition: left 0.3s ease !important;
    box-shadow: var(--shadow-medium) !important;
    overflow-y: auto !important;
    display: flex !important;
  }
  
  .nav-menu.active {
    left: 0 !important;
  }
  
  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
  }
  
  .nav-link {
    padding: 20px 30px;
    font-size: 1.1rem;
    justify-content: flex-start;
    border-radius: 0;
  }
  
  .nav-link i {
    width: 24px;
    font-size: 1.2rem;
  }
  
  .nav-special .nav-wheel,
  .nav-cta .cta-nav {
    margin: 10px 30px;
    border-radius: var(--border-radius-large);
    text-align: center;
    justify-content: center;
  }
  
  .hamburger {
    display: flex !important;
  }
}

/* Tablet Styles (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-container {
    padding: 0 30px;
  }
  
  .nav-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .logo-name {
    font-size: 1.4rem;
  }
  
  .nav-special .nav-wheel,
  .nav-cta .cta-nav {
    padding: 8px 16px;
  }
}

/* Desktop Styles (1024px+) */
@media (min-width: 1024px) {
  .nav-container {
    padding: 0 40px;
  }
  
  .nav-menu {
    gap: 1rem;
  }
  
  .nav-link {
    padding: 12px 18px;
  }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .nav-container {
    padding: 0 50px;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
}

/* ===================================== */
/* 14. HEADER ACCESSIBILITY ENHANCEMENTS */
/* ===================================== */

/* Focus States */
.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  background: rgba(233, 30, 99, 0.1);
}

.hamburger:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  background: rgba(233, 30, 99, 0.1);
}

.logo-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: var(--border-radius);
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .main-header {
    background: #fff;
    border-bottom: 2px solid #000;
  }
  
  .nav-link {
    color: #000;
  }
  
  .nav-link:hover,
  .nav-link.active {
    background: #000;
    color: #fff;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .nav-link,
  .hamburger,
  .logo-link,
  .hamburger-line {
    transition: none;
  }
  
  .nav-wheel {
    animation: none;
  }
}

/* ===================================== */
/* 15. DEVELOPMENT NOTICE STYLES         */
/* ===================================== */

.development-notice {
  padding: 60px 20px;
  text-align: center;
  background: var(--gradient-bg);
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.development-content {
  max-width: 900px;
  margin: 0 auto;
}

.development-content h1 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.development-status {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 500;
}

.next-step {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.next-step p {
  margin: 0;
  color: var(--text-color);
  font-size: 1rem;
}

.development-notice img {
  width: clamp(100px, 20vw, 150px);
  height: auto;
  margin-bottom: 30px;
  border-radius: var(--border-radius);
}

.development-notice h1 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.development-notice .feature-list {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.development-notice .feature-list h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.development-notice .feature-list ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.development-notice .feature-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.development-notice .feature-list li:last-child {
  border-bottom: none;
}

.development-notice .action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.development-notice .action-buttons a {
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  min-width: 200px;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.development-notice .contact-info {
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
}

.development-notice .contact-info p {
  margin: 0;
  color: var(--text-light);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
}

/* ===================================== */
/* 13. RESPONSIVE IMAGES                 */
/* ===================================== */

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

/* Responsive image containers */
.img-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.img-responsive {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===================================== */
/* 14. FORM STYLES                       */
/* ===================================== */

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-color);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

/* ===================================== */
/* 15. LOADING STATES                    */
/* ===================================== */

.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===================================== */
/* 16. ABOUT SECTION STYLES              */
/* ===================================== */

/* About Section Layout */
.about-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 600px;
}

/* Section Header */
.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: pulse-glow 2s ease-in-out infinite;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-color);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-light);
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 500;
}

/* About Description */
.about-description {
  margin-bottom: 40px;
}

.about-intro {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-color);
}

.about-mission {
  font-size: clamp(0.95rem, 2.3vw, 1.075rem);
  line-height: 1.7;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(233, 30, 99, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-style: italic;
}

.about-philosophy {
  font-size: clamp(0.95rem, 2.3vw, 1.075rem);
  line-height: 1.7;
  color: var(--text-color);
}

/* Statistics Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.stat-card {
  background: var(--bg-color);
  padding: 25px 20px;
  border-radius: var(--border-radius-large);
  text-align: center;
  box-shadow: var(--shadow-light);
  border: 1px solid rgba(233, 30, 99, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(233, 30, 99, 0.2);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--text-white);
  font-size: 1.25rem;
}

.stat-number {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  display: block;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.stat-description {
  font-size: clamp(0.75rem, 1.8vw, 0.85rem);
  color: var(--text-light);
  line-height: 1.4;
}

/* USP Section */
.usp-section {
  margin-bottom: 40px;
}

.usp-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--text-color);
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.usp-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  border: 1px solid rgba(233, 30, 99, 0.1);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.usp-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: var(--shadow-light);
  border-color: rgba(233, 30, 99, 0.2);
}

.usp-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.usp-content h4 {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: var(--text-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.usp-content p {
  font-size: clamp(0.8rem, 1.9vw, 0.9rem);
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* About CTA */
.about-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about-cta .btn {
  flex: 1;
  min-width: 200px;
}

/* About Image Container */
.about-image {
  position: relative;
}

.about-image-container {
  position: relative;
  height: 500px;
  width: 100%;
}

.main-image-wrapper {
  position: relative;
  width: 80%;
  height: 80%;
  margin: 0 auto;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  transform: rotate(3deg);
  transition: var(--transition);
}

.main-image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-picture {
  width: 100%;
  height: 100%;
  display: block;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

/* ===================================== */
/* CERTIFICATE SECTION STYLING          */
/* ===================================== */

/* Certificate Container */
.about-certificate {
  /* Animation removed for cleaner display */
}

/* Certificate Frame with Gradient Background */
.about-certificate-frame {
  transition: var(--transition);
  display: block;
  max-width: 100%;
  width: fit-content;
  margin: 0 auto;
}

.about-certificate-frame:hover {
  transform: translateY(-3px);
}

/* Certificate Image Centering Fix + Styling */
.about-certificate-img {
  display: block;
  margin: 0 auto;
  border-radius: var(--border-radius);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: var(--transition);
  max-width: 100%;
  height: auto;
  width: 100%;
  border: 2px solid rgba(233, 30, 99, 0.3);
  animation: image-glow 3s ease-in-out infinite;
}

.about-certificate-img:hover {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 16px rgba(233, 30, 99, 0.6));
  border-color: rgba(233, 30, 99, 0.9);
  transform: scale(1.02);
}

/* Image Overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(233, 30, 99, 0.3));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-wrapper:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: var(--text-white);
}

.certification-badge {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

/* Decorative Shapes */
.about-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.decoration-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  top: 10%;
  left: -20%;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--secondary-color);
  top: 60%;
  right: -30%;
  animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  bottom: 20%;
  left: 10%;
  animation: float 10s ease-in-out infinite;
}

/* Floating Makeup Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-makeup {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1rem;
  opacity: 0.8;
}

.makeup-1 {
  top: 15%;
  right: 10%;
  animation: makeup-float-1 4s ease-in-out infinite;
}

.makeup-2 {
  top: 45%;
  left: 5%;
  animation: makeup-float-2 5s ease-in-out infinite;
}

.makeup-3 {
  bottom: 25%;
  right: 20%;
  animation: makeup-float-3 6s ease-in-out infinite;
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-medium);
  animation: badge-pulse 2s ease-in-out infinite;
}

.badge-content {
  color: var(--text-white);
}

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

.badge-text {
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 2px;
}

/* Social Proof */
.social-proof {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 15px;
}

.proof-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.proof-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.proof-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.proof-item:first-child .proof-icon {
  background: #1877F2;
  color: white;
}

.proof-item:last-child .proof-icon {
  background: #000000;
  color: white;
}

.proof-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.proof-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-color);
}

.proof-label {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* About Background Elements */
.about-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-pattern-about {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(248, 187, 208, 0.05) 0%, transparent 50%);
}

.floating-hearts-about {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.heart-about-1, .heart-about-2, .sparkle-about-1, .sparkle-about-2 {
  position: absolute;
  color: rgba(233, 30, 99, 0.1);
  font-size: 20px;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.heart-about-1 {
  top: 20%;
  left: 10%;
  animation: heart-float-about 8s infinite;
}

.heart-about-2 {
  top: 70%;
  right: 15%;
  animation: heart-float-about 10s infinite reverse;
}

.sparkle-about-1 {
  top: 40%;
  left: 5%;
  animation: sparkle-about 6s infinite;
}

.sparkle-about-2 {
  top: 80%;
  right: 10%;
  animation: sparkle-about 7s infinite reverse;
}

/* ===================================== */
/* 17. ABOUT SECTION ANIMATIONS          */
/* ===================================== */

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

@keyframes makeup-float-1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
  }
}

@keyframes makeup-float-2 {
  0%, 100% {
    transform: translateX(0px) rotate(0deg);
  }
  50% {
    transform: translateX(-10px) rotate(-180deg);
  }
}

@keyframes makeup-float-3 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-10px) translateX(10px);
  }
}

@keyframes badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: var(--shadow-medium);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.3);
  }
}

@keyframes heart-float-about {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  25% {
    opacity: 0.2;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.15;
  }
  75% {
    opacity: 0.05;
  }
}

@keyframes sparkle-about {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.1;
  }
  25% {
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.2;
  }
  75% {
    opacity: 0.1;
  }
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number.animate {
  animation: countUp 0.6s ease forwards;
}

/* ===================================== */
/* 18. ABOUT SECTION RESPONSIVE          */
/* ===================================== */

/* Mobile Styles (up to 767px) */
@media (max-width: 767px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-image {
    order: 1;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .usp-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .about-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .about-cta .btn {
    width: 100%;
    min-width: auto;
  }
  
  .about-image-container {
    height: 400px;
  }
  
  .main-image-wrapper {
    width: 90%;
    height: 85%;
    transform: rotate(1deg);
  }
  
  /* Certificate responsive on mobile */
  .about-certificate {
    margin-bottom: 20px;
  }
  
  .about-certificate-frame {
    max-width: 100%;
    width: 100%;
  }
  
  .about-certificate-img {
    max-width: 280px;
    width: 100%;
  }
  
  .experience-badge {
    width: 60px;
    height: 60px;
    top: 15px;
    right: 15px;
  }
  
  .badge-number {
    font-size: 1rem;
  }
  
  .badge-text {
    font-size: 0.5rem;
  }
  
  .social-proof {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }
  
  .proof-item {
    padding: 8px 12px;
  }
}

/* Tablet Styles (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-content {
    gap: 60px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .about-cta {
    gap: 15px;
  }
  
  .about-image-container {
    height: 450px;
  }
  
  /* Certificate responsive on tablet */
  .about-certificate-frame {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-certificate-img {
    max-width: 350px;
  }
}

/* Desktop Styles (1024px+) */
@media (min-width: 1024px) {
  .about-content {
    gap: 100px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  /* Certificate responsive on desktop */
  .about-certificate-frame {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .about-certificate-img {
    max-width: 400px;
  }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .about-section {
    padding: 120px 0;
  }
  
  .about-content {
    gap: 120px;
  }
}

/* ===================================== */
/* 19. ABOUT SECTION ACCESSIBILITY       */
/* ===================================== */

/* Focus States */
.stat-card:focus-within {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.usp-item:focus-within {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .about-section {
    background: #fff;
  }
  
  .stat-card,
  .usp-item {
    border: 2px solid #000;
  }
  
  .section-badge {
    background: #000;
    color: #fff;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .stat-card,
  .usp-item,
  .main-image-wrapper,
  .floating-makeup,
  .decoration-shape {
    transition: none;
    animation: none;
  }
  
  .experience-badge {
    animation: none;
  }
}

/* ===================================== */
/* 20. PORTFOLIO SECTION                */
/* ===================================== */

.portfolio-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.portfolio-section .container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Portfolio Grid (3x2 Layout) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 60px 0;
  perspective: 1000px;
}

/* Portfolio Item */
.portfolio-item {
  position: relative;
  border-radius: var(--border-radius-large);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  cursor: pointer;
  transform-style: preserve-3d;
}

.portfolio-item:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: var(--shadow-heavy);
}

/* Portfolio Image Container */
.portfolio-image-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: var(--border-radius-large);
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
  border-radius: var(--border-radius);
}

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

/* Portfolio Overlay */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(233, 30, 99, 0.9) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

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

.overlay-content {
  color: var(--text-white);
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.portfolio-item:hover .overlay-content {
  transform: translateY(0);
}

.portfolio-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.portfolio-description {
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Portfolio Tags */
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.portfolio-tags .tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Portfolio Actions */
.portfolio-actions {
  display: flex;
  gap: 10px;
}

.btn-lightbox,
.btn-view-more {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

.btn-lightbox:hover,
.btn-view-more:hover {
  background: var(--text-white);
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Category Badge */
.category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: var(--text-white);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: var(--shadow-medium);
  z-index: 2;
}

.category-badge i {
  font-size: 0.9rem;
}

/* Different category colors */
.bridal-badge {
  background: linear-gradient(135deg, #e91e63, #ad1457);
}

.event-badge {
  background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.personal-badge {
  background: linear-gradient(135deg, #2196f3, #1565c0);
}

.transformation-badge {
  background: linear-gradient(135deg, #ff9800, #e65100);
}

.artistic-badge {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.course-badge {
  background: linear-gradient(135deg, #f44336, #c62828);
}

/* Before/After Special Layout */
.before-after-container {
  display: flex;
  height: 100%;
  position: relative;
}

.before-image-wrapper,
.after-image-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.before-img,
.after-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-label,
.after-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-white);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.transformation-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  box-shadow: var(--shadow-medium);
  z-index: 3;
}

.transformation-divider i {
  font-size: 1.1rem;
}

/* Portfolio Filter */
.portfolio-filter {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.filter-buttons {
  display: flex;
  gap: 15px;
  background: var(--text-white);
  padding: 8px;
  border-radius: 50px;
  box-shadow: var(--shadow-light);
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: transparent;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-2px);
}

.filter-btn i {
  font-size: 0.9rem;
}

/* Portfolio CTA Section */
.portfolio-cta {
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  border-radius: var(--border-radius-large);
  padding: 50px;
  margin-top: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.portfolio-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(233, 30, 99, 0.1) 0%,
    transparent 50%
  );
  animation: rotate 20s linear infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.portfolio-cta .cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.portfolio-cta .cta-description {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* CTA Stats */
.cta-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cta-stats .stat-item {
  text-align: center;
}

.cta-stats .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Montserrat', sans-serif;
}

.cta-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.cta-stats .stat-divider {
  width: 2px;
  height: 40px;
  background: var(--primary-color);
  opacity: 0.3;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Featured Badge */
.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--text-white);
  padding: 15px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-color);
}

.badge-subtitle {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  background: var(--text-white);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
  display: flex;
  flex-direction: column;
}

.lightbox-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.lightbox-info {
  padding: 25px;
  text-align: center;
}

.lightbox-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.lightbox-description {
  color: var(--text-light);
  font-size: 1rem;
}

/* Lightbox Navigation */
.lightbox-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 50px;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--text-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  pointer-events: auto;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

/* Portfolio Background Elements */
.portfolio-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.bg-pattern-portfolio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(248, 187, 208, 0.05) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

/* Floating Camera Elements */
.floating-camera-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-camera {
  position: absolute;
  color: rgba(233, 30, 99, 0.1);
  font-size: 1.5rem;
  animation: floatCamera 8s ease-in-out infinite;
}

.camera-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.camera-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.camera-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.floating-sparkles {
  position: absolute;
  color: rgba(248, 187, 208, 0.3);
  font-size: 1rem;
  animation: sparkle 6s ease-in-out infinite;
}

.sparkle-portfolio-1 {
  top: 25%;
  right: 20%;
  animation-delay: 1s;
}

.sparkle-portfolio-2 {
  bottom: 30%;
  right: 10%;
  animation-delay: 3s;
}

/* ===================================== */
/* 21. PORTFOLIO ANIMATIONS             */
/* ===================================== */

@keyframes floatCamera {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
  75% {
    transform: translateY(-25px) rotate(7deg);
  }
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2) rotate(180deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Portfolio Item Fade In Animation */
.portfolio-item {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.6s ease forwards;
}

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

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

/* ===================================== */
/* 22. PORTFOLIO RESPONSIVE DESIGN      */
/* ===================================== */

/* Tablet Styles */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .portfolio-cta {
    padding: 40px 30px;
  }
  
  .featured-badge {
    position: static;
    margin: 20px auto 0;
    max-width: none;
  }
  
  .portfolio-cta .cta-title {
    font-size: 1.8rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 0;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
  }
  
  .portfolio-image-container {
    height: 250px;
  }
  
  .filter-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }
  
  .filter-btn {
    justify-content: center;
    padding: 15px 20px;
  }
  
  .portfolio-cta {
    padding: 30px 20px;
    margin-top: 50px;
  }
  
  .portfolio-cta .cta-title {
    font-size: 1.6rem;
  }
  
  .cta-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-stats .stat-divider {
    display: none;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .lightbox-container {
    padding: 30px 15px;
  }
  
  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .lightbox-navigation {
    padding: 0 20px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
  }
  
  /* Before/After Mobile Optimization */
  .before-after-container {
    flex-direction: column;
  }
  
  .transformation-divider {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .portfolio-image-container {
    height: 200px;
  }
  
  .portfolio-overlay {
    padding: 15px;
  }
  
  .portfolio-title {
    font-size: 1.1rem;
  }
  
  .portfolio-description {
    font-size: 0.8rem;
  }
  
  .portfolio-tags .tag {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
  
  .btn-lightbox,
  .btn-view-more {
    width: 35px;
    height: 35px;
  }
  
  .category-badge {
    padding: 6px 10px;
    font-size: 0.7rem;
  }
}

/* ===================================== */
/* 23. PORTFOLIO ACCESSIBILITY          */
/* ===================================== */

/* Focus States */
.portfolio-item:focus-within {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.btn-lightbox:focus,
.btn-view-more:focus,
.filter-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus {
  outline: 2px solid var(--text-white);
  outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .portfolio-item {
    border: 2px solid #000;
  }
  
  .category-badge {
    background: #000;
    color: #fff;
  }
  
  .portfolio-overlay {
    background: rgba(0, 0, 0, 0.9);
  }
}

/* Reduced Motion for Portfolio */
@media (prefers-reduced-motion: reduce) {
  .portfolio-item,
  .portfolio-img,
  .overlay-content,
  .floating-camera,
  .floating-sparkles,
  .bg-pattern-portfolio {
    transition: none;
    animation: none;
  }
  
  .portfolio-item:hover {
    transform: none;
  }
  
  .portfolio-item:hover .portfolio-img {
    transform: none;
  }
}

/* ===================================== */
/* TESTIMONIALS SECTION STYLES           */
/* ===================================== */

.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, #fce4ec 50%, #f8bbd0 100%);
  position: relative;
  overflow: hidden;
}

/* Testimonials Carousel Container */
.testimonials-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.testimonials-carousel {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 500px;
}

/* Testimonial Slides */
.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.testimonial-slide.prev {
  transform: translateX(-50px);
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: var(--border-radius-large);
  padding: 40px;
  box-shadow: var(--shadow-heavy);
  position: relative;
  margin: 0 auto;
  max-width: 700px;
  border: 1px solid rgba(233, 30, 99, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(233, 30, 99, 0.15);
}

/* Quote Icon */
.quote-icon {
  position: absolute;
  top: -15px;
  left: 40px;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: var(--shadow-medium);
}

/* Star Rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  justify-content: center;
}

.star-rating i {
  color: #ffd700;
  font-size: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.rating-text {
  margin-left: 10px;
  font-weight: 600;
  color: var(--text-light);
  font-size: 14px;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-color);
  font-style: italic;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 60px;
  color: var(--primary-color);
  font-family: serif;
  position: absolute;
  top: -10px;
  opacity: 0.3;
}

.testimonial-text::before {
  left: -10px;
}

.testimonial-text::after {
  right: -10px;
  transform: scaleX(-1);
}

/* Customer Info */
.customer-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(233, 30, 99, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

.customer-avatar {
  position: relative;
  flex-shrink: 0;
}

.avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: var(--shadow-medium);
}

.avatar-verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.avatar-verified i {
  color: white;
  font-size: 10px;
}

.customer-details {
  flex: 1;
}

.customer-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 5px;
}

.customer-role {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.wedding-date,
.event-date,
.course-date,
.service-date {
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 600;
}

/* Service Used Badge */
.service-used-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-light);
}

/* Carousel Navigation */
.carousel-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.carousel-btn {
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  box-shadow: var(--shadow-medium);
}

.carousel-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-prev {
  left: -25px;
}

.carousel-next {
  right: -25px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* Testimonials Statistics */
.testimonials-stats {
  margin: 60px 0;
  background: white;
  border-radius: var(--border-radius-large);
  padding: 40px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.testimonials-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.testimonials-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.testimonials-stats .stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.testimonials-stats .stat-content {
  flex: 1;
}

.testimonials-stats .stat-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonials-stats .stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
}

/* Testimonials CTA */
.testimonials-cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  background: white;
  border-radius: var(--border-radius-large);
  padding: 40px;
  box-shadow: var(--shadow-heavy);
  border: 1px solid rgba(233, 30, 99, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonials-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.cta-content {
  text-align: left;
}

.testimonials-cta .cta-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.testimonials-cta .cta-description {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
}

.testimonials-cta .cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

/* Social Proof Badges */
.social-proof-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.proof-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(233, 30, 99, 0.1);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
}

.proof-badge i {
  font-size: 14px;
}

/* Featured Quote */
.featured-quote {
  text-align: center;
  position: relative;
}

.quote-content blockquote {
  font-size: 20px;
  font-style: italic;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
}

.quote-content cite {
  font-size: 14px;
  color: var(--text-light);
  font-style: normal;
}

.quote-decoration {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

/* Background Elements */
.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-pattern-testimonials {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(248, 187, 208, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(252, 228, 236, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.floating-stars {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-stars i {
  position: absolute;
  color: var(--primary-color);
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.star-1 {
  top: 10%;
  left: 10%;
  font-size: 20px;
  animation-delay: -1s;
}

.star-2 {
  top: 20%;
  right: 15%;
  font-size: 16px;
  animation-delay: -3s;
}

.star-3 {
  bottom: 25%;
  left: 20%;
  font-size: 18px;
  animation-delay: -5s;
}

.heart-testimonial-1 {
  top: 15%;
  right: 25%;
  font-size: 14px;
  color: #ff6b9d;
  animation-delay: -2s;
}

.heart-testimonial-2 {
  bottom: 30%;
  right: 10%;
  font-size: 12px;
  color: #ff6b9d;
  animation-delay: -4s;
}

.quote-float-1 {
  top: 30%;
  left: 5%;
  font-size: 24px;
  opacity: 0.3;
  animation-delay: -2.5s;
}

.quote-float-2 {
  bottom: 20%;
  right: 5%;
  font-size: 24px;
  opacity: 0.3;
  animation-delay: -4.5s;
}

/* ===================================== */
/* RESPONSIVE DESIGN - TESTIMONIALS      */
/* ===================================== */

/* Tablet Styles */
@media (max-width: 1024px) {
  .testimonials-carousel-container {
    max-width: 700px;
    padding: 0 15px;
  }
  
  .testimonial-card {
    padding: 30px;
  }
  
  .testimonials-cta {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .carousel-prev {
    left: -20px;
  }
  
  .carousel-next {
    right: -20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-carousel-container {
    margin: 40px auto;
    padding: 0 10px;
  }
  
  .testimonial-card {
    padding: 25px 20px;
  }
  
  .testimonial-text {
    font-size: 16px;
    padding: 0 10px;
  }
  
  .customer-info {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .customer-details {
    text-align: center;
  }
  
  .testimonials-stats {
    padding: 30px 20px;
  }
  
  .testimonials-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .testimonials-cta {
    padding: 30px 20px;
  }
  
  .testimonials-cta .cta-title {
    font-size: 24px;
  }
  
  .testimonials-cta .cta-buttons {
    flex-direction: column;
  }
  
  .social-proof-badges {
    justify-content: center;
    gap: 10px;
  }
  
  .carousel-navigation {
    display: none; /* Hide navigation arrows on mobile */
  }
  
  .carousel-indicators {
    margin-top: 20px;
  }
  
  .indicator {
    width: 10px;
    height: 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .testimonial-text {
    font-size: 15px;
  }
  
  .testimonials-stats .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-stats .stat-item {
    justify-content: center;
    text-align: center;
  }
  
  .quote-icon {
    left: 20px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .star-rating {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .star-rating i {
    font-size: 18px;
  }
}

/* Reduced Motion for Testimonials */
@media (prefers-reduced-motion: reduce) {
  .testimonial-slide,
  .testimonial-card,
  .carousel-btn,
  .indicator,
  .floating-stars i,
  .bg-pattern-testimonials {
    transition: none;
    animation: none;
  }
  
  .testimonial-slide {
    transform: none;
  }
  
  .testimonial-card:hover {
    transform: none;
  }
  
  .carousel-btn:hover {
    transform: none;
  }
  
  .indicator:hover {
    transform: none;
  }
}