/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(139, 95, 191, 0.1);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-width: 50px;
  position: relative;
}

.mobile-bottom-nav .nav-item svg {
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item span {
  font-size: 0.7rem;
  line-height: 1;
}

.mobile-bottom-nav .nav-item.active {
  color: var(--primary);
  background: rgba(139, 95, 191, 0.1);
}

.mobile-bottom-nav .nav-item.active svg {
  transform: scale(1.1);
}

.mobile-bottom-nav .nav-item:hover {
  color: var(--primary);
  background: rgba(139, 95, 191, 0.05);
}

/* Active indicator */
.mobile-bottom-nav .nav-item.active::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary) 0%, #c88ea7 100%);
  border-radius: 0 0 3px 3px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 20px rgba(37, 211, 102, 0);
  }
}

/* Show mobile bottom nav on mobile devices */
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
  
  /* Add bottom padding to body to prevent content overlap */
  body {
    padding-bottom: 80px;
  }
  
  /* Adjust WhatsApp button position for mobile */
  .whatsapp-float {
    bottom: 100px;
    right: 20px;
    left: auto;
    width: 56px;
    height: 56px;
  }
  
  /* Hide regular header navigation toggle on larger mobile screens */
  .site-header .nav-toggle {
    display: block;
  }
  
  .site-header .nav-list {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--surface);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 95, 191, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .site-header .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .site-header .nav-list li {
    margin: 0;
  }
  
  .site-header .nav-list a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .mobile-bottom-nav .nav-item {
    min-width: 45px;
    padding: 4px 6px;
  }
  
  .mobile-bottom-nav .nav-item span {
    font-size: 0.65rem;
  }
  
  .mobile-bottom-nav .nav-item svg {
    width: 20px;
    height: 20px;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 90px;
  }
  
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
:root {
  --bg: #f8f6ff;
  --text: #2a1f3d;
  --muted: #6b5b73;
  --primary: #8b5fbf; /* purple */
  --primary-2: #6a4c93;
  --cream: #f3f0ff;
  --surface: rgba(255,255,255,0.6);
  --glass: rgba(255,255,255,0.35);
  --shadow: 0 10px 30px rgba(139,95,191,0.15);
  --radius: 16px;
}

* { box-sizing: border-box; }

/* حركة ناعمة للبطاقة الأصلية في الهيرو - Mock Card Animation */
.mock-card {
  animation: gentleMockFloat 6s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mock-card:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 
    0 25px 50px rgba(139, 95, 191, 0.15),
    0 8px 25px rgba(255, 107, 157, 0.08);
}

.mock-avatar {
  animation: mockAvatarPulse 4s ease-in-out infinite;
}

.mock-lines .line {
  animation: mockLineShimmer 3s ease-in-out infinite;
}

.mock-lines .line:nth-child(2) {
  animation-delay: 0.5s;
}

.mock-lines .pill {
  animation: mockPillGlow 5s ease-in-out infinite;
}

/* حركات ناعمة للبطاقة الأصلية */
@keyframes gentleMockFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(0.5deg);
  }
  50% {
    transform: translateY(-4px) rotate(-0.3deg);
  }
  75% {
    transform: translateY(-6px) rotate(0.2deg);
  }
}

@keyframes mockAvatarPulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
}

@keyframes mockLineShimmer {
  0%, 100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.02);
  }
}

@keyframes mockPillGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(139, 95, 191, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 15px rgba(139, 95, 191, 0.5);
    transform: scale(1.02);
  }
}

/* حركات ناعمة للبطاقة الأصلية مع التحسينات */
@keyframes gentleMockFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(0.5deg);
  }
  50% {
    transform: translateY(-4px) rotate(-0.3deg);
  }
  75% {
    transform: translateY(-6px) rotate(0.2deg);
  }
}

@keyframes mockAvatarPulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1) drop-shadow(0 4px 8px rgba(139, 95, 191, 0.2));
  }
  50% {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 6px 12px rgba(139, 95, 191, 0.3));
  }
}

@keyframes mockLineShimmer {
  0%, 100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.02);
  }
}

@keyframes mockPillGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(139, 95, 191, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 15px rgba(139, 95, 191, 0.5);
    transform: scale(1.02);
  }
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cairo", "Tajawal", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg), #fff);
  color: var(--text);
}

