/*
  Enhanced color palette with gradients and shadows
  4E56C0, B4DEBD, F5D3C4, 91ADC8
*/

:root {
  --primary: #4e56c0;     /* main brand color */
  --primary-light: #6b73d1;
  --primary-dark: #3a42a0;
  --secondary: #b4debd;   /* light green accent */
  --secondary-light: #c8e6d1;
  --secondary-dark: #9fd1a8;
  --tertiary: #f5d3c4;    /* warm peach */
  --tertiary-light: #f8e0d4;
  --tertiary-dark: #f2c6b4;
  --quaternary: #91adc8;  /* soft blue */
  --quaternary-light: #a8c0d6;
  --quaternary-dark: #7a9ab8;
  --dark: #2a2d5a;        /* dark background */
  --dark-light: #3a3f6b;
  --dark-lighter: #4a4f7c;
  --light: #f8f9fa;       /* light text/surfaces */
  --white: #ffffff;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.2);
  --shadow-dark: rgba(0, 0, 0, 0.3);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  --gradient-tertiary: linear-gradient(135deg, var(--tertiary), var(--tertiary-light));
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark-light));
}

/* Global reset and enhanced styling */
* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

html { 
  scroll-behavior: smooth;
  height: 100%; 
}

body {
  margin: 0;
  color: var(--light);
  background: 
    radial-gradient(1200px 800px at 10% -10%, rgba(145, 173, 200, 0.3), transparent),
    radial-gradient(1200px 800px at 110% 110%, rgba(78, 86, 192, 0.4), transparent),
    linear-gradient(180deg, var(--dark), #1a1d3a 60%);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Add subtle animated background particles */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, var(--quaternary), transparent),
    radial-gradient(2px 2px at 40px 70px, var(--secondary), transparent),
    radial-gradient(1px 1px at 90px 40px, var(--tertiary), transparent),
    radial-gradient(1px 1px at 130px 80px, var(--primary), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: float 20s ease-in-out infinite;
  opacity: 0.1;
  z-index: -1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.container { 
  width: min(1100px, 92%); 
  margin: 0 auto; 
  padding: 0 1rem;
}

/* Enhanced Typography */
h1, h2, h3, .logo, .foot-brand { 
  font-family: "DM Serif Display", Georgia, serif; 
  letter-spacing: .5px; 
  font-weight: 600;
}

h1, h2, h3 { 
  color: var(--secondary); 
  margin: 0 0 .8rem; 
  text-shadow: 0 2px 4px var(--shadow-medium);
}

.section-title { 
  font-size: clamp(2rem, 3vw + 1rem, 3rem); 
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: var(--gradient-tertiary);
  border-radius: 2px;
}

p { 
  color: var(--light); 
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Enhanced Buttons */
.btn { 
  display: inline-block; 
  padding: 1rem 2rem; 
  border-radius: 50px; 
  background: var(--gradient-primary); 
  color: var(--white); 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 1rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 8px 25px var(--shadow-dark);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-accent { 
  background: var(--gradient-tertiary); 
  color: var(--dark); 
  font-weight: 700;
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--tertiary-dark), var(--tertiary));
}

.btn-dark { 
  background: var(--gradient-dark); 
  color: var(--light); 
  border: 2px solid var(--quaternary);
}

.btn-dark:hover {
  background: linear-gradient(135deg, var(--dark-light), var(--dark));
  border-color: var(--quaternary-light);
}

/* Enhanced Header */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 50; 
  backdrop-filter: blur(15px); 
  background: rgba(42, 45, 90, 0.85); 
  border-bottom: 2px solid var(--quaternary);
  box-shadow: 0 4px 20px var(--shadow-medium);
  transition: all 0.3s ease;
}

.nav-wrap { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 1rem 0; 
}

.logo { 
  color: var(--white); 
  text-decoration: none; 
  font-size: 1.6rem; 
  font-weight: 700;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-list { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: flex; 
  gap: 1.5rem; 
}

.nav-list a { 
  color: var(--light); 
  text-decoration: none; 
  padding: 0.6rem 1rem; 
  border-radius: 25px; 
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.nav-list a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-quaternary);
  transition: left 0.3s ease;
  z-index: -1;
}

.nav-list a:hover::before {
  left: 0;
}

.nav-list a:hover { 
  color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-light);
}

/* Mobile menu */
.nav-toggle { display: none; background: transparent; border: 0; width: 40px; height: 40px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; margin: 7px 6px; background: #f6f3ff; transition: transform .3s ease, opacity .3s ease; }

/* Enhanced Hero Section */
.hero { 
  position: relative; 
  min-height: 80vh; 
  display: grid; 
  place-items: center; 
  text-align: center; 
  background: 
    linear-gradient(45deg, rgba(78, 86, 192, 0.1), rgba(180, 222, 189, 0.1)),
    url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(180, 222, 189, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 86, 192, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(245, 211, 196, 0.2) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.5; }
  100% { opacity: 0.8; }
}

.hero .overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(180deg, rgba(42,45,90,.4), rgba(42,45,90,.7)); 
}

.hero-inner { 
  position: relative; 
  padding: 8rem 0; 
  z-index: 2;
}

.hero-title { 
  font-size: clamp(2.5rem, 6vw + 1rem, 5rem); 
  text-shadow: 0 6px 30px rgba(0,0,0,.7);
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-sub { 
  margin: 1rem 0 2rem; 
  font-size: 1.3rem;
  color: var(--light);
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sections */
.section { 
  padding: 4rem 0; 
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(180, 222, 189, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 86, 192, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%);
  animation: float 15s ease-in-out infinite;
  pointer-events: none;
}

.section .container {
  position: relative;
  z-index: 2;
}

.grid.two { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center; }

/* Enhanced Services Overview */
.services-overview { 
  position: relative;
  padding: 6rem 0;
}

.services-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(180, 222, 189, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(78, 86, 192, 0.1) 0%, transparent 50%);
  z-index: -1;
}

/* New Services Showcase Layout - Complete Cards */
.services-showcase {
  margin: 4rem 0;
}

.services-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 768px) {
  .services-cards-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .services-cards-grid {
    flex-direction: column;
  }
}

.service-card-complete {
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  flex: 1;
  margin: 0 0.5rem;
  min-height: 400px;
}

.service-card-complete:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.service-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-complete:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(42, 45, 90, 0.7), rgba(78, 86, 192, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-complete:hover .service-card-overlay {
  opacity: 1;
}

.service-card-icon {
  font-size: 3.5rem;
  color: var(--white);
  text-shadow: 0 4px 8px var(--shadow-dark);
  animation: iconPulse 2s ease-in-out infinite;
}

.service-card-content {
  padding: 2rem;
  text-align: center;
}

.service-card-content h3 {
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.service-card-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: start;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(78, 86, 192, 0.2);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--quaternary);
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.service-price {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 2px 4px var(--shadow-medium);
}

.service-card-footer .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  flex-shrink: 0;
}

/* Legacy services grid for backward compatibility */
.services-overview .services-grid { 
  margin: 3rem 0; 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem; 
}

.service-card { 
  background: rgba(180, 222, 189, 0.1); 
  border: 2px solid var(--quaternary); 
  padding: 2rem; 
  border-radius: 20px; 
  text-align: center; 
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover { 
  transform: translateY(-8px) scale(1.02); 
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  border-color: var(--quaternary-light);
}

.service-card.featured { 
  background: linear-gradient(135deg, rgba(180, 222, 189, 0.2), rgba(245, 211, 196, 0.15)); 
  border: 3px solid var(--tertiary); 
  position: relative;
  transform: scale(1.05);
}

.service-card.featured::after { 
  content: 'POPULAR'; 
  position: absolute; 
  top: -12px; 
  right: 20px; 
  background: var(--gradient-tertiary); 
  color: var(--dark); 
  padding: 0.5rem 1rem; 
  border-radius: 25px; 
  font-size: 0.8rem; 
  font-weight: 700;
  box-shadow: 0 4px 15px var(--shadow-medium);
}

.service-icon { 
  font-size: 3rem; 
  margin-bottom: 1rem;
  display: block;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.service-card h3 { 
  color: var(--secondary); 
  margin-bottom: 0.8rem; 
  font-size: 1.4rem;
}

.service-price { 
  font-size: 1.8rem; 
  font-weight: 700; 
  color: var(--tertiary); 
  margin: 0.8rem 0;
  text-shadow: 0 2px 4px var(--shadow-medium);
}

.original-price { 
  font-size: 1.1rem; 
  text-decoration: line-through; 
  color: #999; 
  margin-left: 0.5rem; 
}

.service-features { 
  list-style: none; 
  padding: 0; 
  margin: 1.5rem 0; 
  text-align: left; 
}

.service-features li { 
  padding: 0.5rem 0; 
  color: #eae6f2; 
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before { 
  content: '✨'; 
  position: absolute;
  left: 0;
  top: 0.5rem;
  font-size: 0.8rem;
}

.services-cta { 
  text-align: center; 
  margin-top: 3rem; 
}

/* Tarot cards */
.tarot .card-grid { margin: 2rem 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.tarot-card { background: var(--light); color: var(--dark); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.tarot-card img { width: 100%; height: 220px; object-fit: cover; }
.tarot-card .card-body { padding: 1rem; }
.tarot .btn-dark { margin-top: .5rem; }

/* Astrology services */
.service-grid { margin-top: 1.2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service { background: rgba(180, 222, 189, .08); border: 1px solid var(--quaternary); padding: 1rem; border-radius: 14px; }

/* Enhanced Testimonials carousel */
.testimonials { 
  position: relative;
  padding: 6rem 0;
  background: var(--gradient-dark);
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(180, 222, 189, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 86, 192, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(245, 211, 196, 0.15) 0%, transparent 50%);
  animation: float 15s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.testimonials .carousel { 
  position: relative; 
  overflow: hidden; 
  border-radius: 25px; 
  border: 2px solid var(--quaternary); 
  background: rgba(180, 222, 189, 0.1);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.carousel-track { 
  display: flex; 
  transition: transform 0.6s ease; 
}

.testimonial { 
  min-width: 100%; 
  padding: 3rem 2rem; 
  text-align: center; 
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: var(--tertiary);
  opacity: 0.3;
  font-family: serif;
}

.testimonial blockquote { 
  font-size: clamp(1.2rem, 1rem + 1.5vw, 1.6rem); 
  color: #ffffff; 
  margin: 2rem 0 1rem; 
  font-style: italic;
  line-height: 1.6;
  text-shadow: 0 2px 4px var(--shadow-medium);
}

.testimonial figcaption { 
  color: var(--secondary); 
  font-weight: 600;
  font-size: 1.1rem;
}

.carousel-btn { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  background: var(--gradient-primary); 
  border: 2px solid var(--quaternary); 
  color: #fff; 
  width: 50px; 
  height: 50px; 
  border-radius: 50%; 
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-medium);
  font-size: 1.2rem;
  font-weight: bold;
}

.carousel-btn:hover { 
  background: var(--gradient-secondary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px var(--shadow-dark);
}

.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }

/* Enhanced Contact Section */
.contact { 
  position: relative;
  padding: 6rem 0;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(78, 86, 192, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(180, 222, 189, 0.1) 0%, transparent 50%);
  z-index: -1;
}

.contact .contact-list { 
  list-style: none; 
  padding: 0; 
  margin: 0 0 2rem; 
  display: grid; 
  gap: 1rem; 
}

.contact .contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(180, 222, 189, 0.1);
  border-radius: 15px;
  border: 1px solid var(--quaternary);
  transition: all 0.3s ease;
}

.contact .contact-list li:hover {
  transform: translateX(10px);
  background: rgba(180, 222, 189, 0.15);
}

.contact .contact-list li span {
  font-size: 1.5rem;
  color: var(--tertiary);
}

.form { 
  display: grid; 
  gap: 1.5rem; 
  background: rgba(180, 222, 189, 0.1); 
  border: 2px solid var(--quaternary); 
  padding: 2rem; 
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.form input, .form textarea, .form select { 
  width: 100%; 
  padding: 1rem 1.2rem; 
  border-radius: 15px; 
  border: 2px solid var(--quaternary); 
  background: rgba(42, 45, 90, 0.8); 
  color: var(--light);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--tertiary);
  box-shadow: 0 0 20px rgba(245, 211, 196, 0.3);
  transform: translateY(-2px);
}

.form label {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.form button { 
  justify-self: start; 
  margin-top: 1rem;
}

/* Enhanced Footer */
.footer { 
  margin-top: 4rem; 
  border-top: 2px solid var(--quaternary); 
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(180, 222, 189, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(78, 86, 192, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.footer-inner { 
  display: grid; 
  grid-template-columns: 1fr auto auto; 
  align-items: center; 
  gap: 2rem; 
  padding: 2rem 0; 
  position: relative;
  z-index: 1;
}

.foot-links { 
  list-style: none; 
  display: flex; 
  gap: 1.5rem; 
  margin: 0; 
  padding: 0; 
}

.foot-links a { 
  color: #eae6f2; 
  text-decoration: none; 
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.foot-links a:hover { 
  color: var(--tertiary);
  background: rgba(245, 211, 196, 0.1);
  transform: translateY(-2px);
}

.social a { 
  color: #eae6f2; 
  text-decoration: none; 
  margin-left: 1rem; 
  display: inline-flex; 
  align-items: center; 
  padding: 0.8rem; 
  border-radius: 50%; 
  transition: all 0.3s ease;
  background: rgba(180, 222, 189, 0.1);
  border: 1px solid var(--quaternary);
}

.social a:hover { 
  color: var(--tertiary); 
  background: var(--gradient-tertiary);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px var(--shadow-medium);
}

.social svg { 
  width: 24px; 
  height: 24px; 
}

.copy { 
  text-align: center; 
  color: var(--quaternary); 
  margin: 0; 
  padding: 1rem 0; 
  font-size: 1rem;
  border-top: 1px solid rgba(145, 173, 200, 0.2);
  position: relative;
  z-index: 1;
}

.dev-note { 
  color: var(--secondary); 
  opacity: 0.9; 
  padding-bottom: 1.5rem; 
  font-weight: 500;
}

/* Admin & Modals */
.admin-btn { background: rgba(180, 222, 189, .15); border-radius: 6px !important; }
.modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,.7); }
.modal-content { background: var(--dark); margin: 5% auto; padding: 2rem; border: 1px solid var(--quaternary); border-radius: 16px; width: min(500px, 90%); max-height: 80vh; overflow-y: auto; }
.modal-content.admin-dashboard { width: min(800px, 95%); }
.close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
.close:hover { color: var(--tertiary); }
.modal form { display: grid; gap: 1rem; margin-top: 1rem; }
.modal input, .modal textarea, .modal select { padding: .8rem; border-radius: 8px; border: 1px solid var(--quaternary); background: var(--dark); color: var(--light); }
.modal label { color: var(--secondary); font-weight: 600; }

/* Admin Dashboard */
.admin-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.tab-btn { padding: .8rem 1.2rem; border: 1px solid var(--quaternary); background: transparent; color: var(--light); border-radius: 8px; cursor: pointer; }
.tab-btn.active { background: var(--primary); color: var(--white); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.service-edit { background: rgba(180, 222, 189, .08); border: 1px solid var(--quaternary); padding: 1rem; border-radius: 12px; margin-bottom: 1rem; }
.service-edit input, .service-edit textarea { width: 100%; margin-top: .3rem; }
.review-item { background: rgba(180, 222, 189, .08); border: 1px solid var(--quaternary); padding: 1rem; border-radius: 12px; margin-bottom: 1rem; }
.review-actions { display: flex; gap: .5rem; margin-top: .5rem; }
.btn-approve { background: #28a745; color: white; padding: .4rem .8rem; border: none; border-radius: 6px; cursor: pointer; }
.btn-reject { background: #dc3545; color: white; padding: .4rem .8rem; border: none; border-radius: 6px; cursor: pointer; }
.testimonials-cta { text-align: center; margin-top: 1.5rem; }

/* Utilities */
.section-lead { color: var(--light); margin-top: .2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .container { width: 95%; }
  .services-overview .services-grid { gap: 1.5rem; }
}

@media (max-width: 900px) {
  .grid.two { 
    grid-template-columns: 1fr; 
    gap: 3rem;
  }
  .services-cards-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .service-card-complete {
    margin: 0 1rem;
    flex: none;
  }
  .service-card-image {
    height: 200px;
  }
  .services-overview .services-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.5rem;
  }
  .tarot .card-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .service-grid { 
    grid-template-columns: 1fr; 
  }
  .hero-inner {
    padding: 6rem 0;
  }
  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 720px) {
  .nav-toggle { 
    display: inline-block; 
  }
  .nav-list { 
    position: absolute; 
    right: 4%; 
    top: 70px; 
    background: rgba(42, 45, 90, 0.95); 
    border: 2px solid var(--quaternary); 
    border-radius: 20px; 
    padding: 1rem; 
    flex-direction: column; 
    gap: 0.5rem; 
    display: none;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px var(--shadow-dark);
  }
  .nav-list.show { 
    display: flex; 
  }
  .services-cards-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .service-card-image {
    height: 180px;
  }
  .service-card-content {
    padding: 1.5rem;
  }
  .service-card-content h3 {
    font-size: 1rem;
  }
  .service-card-description {
    font-size: 0.9rem;
  }
  .service-card-footer {
    flex-direction: column;
    gap: 0.8rem;
  }
  .services-overview .services-grid { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
  }
  .tarot .card-grid { 
    grid-template-columns: 1fr; 
  }
  .hero-inner {
    padding: 4rem 0;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .service-card {
    padding: 1.5rem;
  }
  .testimonial {
    padding: 2rem 1rem;
  }
  .form {
    padding: 1.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .foot-links {
    justify-content: center;
  }
  .social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  .services-cards-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .service-card-complete {
    margin: 0 1rem;
    flex: none;
  }
  .service-card-image {
    height: 200px;
  }
  .service-card-content {
    padding: 1.5rem;
  }
  .service-card-content h3 {
    font-size: 1.1rem;
  }
  .service-card-description {
    font-size: 0.9rem;
  }
  .feature-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }
  .service-card-footer {
    flex-direction: column;
    gap: 0.8rem;
  }
  .service-price {
    font-size: 1.2rem;
  }
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  .service-card {
    padding: 1rem;
  }
  .service-icon {
    font-size: 2.5rem;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .carousel-btn.prev {
    left: 0.5rem;
  }
  .carousel-btn.next {
    right: 0.5rem;
  }
}

/* Additional Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll animations */
.service-card {
  animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(2) {
  animation-delay: 0.1s;
}

.service-card:nth-child(3) {
  animation-delay: 0.2s;
}

.service-card:nth-child(4) {
  animation-delay: 0.3s;
}

.service-card:nth-child(5) {
  animation-delay: 0.4s;
}

.service-card:nth-child(6) {
  animation-delay: 0.5s;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--tertiary);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Alert messages for forms */
.alert {
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  border: none;
  animation: slideIn 0.3s ease-out;
}

.alert-success {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border-left: 4px solid #28a745;
}

.alert-error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-left: 4px solid #dc3545;
}

.alert-info {
  background: rgba(23, 162, 184, 0.1);
  color: #17a2b8;
  border-left: 4px solid #17a2b8;
}

/* Loading button states */
.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Form enhancements */
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(78, 86, 192, 0.1);
  transform: translateY(-1px);
}

.form input:invalid,
.form select:invalid,
.form textarea:invalid {
  border-color: #dc3545;
}

.form input:valid,
.form select:valid,
.form textarea:valid {
  border-color: #28a745;
}

/* Animation for alerts */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsive adjustments for alerts */
@media (max-width: 768px) {
  .alert {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}

/* Courses Section Styles */
.courses {
  background: var(--gradient-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.courses::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(180, 222, 189, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 86, 192, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%);
  animation: float 15s ease-in-out infinite;
  pointer-events: none;
}

.courses .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.courses-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media (min-width: 768px) {
  .courses-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .courses-grid {
    flex-direction: column;
  }
}

.course-card {
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #333;
  flex: 1;
  min-height: 400px;
  margin: 0 0.5rem;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.course-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.course-level {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.course-content {
  padding: 2rem;
}

.course-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.course-instructor {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.course-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(78, 86, 192, 0.1);
  border-radius: 10px;
}

.course-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.course-duration i {
  color: var(--primary);
}

.course-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.original-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.courses-cta {
  text-align: center;
  margin-top: 3rem;
}

.no-courses {
  text-align: center;
  padding: 3rem;
  color: var(--light);
  font-size: 1.1rem;
}

/* Mobile responsive for courses */
@media (max-width: 767px) {
  .courses-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .course-card {
    margin: 0 1rem;
    flex: none;
  }
  
  .course-content {
    padding: 1.5rem;
  }
  
  .course-meta {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ========================================
   ENHANCED CONTACT SECTION STYLES
   ======================================== */
.contact-enhanced {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.contact-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(180, 222, 189, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 86, 192, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
    pointer-events: none;
}

.contact-enhanced .container {
    position: relative;
    z-index: 2;
}

/* Enhanced Form Styling for Contact Form */
.enhanced-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.enhanced-form .form-group {
    margin-bottom: 1.5rem;
}

.enhanced-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #495057;
    font-weight: 600;
    font-size: 0.95rem;
}

.enhanced-form .form-group label i {
    color: var(--primary);
    font-size: 0.9rem;
}

.enhanced-form .form-group input,
.enhanced-form .form-group textarea,
.enhanced-form .form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #f8f9fa;
    color: var(--dark);
    font-family: inherit;
}

.enhanced-form .form-group input:focus,
.enhanced-form .form-group textarea:focus,
.enhanced-form .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(78, 86, 192, 0.1);
    transform: translateY(-1px);
}

.enhanced-form .form-group input::placeholder,
.enhanced-form .form-group textarea::placeholder {
    color: #6c757d;
    opacity: 1;
}

.enhanced-form .char-count {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--secondary);
    margin-top: 0.25rem;
}

.enhanced-form .form-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(78, 86, 192, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    font-size: 0.9rem;
    color: #495057;
}

.enhanced-form .form-note i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Enhanced Form Responsive Styles */
@media (max-width: 768px) {
    .enhanced-form {
        padding: 1.5rem;
    }
    
    .enhanced-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .enhanced-form {
        padding: 1.25rem;
    }
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(78, 86, 192, 0.2);
    border: 1px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-card {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-header h3 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-card-header p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(78, 86, 192, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.contact-details h4 {
    margin: 0 0 0.25rem 0;
    color: #495057;
}

.contact-details p {
    margin: 0;
    color: var(--primary);
    font-weight: 600;
}

.contact-details small {
    color: #6c757d;
}

.contact-features h4 {
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-features ul {
    list-style: none;
    padding: 0;
}

.contact-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.form-header h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.enhanced-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.enhanced-form .form-group {
    margin-bottom: 1.5rem;
}

.enhanced-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.enhanced-form input,
.enhanced-form select,
.enhanced-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.enhanced-form input:focus,
.enhanced-form select:focus,
.enhanced-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(78, 86, 192, 0.2);
}

.enhanced-form input::placeholder,
.enhanced-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.enhanced-form select option {
    background: #1a1a2e;
    color: var(--white);
}

.char-count {
    display: block;
    text-align: right;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    color: var(--white);
    font-size: 0.8rem;
}

.btn-enhanced {
    background: linear-gradient(135deg, #4e56c0 0%, #6c5ce7 100%);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(78, 86, 192, 0.3);
}

.btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 86, 192, 0.4);
}

.form-note {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ========================================
   ENHANCED TAROT SECTION STYLES
   ======================================== */
.tarot-enhanced {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.tarot-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(180, 222, 189, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 86, 192, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width=\'60\' height=\'60\' viewBox=\'0 0 60 60\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cg fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg fill=\'%23ffffff\' fill-opacity=\'0.02\'%3E%3Ccircle cx=\'30\' cy=\'30\' r=\'2\'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 15s ease-in-out infinite;
    pointer-events: none;
}

.tarot-enhanced .container {
    position: relative;
    z-index: 2;
}

.tarot-header {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.tarot-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.tarot-badge {
    background: rgba(78, 86, 192, 0.2);
    border: 1px solid var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
}

.tarot-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.tarot-card {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.tarot-card-header h3 {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tarot-card-header p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tarot-features h4 {
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.tarot-features ul {
    list-style: none;
    padding: 0;
}

.tarot-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tarot-features li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.tarot-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tarot-service-card {
    background: var(--white);
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tarot-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.tarot-service-card h4 {
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tarot-service-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.duration {
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.price {
    color: var(--primary);
    font-weight: 600;
}

.tarot-process {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(78, 86, 192, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.tarot-process h3 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -0.75rem;
    width: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
}

.step-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.tarot-cta {
    background: rgba(78, 86, 192, 0.1);
    border: 1px solid rgba(78, 86, 192, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */
.about-hero {
    background: var(--gradient-dark);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width=\'60\' height=\'60\' viewBox=\'0 0 60 60\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cg fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg fill=\'%23ffffff\' fill-opacity=\'0.02\'%3E%3Ccircle cx=\'30\' cy=\'30\' r=\'2\'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-text p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(78, 86, 192, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.about-feature i {
    color: var(--primary);
    font-size: 1.5rem;
}

.about-feature h4 {
    color: var(--primary);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.about-feature p {
    color: var(--text);
    margin: 0;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--gradient-primary);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.1;
}

.our-story {
    background: rgba(78, 86, 192, 0.03);
    padding: 4rem 0;
    margin: 4rem 0;
}

.our-story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.our-story h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.our-story p {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* About Me Section */
.about-me-section {
    background: rgba(78, 86, 192, 0.03);
    padding: 4rem 0;
    margin: 4rem 0;
}

.about-me-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-me-text {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(78, 86, 192, 0.1);
}

.about-me-text h2 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: left;
}

.about-me-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.about-me-list li {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-me-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.about-me-quote {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(78, 86, 192, 0.1);
}

.about-me-quote p {
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.about-me-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-me-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-me-image img:hover {
    transform: scale(1.02);
}

/* Responsive About Me Section */
@media (max-width: 768px) {
    .about-me-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-me-text {
        padding: 2rem;
    }
    
    .about-me-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-me-list li {
        font-size: 1rem;
    }
    
    .about-me-quote p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-me-section {
        padding: 2rem 0;
        margin: 2rem 0;
    }
    
    .about-me-text {
        padding: 1.5rem;
    }
    
    .about-me-text h2 {
        font-size: 1.8rem;
    }
    
    .about-me-list li {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }
}

.our-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 86, 192, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(78, 86, 192, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text);
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.team-content {
    text-align: center;
    margin-bottom: 3rem;
}

.team-content h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.team-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 86, 192, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--white);
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-member .role {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-style: italic;
}

.team-member p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ========================================
   ENHANCED TESTIMONIALS SECTION STYLES
   ======================================== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(78, 86, 192, 0.03) 0%, rgba(255, 255, 255, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width=\'60\' height=\'60\' viewBox=\'0 0 60 60\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cg fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg fill=\'%234e56c0\' fill-opacity=\'0.02\'%3E%3Ccircle cx=\'30\' cy=\'30\' r=\'2\'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonials-content h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    color: var(--text);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.testimonials-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(78, 86, 192, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonials-stats .stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(78, 86, 192, 0.15);
}

.testimonials-stats .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.testimonials-stats .stat-label {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(78, 86, 192, 0.1);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(78, 86, 192, 0.15);
}

.testimonial-card-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(78, 86, 192, 0.1);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-rating {
    margin-bottom: 0.5rem;
}

.testimonial-rating .fas.fa-star {
    color: #ddd;
    font-size: 0.9rem;
    margin: 0 1px;
}

.testimonial-rating .fas.fa-star.active {
    color: #ffc107;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.review-date {
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.8rem;
}

.testimonial-quote-icon {
    color: rgba(78, 86, 192, 0.3);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-content {
    padding: 1rem 1.5rem;
}

.testimonial-text {
    color: var(--primary);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    position: relative;
}

.testimonial-text::before {
    content: "";
    font-size: 3rem;
    color: rgba(78, 86, 192, 0.2);
    position: absolute;
    top: -10px;
    left: -5px;
    font-family: serif;
}

.testimonial-card-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(78, 86, 192, 0.1);
}

.testimonial-service {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-service i {
    font-size: 0.8rem;
}

.testimonials-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonials-cta .cta-content {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(78, 86, 192, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-cta h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.testimonials-cta p {
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

/* ========================================
   MODAL STYLES
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #4e56c0 0%, #6c5ce7 100%);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.modal-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-header h3 i {
    color: #ffc107;
    font-size: 1.2rem;
}

.close {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    color: #ffc107;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #495057;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #f8f9fa;
    color: var(--dark);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(78, 86, 192, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6c757d;
    opacity: 1;
}

/* Enhanced Review Form Styles */
.rating-input {
    margin-top: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    justify-content: center;
}

.stars i {
    font-size: 2rem;
    color: #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stars i:hover,
.stars i.active {
    color: #ffc107;
    transform: scale(1.15);
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.rating-text {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    margin-top: 0.5rem;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--secondary);
    margin-top: 0.25rem;
}

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--quaternary);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.btn-secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #dee2e6;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
    transform: translateY(-1px);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.rating-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars .fas.fa-star {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.stars .fas.fa-star:hover,
.stars .fas.fa-star.active {
    color: #ffc107;
}

.rating-text {
    color: var(--text);
    font-size: 0.9rem;
}

.char-count {
    display: block;
    text-align: right;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    color: var(--white);
    font-size: 0.8rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #4e56c0 0%, #6c5ce7 100%);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(78, 86, 192, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 86, 192, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.15);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.alert.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* ========================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ======================================== */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tarot-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tarot-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .our-values {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-stats {
        gap: 2rem;
    }
    
    .testimonials-stats .stat-item {
        padding: 1rem;
    }
    
    .testimonials-stats .stat-number {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

@media (max-width: 768px) {
    .enhanced-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .tarot-services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tarot-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .our-values {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .testimonials-stats .stat-item {
        width: 200px;
    }
    
    .testimonials-content h2 {
        font-size: 2.5rem;
    }
    
    .testimonials-cta .cta-content {
        padding: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Enhanced Review Form Responsive Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1% auto;
        max-width: none;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .stars i {
        font-size: 1.8rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stars i {
        font-size: 1.6rem;
    }
    
    .modal-body {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .testimonials-content h2 {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-stats .stat-item {
        width: 100%;
        max-width: 250px;
    }
    
    .testimonial-card-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .testimonial-content {
        padding: 1rem;
    }
    
    .testimonial-card-footer {
        padding: 1rem;
    }
    
    .testimonials-cta .cta-content {
        padding: 1.5rem;
    }
    
    .testimonials-cta h3 {
        font-size: 1.5rem;
    }
}

/* ================================
   Policy Pages Styling (Refund Policy, etc.)
   ================================ */

.policy-content {
    background: var(--gradient-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.policy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(180, 222, 189, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 86, 192, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
    pointer-events: none;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.policy-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.policy-intro .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.policy-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(78, 86, 192, 0.2);
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--primary);
}

.policy-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(78, 86, 192, 0.4);
}

.policy-content-block {
    flex: 1;
}

.policy-content-block h3 {
    color: var(--dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-content-block p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content-block strong {
    color: var(--primary);
    font-weight: 600;
}

.policy-highlight {
    background: rgba(78, 86, 192, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.policy-highlight i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.policy-highlight p {
    margin: 0;
    color: var(--dark);
    font-weight: 500;
}

.policy-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(78, 86, 192, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(78, 86, 192, 0.15);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(78, 86, 192, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.step-item i {
    font-size: 2rem;
    color: var(--primary);
    background: rgba(78, 86, 192, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-item span {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.contact-box {
    background: linear-gradient(135deg, rgba(78, 86, 192, 0.08), rgba(180, 222, 189, 0.08));
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.contact-box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(78, 86, 192, 0.2);
}

.contact-box-header i {
    font-size: 2rem;
    color: var(--primary);
}

.contact-box-header h4 {
    margin: 0;
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-box-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-box-details .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-box-details .contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.contact-box-details .contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-box-details .contact-item a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.contact-box-details .contact-item span {
    color: #333;
}

.policy-note {
    background: rgba(255, 193, 7, 0.15);
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.policy-note i {
    color: #ffc107;
    font-size: 1.3rem;
}

.policy-note p {
    margin: 0;
    color: var(--dark);
}

.policy-cta {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary);
}

.policy-cta h3 {
    color: var(--dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(78, 86, 192, 0.3);
}

/* Responsive Policy Page */
@media (max-width: 768px) {
    .policy-section {
        flex-direction: column;
        padding: 2rem;
    }

    .policy-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .policy-content-block h3 {
        font-size: 1.5rem;
    }

    .policy-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .policy-cta {
        padding: 2rem;
    }

    .policy-cta h3 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-outline,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 1.5rem;
    }

    .policy-steps {
        grid-template-columns: 1fr;
    }

    .policy-intro .lead {
        font-size: 1rem;
    }
}

/* ================================
   Page Hero Section (Services & Courses Pages)
   ================================ */

.page-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 8rem 0 5rem;
  text-align: center;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(78, 86, 192, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(108, 92, 231, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-breadcrumb a:hover {
  color: var(--white);
  transform: translateX(-2px);
}

.hero-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.4);
}

.hero-breadcrumb .current {
  color: var(--white);
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
  min-width: 150px;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(78, 86, 192, 0.5);
  box-shadow: 0 10px 30px rgba(78, 86, 192, 0.3);
}

.stat-item i {
  font-size: 2rem;
  color: var(--primary);
  background: rgba(78, 86, 192, 0.2);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
  .page-hero {
    padding: 6rem 0 4rem;
    min-height: 400px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 5rem 0 3rem;
    min-height: 350px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1.25rem 1.5rem;
    min-width: 130px;
  }

  .stat-item i {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 4rem 0 2.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    width: 100%;
    max-width: 280px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  .stat-item i {
    margin-bottom: 0;
  }

  .hero-breadcrumb {
    font-size: 0.85rem;
    padding: 0.45rem 1.25rem;
  }
}

/* ================================
   Content Section Background (After Hero)
   ================================ */

.services-overview,
.courses-overview {
  position: relative;
  background: var(--gradient-dark);
  padding: 5rem 0;
  overflow: hidden;
}

.services-overview::before,
.courses-overview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(180, 222, 189, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(78, 86, 192, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 50%);
  animation: float 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translate(50px, -60px) scale(1.2) rotate(5deg);
    opacity: 0.9;
  }
  50% {
    transform: translate(-30px, 40px) scale(0.8) rotate(-5deg);
    opacity: 0.95;
  }
  75% {
    transform: translate(40px, 30px) scale(1.15) rotate(3deg);
    opacity: 0.92;
  }
}

.services-overview .container,
.courses-overview .container {
  position: relative;
  z-index: 2;
}

/* ================================
   2-Column Grid Layout for Services & Courses Pages
   ================================ */

.services-grid-2col,
.courses-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile: 1 column */
@media (max-width: 768px) {
  .services-grid-2col,
  .courses-grid-2col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 1rem;
  }
}

/* Tablet: Keep 2 columns but adjust gap */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid-2col,
  .courses-grid-2col {
    gap: 1.5rem;
    max-width: 900px;
  }
}

/* ================================
   Custom Pagination Styling
   ================================ */

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 2rem 0;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination li {
  margin: 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  min-width: 44px;
  height: 44px;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  border: 2px solid transparent;
}

.pagination a {
  background: rgba(78, 86, 192, 0.08);
  color: var(--primary);
  border-color: rgba(78, 86, 192, 0.15);
}

.pagination a:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(78, 86, 192, 0.35);
  border-color: var(--primary);
}

.pagination .active span {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(78, 86, 192, 0.3);
  cursor: default;
}

.pagination .disabled span {
  background: rgba(0, 0, 0, 0.05);
  color: #999;
  border-color: rgba(0, 0, 0, 0.08);
  cursor: not-allowed;
  opacity: 0.6;
}

/* Pagination Info Text */
.pagination-info {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  background: rgba(78, 86, 192, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(78, 86, 192, 0.1);
}

/* Responsive Pagination */
@media (max-width: 768px) {
  .pagination-container {
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem 0;
  }

  .pagination a,
  .pagination span {
    padding: 0.65rem 0.85rem;
    min-width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .pagination-info {
    font-size: 0.85rem;
    padding: 0.65rem 1.25rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pagination {
    gap: 0.35rem;
  }

  .pagination a,
  .pagination span {
    padding: 0.5rem 0.65rem;
    min-width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

/* Payment Modal Styles */
.payment-modal-content {
  max-width: 600px;
  max-height: 90vh;
}

.payment-item-details {
  background: linear-gradient(135deg, rgba(78, 86, 192, 0.1), rgba(180, 222, 189, 0.1));
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(78, 86, 192, 0.2);
}

.payment-item-details h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.payment-item-details p {
  color: #666;
  margin: 0.25rem 0;
  font-size: 0.95rem;
}

.payment-item-details .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.5rem;
}

.payment-summary {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: #666;
}

.summary-row.total {
  border-top: 2px solid #dee2e6;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  font-size: 1.1rem;
}

.summary-row .amount {
  color: var(--primary);
  font-weight: 600;
}

.required {
  color: #dc3545;
}

/* Payment Success Modal */
.payment-success-content {
  max-width: 500px;
  text-align: center;
  padding: 3rem 2rem;
}

.payment-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPop 0.5s ease-out;
}

.payment-success-icon i {
  font-size: 3rem;
  color: white;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.payment-success-content h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.payment-success-content p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.payment-details {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  text-align: left;
}

.payment-details .detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: #666;
}

.payment-details .detail-row:last-child {
  margin-bottom: 0;
}

.payment-details .detail-row strong {
  color: var(--dark);
}

/* Buy Now Button */
.btn-buy-now {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  background: linear-gradient(135deg, #218838, #1aa179);
}

.btn-buy-now i {
  font-size: 1.1rem;
}

/* Responsive Payment Modals */
@media (max-width: 768px) {
  .payment-modal-content {
    max-width: 95%;
    margin: 5% auto;
  }

  .payment-item-details {
    padding: 1rem;
  }

  .payment-summary {
    padding: 1rem;
  }

  .payment-success-content {
    padding: 2rem 1.5rem;
  }

  .payment-success-icon {
    width: 60px;
    height: 60px;
  }

  .payment-success-icon i {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .btn-buy-now {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .summary-row.total {
    font-size: 1rem;
  }

  .payment-success-content h2 {
    font-size: 1.5rem;
  }
}