.container { width: min(1120px, 92vw); margin-inline: auto; }
.section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 36px; }
.section-header h2 { font-size: 32px; margin: 0 0 8px; }
.section-header p { color: var(--muted); margin: 0; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(120%) blur(8px); background: var(--glass); border-bottom: 1px solid rgba(0,0,0,0.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-items: center; gap: 0 10px; text-decoration: none; color: inherit; }
.brand-logo { grid-row: span 2; font-size: 28px; }
.brand-logo-img { grid-row: span 2; width: 45px; height: 45px; object-fit: contain; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; }
.brand-title { font-weight: 800; letter-spacing: .3px; }
.brand-sub { margin-top: -6px; color: var(--muted); font-size: 12px; }

.nav { position: relative; }
.nav-toggle { display: none; background: transparent; border: none; font-size: 22px; cursor: pointer; }
.nav-list { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-list a { color: inherit; text-decoration: none; padding: 8px 12px; border-radius: 12px; }
.nav-list a:hover { background: var(--cream); }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-list { position: absolute; top: 120%; inset-inline-end: 0; flex-direction: column; background: var(--surface); padding: 10px; border-radius: 14px; box-shadow: var(--shadow); display: none; }
  .nav-list.open { display: flex; }
  .social-inline { display: flex; }
}

/* Hero */
.hero { padding: 96px 0 64px; position: relative; overflow: clip; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.display { font-size: clamp(28px, 4vw, 46px); margin: 0 0 12px; }
.display .accent { 
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead { color: var(--muted); font-size: 18px; margin: 0 0 18px; }
.cta-group { display: flex; flex-wrap: wrap; gap: 10px; }
.trust { display: flex; gap: 10px; align-items: center; margin-top: 10px; color: var(--muted); }
.stars { color: #ffb400; }

.hero-visual { position: relative; min-height: 280px; }
.orb { position: absolute; inset: 0; margin: auto; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #e6d6ff, #f0eaff 40%, transparent 60%), radial-gradient(circle at 70% 70%, #d6c6f6, #f4f0ff 50%, transparent 60%); filter: blur(2px); animation: float 7s ease-in-out infinite; opacity: .9; }
.mock-card { position: relative; width: 280px; margin-inline: auto; margin-top: 18px; border-radius: 18px; padding: 16px; box-shadow: var(--shadow); }
.mock-avatar { font-size: 32px; }
.mock-lines { display: grid; gap: 8px; margin-top: 10px; }
.mock-lines .line { display: block; height: 8px; border-radius: 999px; background: #f0dbe3; }
.mock-lines .line.w-60 { width: 60%; }
.mock-lines .pill { background: #ffe8ef; color: #b15d7e; padding: 8px 12px; border-radius: 999px; width: fit-content; font-size: 12px; }

@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }

@media (max-width: 920px){
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .mock-card { margin-inline: auto; }
}

/* UI Elements */
.btn { border: 1px solid transparent; padding: 10px 16px; border-radius: 12px; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: .2s ease; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; box-shadow: 0 8px 18px rgba(139,95,191,.3); }
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--text); border-color: #eee; }
.btn-ghost:hover { background: var(--cream); }
.input, input, select { width: 100%; padding: 10px 12px; border-radius: 12px; border: 1px solid #eee; background: #fff; }

.glass { background: var(--surface); backdrop-filter: blur(8px) saturate(140%); border: 1px solid rgba(0,0,0,0.04); border-radius: var(--radius); }
.card { 
  padding: 1.5rem; 
  box-shadow: var(--shadow); 
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 95, 191, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 95, 191, 0.15);
}

.card-header { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  margin-bottom: 1rem; 
}

.grid { display: grid; gap: 1.5rem; }
.cards-3 { 
  grid-template-columns: repeat(3, 1fr); 
}
.split { 
  grid-template-columns: 1.1fr .9fr; 
  align-items: center; 
}

@media (max-width: 920px){ 
  .cards-3, .split { 
    grid-template-columns: 1fr; 
  }
  .cards-3 {
    gap: 1.25rem;
  }
}

.service .icon { 
  font-size: 32px; 
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(139, 95, 191, 0.3));
}
.service h3 { 
  margin: 0 0 0.75rem; 
  color: #4a3168;
  font-weight: 700;
  font-size: 1.2rem;
}
.service p { 
  color: var(--muted); 
  margin: 0 0 1rem; 
  line-height: 1.6;
  flex-grow: 1;
}
.service .meta { 
  color: var(--primary); 
  font-weight: 700; 
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(139, 95, 191, 0.1);
}

.features { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.features li { padding: 10px 12px; background: #fff; border: 1px solid #f2e7ec; border-radius: 12px; }

.quote p { margin: 0 0 8px; }
.quote footer { color: var(--muted); }

/* Contact */
.form .field { margin-bottom: 12px; }
.field label { font-size: 13px; color: var(--muted); display: block; margin-bottom: 6px; }
.field.inline { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hint { color: var(--muted); font-size: 12px; }

.contact-grid .card { height: 100%; }
.bullets { list-style: disc; padding-inline-start: 20px; color: var(--muted); }

/* Footer */
.site-footer { padding: 22px 0; border-top: 1px solid #f1e7eb; background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.social { display: flex; gap: 12px; }
.icon-link { color: inherit; text-decoration: none; opacity: .8; }
.icon-link:hover { opacity: 1; }

/* Background gradients */
.gradient-rose { background: radial-gradient(1200px 500px at 88% -20%, #f0eaff, transparent), linear-gradient(180deg, #fff, #fafcff); }
.gradient-rose-soft { background: linear-gradient(180deg, #f7faff, #fff); }
.gradient-cream { background: linear-gradient(180deg, #f3f0ff, #fff); }

/* Scroll animations */
[data-animate] { opacity: 0; transform: translateY(12px); transition: .5s ease; }
[data-animate].in { opacity: 1; transform: translateY(0); }

/* Packages Page Styles */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }

.package-card { 
  position: relative; 
  border-radius: 18px; 
  padding: 20px; 
  box-shadow: var(--shadow); 
  background: var(--surface); 
  backdrop-filter: blur(8px); 
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 0; /* allow shrinking in narrow grids */
}

.package-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.12); 
}

.package-card.premium {
  background: linear-gradient(135deg, rgba(218,165,32,0.1), rgba(255,215,0,0.05));
  border: 2px solid #daa520;
}

.package-card.luxury {
  background: linear-gradient(135deg, rgba(139,95,191,0.1), rgba(106,76,147,0.05));
  border: 2px solid var(--primary);
}

.package-badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(139,95,191,0.3);
}

.luxury-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
  box-shadow: 0 4px 12px rgba(139,95,191,0.4) !important;
}

.package-header {
  text-align: center;
  margin-bottom: 20px;
}

.package-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.package-header h3 {
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--text);
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.services-count {
  background: var(--cream);
  color: var(--primary-2);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.package-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.package-price small {
  font-size: 16px;
  color: var(--muted);
}

.package-services {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.package-services li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
}

.package-services li:last-child {
  border-bottom: none;
}

.service-icon {
  font-size: 16px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.package-card:hover .service-icon svg {
  transform: scale(1.1);
}

/* Premium Icon Styles */
.premium-crown-icon, .luxury-diamond-icon, .happiness-icon, 
.beauty-icon, .femininity-icon, .pamper-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.package-card:hover .premium-crown-icon svg,
.package-card:hover .luxury-diamond-icon svg,
.package-card:hover .happiness-icon svg,
.package-card:hover .beauty-icon svg,
.package-card:hover .femininity-icon svg,
.package-card:hover .pamper-icon svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Premium Icon Styles */
.premium-crown-icon, .luxury-diamond-icon, .happiness-icon, 
.beauty-icon, .femininity-icon, .pamper-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.package-card:hover .premium-crown-icon svg,
.package-card:hover .luxury-diamond-icon svg,
.package-card:hover .happiness-icon svg,
.package-card:hover .beauty-icon svg,
.package-card:hover .femininity-icon svg,
.package-card:hover .pamper-icon svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.premium-crown-icon svg {
  filter: drop-shadow(0 3px 6px rgba(255,215,0,0.4));
  animation: float-gentle 3s ease-in-out infinite;
}

.luxury-diamond-icon svg {
  filter: drop-shadow(0 3px 6px rgba(147,112,219,0.4));
  animation: float-gentle 3.5s ease-in-out infinite;
}

.happiness-icon svg {
  filter: drop-shadow(0 3px 6px rgba(255,105,180,0.4));
  animation: float-gentle 4s ease-in-out infinite;
}

.beauty-icon svg {
  filter: drop-shadow(0 3px 6px rgba(255,20,147,0.4));
  animation: float-gentle 3.2s ease-in-out infinite;
}

.femininity-icon svg {
  filter: drop-shadow(0 3px 6px rgba(255,105,180,0.4));
  animation: float-gentle 3.8s ease-in-out infinite;
}

.pamper-icon svg {
  filter: drop-shadow(0 3px 6px rgba(255,105,180,0.4));
  animation: float-gentle 4.2s ease-in-out infinite;
}

/* Enhanced Service Icons */
.package-services li:hover .service-icon svg {
  transform: scale(1.15) translateX(3px);
}

/* Animated Elements */
@keyframes float-gentle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

.package-book {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.contact-card {
  text-align: center;
  padding: 24px;
}

.contact-card h3 {
  margin: 0 0 15px;
  color: var(--text);
}

.contact-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-icon {
  font-size: 18px;
}

.contact-info-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.social-section {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  text-decoration: none;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.nav-list a.active {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
}

/* Dashboard */
.dashboard-body { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: linear-gradient(180deg, var(--bg), #fff); }
.sidebar { padding: 16px; display: grid; align-content: start; gap: 16px; }
.sidebar .brand-mini { display: flex; align-items: center; gap: 8px; font-weight: 800; }
.sidebar nav { display: grid; gap: 8px; }
.sidebar nav a { text-decoration: none; color: inherit; padding: 10px 12px; border-radius: 10px; }
.sidebar nav a.active, .sidebar nav a:hover { background: var(--cream); }
.sidebar-foot { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.dashboard-main { padding: 18px; }
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dash-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.kpi { display: grid; gap: 6px; }
.kpi-label { color: var(--muted); font-size: 12px; }
.kpi-value { font-size: 26px; font-weight: 800; }
.kpi-value.ok { color: #2f9e44; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.table-wrapper { overflow: auto; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: start; border-bottom: 1px solid #f2e7ec; padding: 10px; }
.badge { padding: 4px 10px; border-radius: 999px; font-size: 12px; }
.badge.success { background: #e6f7ec; color: #237a3b; }
.badge.warning { background: #fff5da; color: #a07000; }
.badge.danger { background: #fde6ea; color: #a13850; }

@media (max-width: 980px) {
  .dashboard-body { grid-template-columns: 1fr; }
  .sidebar { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; }
  .dash-cards { grid-template-columns: repeat(2, 1fr); }
  .dash-grid { grid-template-columns: 1fr; }
}

/* ============= PRIVACY PAGE STYLES ============= */
.privacy-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.privacy-highlights {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.9);
  color: #6a4c93;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(139, 95, 191, 0.2);
  font-weight: 600;
}

/* Update Notice */
.update-notice {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.update-icon {
  min-width: 50px;
}

.update-content h3 {
  color: #4a3168;
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
}

.update-content p {
  color: var(--muted);
  margin: 0.5rem 0;
}

/* Table of Contents */
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.toc-item {
  text-decoration: none;
  color: inherit;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 95, 191, 0.1);
}

.toc-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 95, 191, 0.15);
  border-color: #8b5fbf;
}

.toc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.toc-item h3 {
  color: #4a3168;
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.toc-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Privacy Sections */
.privacy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(139, 95, 191, 0.1);
  position: relative;
}

.section-icon {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.privacy-section h2 {
  color: #4a3168;
  font-size: 2rem;
  margin: 0 0 2rem 0;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(139, 95, 191, 0.2);
}

.privacy-section h3 {
  color: #6a4c93;
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem 0;
}

.privacy-subsection {
  margin-bottom: 2rem;
}

/* Data Types */
.data-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.data-type {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(139, 95, 191, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(139, 95, 191, 0.1);
}

.data-icon {
  font-size: 1.5rem;
  min-width: 40px;
}

.data-content h4 {
  color: #4a3168;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.data-content ul {
  margin: 0;
  padding-right: 1rem;
  color: var(--muted);
}

.data-content li {
  margin-bottom: 0.25rem;
}

/* Collection Methods */
.collection-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 107, 157, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 157, 0.1);
}

.method-icon {
  font-size: 1.2rem;
}

/* Usage Purposes */
.usage-purposes {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.purpose-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(139, 95, 191, 0.1);
  transition: all 0.3s ease;
}

.purpose-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(139, 95, 191, 0.1);
}

.purpose-icon {
  font-size: 2rem;
  min-width: 50px;
}

.purpose-content h3 {
  color: #4a3168;
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.purpose-content p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Protection Measures */
.protection-measures {
  margin-top: 1.5rem;
}

.protection-category {
  margin-bottom: 2rem;
}

.protection-category h3 {
  color: #6a4c93;
  margin-bottom: 1rem;
}

.measures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.measure-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(106, 76, 147, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(106, 76, 147, 0.1);
}

.measure-icon {
  font-size: 1.2rem;
}

/* Security Notice */
.security-notice {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 10px;
  border-right: 4px solid #ffc107;
  margin-top: 2rem;
}

.notice-icon {
  font-size: 1.5rem;
  min-width: 30px;
}

.notice-content h4 {
  color: #8a6d00;
  margin: 0 0 0.5rem 0;
}

.notice-content p {
  color: #8a6d00;
  margin: 0;
  line-height: 1.6;
}

/* Sharing Policy */
.sharing-principle {
  text-align: center;
  padding: 2rem;
  background: rgba(139, 95, 191, 0.05);
  border-radius: 15px;
  border: 2px solid rgba(139, 95, 191, 0.2);
  margin-bottom: 2rem;
}

.principle-text {
  font-size: 1.1rem;
  color: #4a3168;
  margin: 0;
  line-height: 1.7;
}

.sharing-cases {
  margin-top: 2rem;
}

.sharing-case {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(139, 95, 191, 0.1);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.sharing-case:hover {
  border-color: #8b5fbf;
  box-shadow: 0 10px 25px rgba(139, 95, 191, 0.1);
}

.case-icon {
  font-size: 1.8rem;
  min-width: 40px;
}

.case-content h4 {
  color: #4a3168;
  margin: 0 0 0.5rem 0;
}

.case-content p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* User Rights */
.rights-intro {
  text-align: center;
  padding: 1.5rem;
  background: rgba(139, 95, 191, 0.05);
  border-radius: 10px;
  margin-bottom: 2rem;
}

.rights-intro p {
  color: #4a3168;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.rights-list {
  display: grid;
  gap: 1.5rem;
}

.right-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  border: 1px solid rgba(139, 95, 191, 0.1);
  transition: all 0.3s ease;
}

.right-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(139, 95, 191, 0.1);
}

.right-icon {
  font-size: 1.8rem;
  min-width: 40px;
}

.right-content h3 {
  color: #4a3168;
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.right-content p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Rights Exercise */
.rights-exercise {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 107, 157, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 157, 0.1);
}

.exercise-steps {
  margin-top: 1rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

.step-item:last-child {
  border-bottom: none;
}

.step-number {
  background: #ff6b9d;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Contact Privacy */
.contact-intro {
  text-align: center;
  padding: 1.5rem;
  background: rgba(139, 95, 191, 0.05);
  border-radius: 10px;
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  border: 1px solid rgba(139, 95, 191, 0.1);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(139, 95, 191, 0.1);
}

.contact-icon {
  font-size: 1.8rem;
  min-width: 40px;
}

.contact-info h3 {
  color: #4a3168;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.contact-info p {
  color: var(--muted);
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
}

.contact-info strong {
  color: #8b5fbf;
  font-weight: 700;
}

.social-links-privacy {
  display: flex;
  gap: 1rem;
}

.social-links-privacy a {
  color: #8b5fbf;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.social-links-privacy a:hover {
  color: #ff6b9d;
}

/* Response Time */
.response-time {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(106, 76, 147, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(106, 76, 147, 0.1);
}

.response-icon {
  font-size: 1.5rem;
  min-width: 35px;
}

.response-info h3 {
  color: #4a3168;
  margin: 0 0 0.5rem 0;
}

.response-info p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Updates Notice */
.updates-notice {
  padding: 2rem;
}

.updates-content {
  margin-top: 2rem;
}

.update-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(139, 95, 191, 0.1);
}

.update-item:last-child {
  border-bottom: none;
}

.update-icon {
  font-size: 1.8rem;
  min-width: 40px;
}

.update-text h3 {
  color: #4a3168;
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.update-text p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design for Privacy Page */
@media (max-width: 768px) {
  .privacy-highlights {
    gap: 1rem;
  }
  
  .highlight-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .toc-grid {
    grid-template-columns: 1fr;
  }
  
  .privacy-section {
    padding: 1.5rem;
  }
  
  .privacy-section h2 {
    font-size: 1.6rem;
  }
  
  .data-types,
  .collection-methods,
  .measures-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }
  
  .update-notice,
  .purpose-item,
  .sharing-case,
  .right-item,
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
  
  .purpose-item:hover,
  .sharing-case:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .privacy-hero {
    padding: 3rem 0 2rem;
  }
  
  .section-icon {
    justify-content: center;
  }
  
  .toc-icon,
  .purpose-icon,
  .case-icon,
  .right-icon,
  .contact-icon {
    font-size: 1.5rem;
  }
  
  .data-type,
  .method-item,
  .measure-item {
    flex-direction: column;
    text-align: center;
  }
}
/* Story Section */
.story-content {
  margin-top: 2rem;
}

.story-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(139, 95, 191, 0.1);
  transition: all 0.3s ease;
}

.story-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 95, 191, 0.15);
}

.story-icon {
  font-size: 2rem;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.1), rgba(255, 107, 157, 0.1));
  border-radius: 50%;
  border: 2px solid rgba(139, 95, 191, 0.2);
}

.story-text h3 {
  color: #6a4c93;
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.story-text p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 400px;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.7));
  border: 1px solid rgba(139,95,191,0.12);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(139, 95, 191, 0.2);
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #8b5fbf 0%, #ff6b9d 60%, #6a4c93 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* fallback handled by gradient clip */
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Mission & Vision Cards */
.mission-card {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 95, 191, 0.15);
}

.mission-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.mission-card h3 {
  color: #4a3168;
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.mission-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  border: 1px solid rgba(139, 95, 191, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 95, 191, 0.15);
  border-color: #8b5fbf;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-item h3 {
  color: #4a3168;
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.feature-item p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Team Features */
.team-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-feature {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  border: 1px solid rgba(139, 95, 191, 0.1);
  transition: all 0.3s ease;
}

.team-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 95, 191, 0.15);
}

.team-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.team-feature h3 {
  color: #4a3168;
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.team-feature p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Contact Info in About Page */
.contact-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.05), rgba(255, 107, 157, 0.05));
  border-radius: 15px;
  border: 1px solid rgba(139, 95, 191, 0.1);
}

.contact-info a {
  color: #8b5fbf;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ff6b9d;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .story-item {
    flex-direction: row;
    align-items: center;
    text-align: initial;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
  
  .features-grid,
  .team-features {
    grid-template-columns: 1fr;
  }
  
  .stat-card { padding: 1.25rem; border-radius: 16px; }
  .story-text h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
  .story-text p { font-size: 0.95rem; }
  
  .feature-item,
  .team-feature,
  .mission-card {
    padding: 1.5rem;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-lg {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .story-icon {
    min-width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
}

/* Professional Services Section */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #ff6b9d);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(139, 95, 191, 0.3);
}

/* Services Stats */
.services-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 246, 255, 0.9));
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 95, 191, 0.1);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Services Showcase */
.services-showcase {
  margin-top: 4rem;
}

/* Premium Service Card */
.service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 246, 255, 0.95));
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 95, 191, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.premium-card {
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.05), rgba(255, 255, 255, 0.95));
  position: relative;
  margin-bottom: 3rem;
}

.premium-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), #ff6b9d, #c39bd3);
  border-radius: 24px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(139, 95, 191, 0.15);
}

.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon {
  padding: 1rem;
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.1), rgba(255, 107, 157, 0.1));
  border-radius: 20px;
  transition: all 0.3s ease;
}

.premium-icon {
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.15), rgba(255, 107, 157, 0.15));
  border: 2px solid rgba(139, 95, 191, 0.2);
}

.service-badge {
  background: linear-gradient(135deg, var(--primary), #ff6b9d);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(139, 95, 191, 0.3);
}

.premium-badge {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #8a6d00;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.service-card-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c1810;
  margin-bottom: 1rem;
}

.service-card-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: var(--text);
  font-weight: 500;
}

.service-features li::before {
  content: '✨';
  margin-left: 0.75rem;
  font-size: 1.1rem;
}

.service-pricing {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 2rem;
}

.price-main {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), #ff6b9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-duration {
  color: var(--muted);
  font-size: 0.9rem;
  background: rgba(139, 95, 191, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

/* Modern Services Grid */
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card-compact {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 246, 255, 0.9));
  border-radius: 20px;
  padding: 1.8rem;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(139, 95, 191, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff6b9d);
  border-radius: 20px 20px 0 0;
}

.service-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 95, 191, 0.12);
  border-color: var(--primary);
}

.special-offer {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.9));
  border-color: #ffd700;
}

.special-offer::before {
  background: linear-gradient(90deg, #ffd700, #ffb347);
}

.service-icon-compact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.1), rgba(255, 107, 157, 0.1));
  border-radius: 18px;
  transition: all 0.3s ease;
}

.service-card-compact:hover .service-icon-compact {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(139, 95, 191, 0.2);
}

.service-card-compact h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c1810;
  margin-bottom: 0.75rem;
}

.service-card-compact p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.service-price-compact {
  margin-top: auto;
}

.service-price-compact span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(139, 95, 191, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: inline-block;
}

.offer-price span {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 179, 71, 0.2));
  color: #b8860b;
}

/* Services CTA Section */
.services-cta {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary), #ff6b9d);
  border-radius: 24px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: float 20s infinite linear;
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .premium-card {
    margin-bottom: 2rem;
  }
  
  .services-grid-modern {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card-compact {
    padding: 1.5rem;
  }
  
  .services-cta {
    padding: 2rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 300px;
  }
  
  .cta-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .services-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .service-card-header {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }
  
  .service-pricing {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .price-main {
    font-size: 1.5rem;
  }
}
.services-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-item {
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.1), rgba(255, 107, 157, 0.1));
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(139, 95, 191, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 95, 191, 0.2);
}

/* Services Categories */
.services-categories {
  margin-top: 3rem;
}

.service-category {
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(139, 95, 191, 0.08);
  border: 1px solid rgba(139, 95, 191, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff6b9d);
  border-radius: 20px 20px 0 0;
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 95, 191, 0.15);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(139, 95, 191, 0.2);
}

.category-icon {
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.1) 0%, rgba(106, 76, 147, 0.1) 100%);
  border-radius: 15px;
  border: 1px solid rgba(139, 95, 191, 0.2);
}

.category-header h2 {
  color: #4a3168;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

/* Subcategories */
.subcategory {
  margin-bottom: 2.5rem;
}

.subcategory-title {
  color: #6a4c93;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.08) 0%, rgba(106, 76, 147, 0.08) 100%);
  border-radius: 10px;
  border-right: 4px solid #8b5fbf;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid rgba(139, 95, 191, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}

.service-item:hover {
  transform: translateY(-3px);
  border-color: #8b5fbf;
  box-shadow: 0 15px 35px rgba(139, 95, 191, 0.15);
}

.service-item h3,
.service-item h4 {
  color: #4a3168;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.service-item .price {
  color: #8b5fbf;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: auto;
}

.service-item .duration {
  color: #666;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 0.25rem;
}

/* Featured Services */
.service-item.featured {
  border-color: #8b5fbf;
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  position: relative;
}

.service-item.featured::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(135deg, #8b5fbf, #ff6b9d);
  border-radius: 17px;
  z-index: -1;
}

.service-item.quick {
  border-color: #ff6b9d;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Service Badges */
.badge {
  position: absolute;
  top: -10px;
  left: 1rem;
  background: linear-gradient(135deg, #8b5fbf 0%, #ff6b9d 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(139, 95, 191, 0.3);
}

/* Service Notes */
.service-note {
  margin-top: 2rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 235, 153, 0.1) 100%);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 10px;
  border-right: 4px solid #ffc107;
}

.service-note p {
  margin: 0;
  color: #8a6d00;
  font-weight: 500;
}

/* Navigation Active State */
.nav-list a.active {
  color: #8b5fbf;
  font-weight: 600;
  position: relative;
}

.nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #8b5fbf, #ff6b9d);
  border-radius: 1px;
}

/* CTA Section */
.cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.contact-info {
  margin-top: 1.5rem;
  opacity: 0.8;
}

.contact-info a {
  color: #8b5fbf;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ff6b9d;
}

/* Category Header */
.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(139, 95, 191, 0.15);
}

.category-icon {
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.1) 0%, rgba(106, 76, 147, 0.1) 100%);
  border-radius: 15px;
  border: 1px solid rgba(139, 95, 191, 0.2);
  transition: all 0.3s ease;
}

.category-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(139, 95, 191, 0.2);
}

.category-header h3 {
  color: #4a3168;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

/* Services Grid Enhanced */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 246, 255, 0.9) 100%);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid rgba(139, 95, 191, 0.1);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  backdrop-filter: blur(10px);
}

.service-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(139, 95, 191, 0.15);
}

.service-item h4 {
  color: #4a3168;
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.service-item p {
  color: var(--muted);
  margin: 0 0 1rem 0;
  line-height: 1.5;
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(139, 95, 191, 0.1);
}

.service-details .price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.service-details .duration {
  color: var(--muted);
  font-size: 0.85rem;
  background: rgba(139, 95, 191, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
}

/* Featured Services */
.service-item.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(139, 95, 191, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
  position: relative;
}

.service-item.featured::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), #ff6b9d);
  border-radius: 17px;
  z-index: -1;
}

.service-item.quick {
  border-color: #ff6b9d;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Service Badges */
.service-badge {
  position: absolute;
  top: -8px;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b9d 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(139, 95, 191, 0.3);
  z-index: 2;
}

/* Services Note */
.services-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 235, 153, 0.1) 100%);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 15px;
  border-right: 4px solid #ffc107;
  backdrop-filter: blur(10px);
}

.services-note p {
  margin: 0;
  color: #8a6d00;
  font-weight: 500;
  text-align: center;
}

/* Responsive Design for New Services Section */
@media (max-width: 768px) {
  .services-highlights {
    gap: 0.75rem;
  }
  
  .highlight-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .service-category {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .category-header h3 {
    font-size: 1.2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  
  .service-details {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

/* Ensure three services per row on larger screens */
@media (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .service-item {
    padding: 1.25rem;
    min-height: 120px;
  }
  
  .service-item h4 {
    font-size: 1rem;
  }
  
  .service-badge {
    position: static;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  
  .services-note {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .services-highlights {
    gap: 1rem;
  }
  
  .highlight-item {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .service-category {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .category-header h2 {
    font-size: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  
  .subcategory-title {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-lg {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-services {
    padding: 4rem 0 2rem;
  }
  
  .service-item {
    padding: 1rem;
    min-height: 100px;
  }
  
  .service-item h3,
  .service-item h4 {
    font-size: 1rem;
  }
  
  .badge {
    position: static;
    display: inline-block;
    margin-top: 0.5rem;
  }
}

/* Animation for Service Categories */
.service-category[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-category[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Styles for Services Page */
.site-footer {
  background: linear-gradient(135deg, #6a4c93 0%, #8b5fbf 100%);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-inner p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ================================
   Terms of Service Page
   ================================ */

.terms-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #8b5fbf 0%, #ff6b9d 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.terms-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='rgba(255,255,255,0.05)' fill-rule='nonzero'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: float 20s infinite linear;
  opacity: 0.3;
}

.terms-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9em;
  backdrop-filter: blur(10px);
}

.update-notice {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  margin-bottom: 40px;
  border-left: 4px solid #8b5fbf;
}

.update-content h3 {
  margin: 0 0 10px;
  color: #8b5fbf;
  font-size: 1.2em;
}

.update-content p {
  margin: 5px 0;
}

.terms-content {
  max-width: 1000px;
  margin: 0 auto;
}

.terms-section {
  margin-bottom: 60px;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.terms-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8b5fbf, #ff6b9d);
  border-radius: 15px 15px 0 0;
}

.terms-section h2 {
  text-align: center;
  color: #333;
  margin-bottom: 30px;
  font-size: 2em;
}

.terms-content-text {
  line-height: 1.8;
  color: #555;
}

.terms-content-text p {
  margin-bottom: 20px;
}

.important-note {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-left: 4px solid #f0932b;
  border-radius: 8px;
  margin: 25px 0;
}

.note-icon {
  font-size: 1.5em;
  flex-shrink: 0;
}

.note-content h4 {
  margin: 0 0 10px;
  color: #b7791f;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-list li {
  position: relative;
  padding: 12px 0 12px 40px;
  border-bottom: 1px solid #f0f0f0;
}

.terms-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #8b5fbf, #ff6b9d);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  font-weight: bold;
}

.services-categories {
  margin: 30px 0;
}

.service-category-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid #8b5fbf;
}

.service-icon {
  font-size: 2.5em;
  flex-shrink: 0;
}

.service-details h4 {
  margin: 0 0 10px;
  color: #8b5fbf;
  font-size: 1.2em;
}

.service-details p {
  margin: 0;
  color: #666;
}

.service-limitations {
  display: grid;
  gap: 15px;
  margin-top: 25px;
}

.limitation-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #fff5f5;
  border-radius: 8px;
  border-left: 3px solid #ff6b9d;
}

.limitation-icon {
  font-size: 1.2em;
  flex-shrink: 0;
}

.policy-section {
  margin: 30px 0;
}

.policy-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 20px;
}

.policy-icon {
  font-size: 2em;
  flex-shrink: 0;
  color: #8b5fbf;
}

.policy-content h4 {
  margin: 0 0 15px;
  color: #333;
}

.policy-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-content li {
  position: relative;
  padding: 8px 0 8px 30px;
}

.policy-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8b5fbf;
  font-weight: bold;
  font-size: 1.2em;
}

.cancellation-policy {
  margin: 30px 0;
}

.cancellation-tier {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.cancellation-tier:hover {
  border-color: #8b5fbf;
  box-shadow: 0 5px 15px rgba(139, 95, 191, 0.1);
}

.tier-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.tier-icon {
  font-size: 1.5em;
}

.tier-header h4 {
  margin: 0;
  color: #333;
}

.special-conditions {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 25px;
  border-radius: 12px;
  margin-top: 30px;
}

.special-conditions h4 {
  margin: 0 0 15px;
  color: #1976d2;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #8b5fbf;
}

.method-icon {
  font-size: 2em;
  flex-shrink: 0;
}

.method-details h4 {
  margin: 0 0 5px;
  color: #333;
}

.method-details p {
  margin: 0;
  color: #666;
  font-size: 0.9em;
}

.privacy-reference {
  text-align: center;
  margin: 30px 0;
}

.privacy-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.privacy-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
}

.point-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.point-content h4 {
  margin: 0 0 10px;
  color: #8b5fbf;
}

.point-content p {
  margin: 0;
  color: #666;
}

.privacy-cta {
  margin-top: 30px;
}

.privacy-cta p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.agreement-confirmation {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.confirmation-content {
  margin-top: 30px;
}

.confirmation-text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #555;
}

.confirmation-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

.confirmation-point {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
  border-radius: 12px;
  border-left: 4px solid #8b5fbf;
}

.important-reminder {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border-left: 4px solid #f0932b;
  border-radius: 12px;
  margin-top: 30px;
  text-align: right;
}

.reminder-icon {
  font-size: 2em;
  flex-shrink: 0;
}

.reminder-text p {
  margin: 0;
  line-height: 1.6;
}

/* Terms Responsive */
@media (max-width: 768px) {
  .terms-hero {
    padding: 100px 0 60px;
  }
  
  .terms-highlights {
    flex-direction: column;
    align-items: center;
  }
  
  .terms-section {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  
  .terms-section h2 {
    font-size: 1.5em;
  }
  
  .update-notice,
  .important-reminder {
    flex-direction: column;
    text-align: center;
  }
  
  .service-category-item,
  .policy-item {
    flex-direction: column;
    text-align: center;
  }
  
  .payment-methods,
  .privacy-highlights {
    grid-template-columns: 1fr;
  }
  
  .confirmation-point {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Contact Page Styles */

/* Contact Hero */
.contact-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(255,107,157,0.1) 0%, transparent 50%);
  animation: heroGradientMove 15s ease-in-out infinite alternate;
  z-index: 0;
}

.contact-highlights {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-highlights .highlight-item {
  background: rgba(255,255,255,0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(139,95,191,0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139,95,191,0.15);
  border-color: var(--primary);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), #ff6b9d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-card h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ff6b9d;
}

/* Contact Form */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(139,95,191,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(139,95,191,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.8);
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,95,191,0.1);
  background: rgba(255,255,255,0.95);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  text-align: center;
  margin-top: 2rem;
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form-notice {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139,95,191,0.1);
}

.form-notice p {
  margin: 0.25rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Working Hours & Service Areas */
.working-hours-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.working-hours,
.service-areas {
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(139,95,191,0.1);
}

.working-hours h3,
.service-areas h3 {
  margin: 0 0 2rem;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.hours-list,
.areas-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255,255,255,0.5);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.hour-item .day {
  font-weight: 600;
  color: var(--text);
}

.hour-item .time {
  color: var(--primary);
  font-weight: 500;
}

.area-item {
  padding: 1rem;
  background: rgba(255,255,255,0.5);
  border-radius: 10px;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 500;
}

.emergency-note,
.expansion-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(139,95,191,0.1), rgba(255,107,157,0.1));
  border-radius: 12px;
  border: 1px solid rgba(139,95,191,0.2);
}

.emergency-note p,
.expansion-note p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(139,95,191,0.1);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255,255,255,0.8);
}

.faq-question h4 {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  flex: 1;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255,255,255,0.3);
}

.faq-answer p {
  padding: 0 2rem 2rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 0 60px;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .working-hours-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .working-hours,
  .service-areas {
    padding: 2rem;
  }
  
  .contact-highlights {
    flex-direction: column;
    align-items: center;
  }
  
  .hour-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 80px 0 40px;
  }
  
  .contact-form {
    padding: 1.5rem 1rem;
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 1.5rem;
  }
  
  .faq-answer p {
    padding: 0 1.5rem 1.5rem;
  }
}

/* End Contact Page Styles */

/* ========================================
   MODERN PACKAGES SECTION STYLES
======================================== */

.modern-packages-section {
  background: linear-gradient(135deg, rgba(200, 142, 167, 0.03) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(200, 142, 167, 0.03) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.modern-packages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(200,142,167,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(200,142,167,0.1)"/></svg>');
  background-size: 100px 100px;
  opacity: 0.6;
  animation: float 25s ease-in-out infinite;
}

/* Packages Header */
.packages-modern-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.packages-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b9d 100%);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(200, 142, 167, 0.3);
  animation: pulse-badge 2s ease-in-out infinite;
}

.packages-modern-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.packages-modern-header p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.packages-highlights {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(200, 142, 167, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(200, 142, 167, 0.1);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 142, 167, 0.2);
}

/* Packages Grid */
.modern-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

/* Package Cards */
.modern-package-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(200, 142, 167, 0.1);
  box-shadow: 0 15px 35px rgba(200, 142, 167, 0.08);
}

.modern-package-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(200, 142, 167, 0.2);
}

/* Featured Package (الدلال) */
.featured-package {
  transform: scale(1.05);
  border: 2px solid var(--primary);
  box-shadow: 0 25px 50px rgba(200, 142, 167, 0.2);
}

.featured-package:hover {
  transform: scale(1.05) translateY(-15px);
}

.featured-ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, #ff6b9d 0%, var(--primary) 100%);
  color: white;
  padding: 0.5rem 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  z-index: 3;
  box-shadow: 0 5px 15px rgba(200, 142, 167, 0.3);
}

/* Package Header */
.package-header {
  position: relative;
  padding: 3rem 2rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(200, 142, 167, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.package-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 25px;
  opacity: 0.3;
  animation: pulse-icon 2s ease-in-out infinite;
}

.gold-glow { background: linear-gradient(135deg, #ffd700, #ffb347); }
.diamond-glow { background: linear-gradient(135deg, #9370db, #dda0dd); }
.rose-glow { background: linear-gradient(135deg, #ff69b4, #ffcccb); }

.package-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.premium-badge {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #333;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.vip-badge {
  background: linear-gradient(135deg, #9370db, #dda0dd);
  color: white;
  border: 1px solid rgba(147, 112, 219, 0.3);
}

.starter-badge {
  background: linear-gradient(135deg, #ff69b4, #ffcccb);
  color: white;
  border: 1px solid rgba(255, 105, 180, 0.3);
}

/* Package Content */
.package-content {
  padding: 2rem;
}

.package-content h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: center;
}

.package-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.1rem;
}

/* Package Services */
.package-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.service-item {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  background: rgba(200, 142, 167, 0.05);
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid rgba(200, 142, 167, 0.1);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(200, 142, 167, 0.1);
  transform: translateX(5px);
}

.service-item.premium {
  background: linear-gradient(135deg, rgba(147, 112, 219, 0.1) 0%, rgba(221, 160, 221, 0.1) 100%);
  border: 1px solid rgba(147, 112, 219, 0.2);
  color: #6a4c93;
  font-weight: 600;
}

/* Package Pricing */
.package-pricing {
  text-align: center;
  padding: 1.5rem;
  background: rgba(200, 142, 167, 0.03);
  border-radius: 20px;
  margin-bottom: 2rem;
  border: 1px solid rgba(200, 142, 167, 0.1);
}

.price-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.original-price {
  font-size: 1.2rem;
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.7;
}

.savings {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

/* Package CTA Buttons */
.package-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gold-btn {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #333;
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.gold-btn:hover {
  background: linear-gradient(135deg, #ffb347, #ff8c00);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.diamond-btn {
  background: linear-gradient(135deg, #9370db, #dda0dd);
  color: white;
  box-shadow: 0 15px 30px rgba(147, 112, 219, 0.3);
}

.diamond-btn:hover {
  background: linear-gradient(135deg, #8a2be2, #9370db);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(147, 112, 219, 0.4);
}

.rose-btn {
  background: linear-gradient(135deg, #ff69b4, #ffcccb);
  color: white;
  box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}

.rose-btn:hover {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 105, 180, 0.4);
}

/* Package Color Themes */
.gold-package {
  border-left: 5px solid #ffd700;
}

.diamond-package {
  border-left: 5px solid #9370db;
}

.rose-package {
  border-left: 5px solid #ff69b4;
}

/* Modern CTA Section */
.packages-modern-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(200, 142, 167, 0.05) 100%);
  border-radius: 30px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 142, 167, 0.1);
  backdrop-filter: blur(20px);
}

.packages-modern-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 142, 167, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.cta-content {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-packages {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-packages-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b9d 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(200, 142, 167, 0.3);
}

.btn-packages-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(200, 142, 167, 0.4);
}

.btn-packages-secondary {
  background: transparent;
  color: var(--primary);
  padding: 1.2rem 2.5rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.btn-packages-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.btn-packages-whatsapp {
  background: #25d366;
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.btn-packages-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

/* Packages Benefits */
.packages-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(200, 142, 167, 0.2);
  position: relative;
  z-index: 2;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: right;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(200, 142, 167, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 2px solid rgba(200, 142, 167, 0.2);
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.benefit-text p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* Animations */
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-packages-section {
    padding: 60px 0;
  }
  
  .packages-modern-header h2 {
    font-size: 2.2rem;
  }
  
  .packages-highlights {
    flex-direction: column;
    align-items: center;
  }
  
  .modern-packages-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .featured-package {
    transform: none;
  }
  
  .featured-package:hover {
    transform: translateY(-10px);
  }
  
  .package-services {
    grid-template-columns: 1fr;
  }
  
  .current-price {
    font-size: 2rem;
  }
  
  .cta-buttons-packages {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-packages-primary,
  .btn-packages-secondary,
  .btn-packages-whatsapp {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .packages-benefits {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .benefit-item {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .packages-modern-header {
    padding: 0 1rem;
  }
  
  .packages-modern-header h2 {
    font-size: 2rem;
  }
  
  .modern-package-card {
    margin: 0 1rem;
  }
  
  .package-header {
    padding: 2rem 1rem 1rem;
  }
  
  .package-content {
    padding: 1.5rem;
  }
  
  .current-price {
    font-size: 1.8rem;
  }
  
  .packages-modern-cta {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
}

/* Services Hero Section */
.services-hero {
  background: linear-gradient(135deg, rgba(200, 142, 167, 0.08) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 25px;
  padding: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 142, 167, 0.1);
}

.services-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 142, 167, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.services-hero-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-hero-content p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.services-stats-mini {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.stat-mini {
  text-align: center;
}

.stat-mini .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-mini .stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

/* Featured Service Container */
.featured-service-container {
  margin-bottom: 4rem;
}

.featured-service-card {
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b9d 100%);
  border-radius: 30px;
  padding: 4rem;
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 25px 50px rgba(200, 142, 167, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: shimmer 6s ease-in-out infinite;
}

.featured-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-content {
  position: relative;
  z-index: 2;
}

.featured-icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

.featured-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.featured-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.featured-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.benefit {
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 15px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-price {
  margin: 2rem 0;
}

.price-value {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.price-duration {
  font-size: 1.1rem;
  opacity: 0.8;
}

.btn-book-featured {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.btn-book-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: white;
}

/* Modern Services Grid */
.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-modern-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 142, 167, 0.1);
  position: relative;
}

.service-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(200, 142, 167, 0.15);
}

.service-modern-header {
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(200, 142, 167, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
  text-align: center;
}

.service-modern-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-radius: 20px;
}

.icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.2;
  animation: pulse 2s ease-in-out infinite;
}

.skin-care .icon-bg { background: linear-gradient(135deg, #a8e6cf, #88d8c0); }
.moroccan-bath .icon-bg { background: linear-gradient(135deg, #ff9a9e, #fecfef); }
.nails .icon-bg { background: linear-gradient(135deg, #fd79a8, #e84393); }
.lashes .icon-bg { background: linear-gradient(135deg, #74b9ff, #0984e3); }
.eyebrows .icon-bg { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }
.packages .icon-bg { background: linear-gradient(135deg, #ffd700, #ffb347); }

.service-modern-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-modern-badge.premium {
  background: linear-gradient(135deg, #ff6b9d, #c88ea7);
  color: white;
}

.service-modern-badge.popular {
  background: linear-gradient(135deg, #74b9ff, #0984e3);
  color: white;
}

.service-modern-badge.offer {
  background: linear-gradient(135deg, #ffd700, #ffb347);
  color: #333;
}

.service-modern-content {
  padding: 2rem;
}

.service-modern-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.service-modern-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-modern-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-modern-features span {
  background: rgba(200, 142, 167, 0.1);
  color: var(--primary);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(200, 142, 167, 0.2);
}

.service-modern-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(200, 142, 167, 0.1);
}

.service-modern-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.service-modern-price .duration {
  font-size: 0.9rem;
  color: var(--muted);
}

.special-package {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 179, 71, 0.05) 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.special-package .service-modern-price .price {
  color: #e67e22;
}

/* Modern CTA Section */
.services-cta-modern {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(200, 142, 167, 0.05) 100%);
  border-radius: 30px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 142, 167, 0.1);
  backdrop-filter: blur(20px);
}

.services-cta-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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="1" fill="rgba(200,142,167,0.1)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
  animation: float 15s ease-in-out infinite;
}

.cta-modern-content {
  position: relative;
  z-index: 2;
}

.cta-modern-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

.cta-modern-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-modern-content p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-modern-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #ff6b9d 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(200, 142, 167, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(200, 142, 167, 0.4);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--primary);
  padding: 1.2rem 2.5rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.btn-cta-whatsapp {
  background: #25d366;
  color: white;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.cta-trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 142, 167, 0.2);
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.trust-badge span:first-child {
  font-size: 1.5rem;
}

/* Animations */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.1; transform: rotate(0deg); }
  50% { opacity: 0.3; transform: rotate(180deg); }
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.4; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.05); opacity: 0.3; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-hero {
    padding: 2rem;
  }
  
  .services-hero-content h3 {
    font-size: 2rem;
  }
  
  .services-stats-mini {
    gap: 2rem;
  }
  
  .featured-service-card {
    padding: 2.5rem;
  }
  
  .featured-content h3 {
    font-size: 2rem;
  }
  
  .featured-benefits {
    grid-template-columns: 1fr;
  }
  
  .price-value {
    font-size: 2.5rem;
  }
  
  .services-modern-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-modern-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary,
  .btn-cta-whatsapp {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .cta-trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-hero-content h3 {
    font-size: 1.8rem;
  }
  
  .services-stats-mini {
    flex-direction: column;
    gap: 1rem;
  }
  
  .featured-service-card {
    padding: 2rem;
  }
  
  .featured-content h3 {
    font-size: 1.8rem;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .services-cta-modern {
    padding: 2rem;
  }
  
  .cta-modern-content h3 {
    font-size: 1.8rem;
  }
  
  .cta-trust-badges {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
