/* CSS Variables */
:root {
  --primary-color: #6A0DAD;
  --secondary-color: #B084CC;
  --accent-color: #B084CC;
  --background-color: #ffffff;
  --light-background: #f8f8f8;
  --gradient-background: linear-gradient(135deg, #B084CC 0%, #6A0DAD 100%);
  --text-dark: #333333;
  --text-light: #666666;
  --border-radius: 15px;
  --box-shadow: 0 8px 25px rgba(106, 13, 173, 0.1);
  --hover-shadow: 0 15px 40px rgba(106, 13, 173, 0.2);
  --transition: all 0.3s ease;
}

/* Base Styles */
body {
  font-family: 'Fira Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-color);
}

/* Decorative Elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(176, 132, 204, 0.1) 0%, rgba(106, 13, 173, 0.1) 100%);
  z-index: -1;
}

.decorative-circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.decorative-circle-2 {
  width: 250px;
  height: 250px;
  bottom: -75px;
  left: -75px;
}

.decorative-circle-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
}

/* Header Styles */
.navbar {
  background-color: var(--secondary-color) !important;
  box-shadow: var(--box-shadow);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: white !important;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: var(--transition);
  border-radius: 8px;
  margin: 0 0.2rem;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: var(--gradient-background);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Card Styles */
.custom-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(176, 132, 204, 0.1);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
}

.custom-card .card-body {
  padding: 2rem;
}

.custom-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Image Containers */
.image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.image-container img {
  transition: var(--transition);
}

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

.circular-image {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border: 8px solid white;
  box-shadow: var(--box-shadow);
}

/* Section Styles */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
}

/* Light Background Sections */
.light-bg {
  background-color: var(--light-background);
  position: relative;
}

/* Buttons */
.btn-primary-custom {
  background: var(--gradient-background);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
  color: white;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: var(--hover-shadow);
  color: white;
}

/* Lists */
.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid rgba(176, 132, 204, 0.1);
}

.custom-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Numbered List */
.numbered-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

.numbered-list li {
  counter-increment: item;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  padding-left: 4rem;
}

.numbered-list li:before {
  content: counter(item);
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-background);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.testimonial-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--accent-color);
}

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 3rem 0 2rem;
}

footer h5 {
  color: white;
  margin-bottom: 1rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--hover-shadow);
  padding: 1.5rem;
  max-width: 400px;
  z-index: 1050;
  border: 1px solid var(--accent-color);
}

.cookie-popup .btn {
  margin: 0 0.5rem 0 0;
}

/* Form Styles */
.form-control {
  border-radius: 10px;
  border: 2px solid rgba(176, 132, 204, 0.2);
  padding: 12px 15px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(106, 13, 173, 0.25);
}

/* Page Headers */
.page-header {
  background: linear-gradient(135deg, rgba(176, 132, 204, 0.1) 0%, rgba(106, 13, 173, 0.1) 100%);
  padding: 12rem 0 8rem;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .circular-image {
    width: 200px;
    height: 200px;
  }
  
  .cookie-popup {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
    .decorative-circle-1 {
      display: none;
    }
    .decorative-circle-2 {
      display: none;
    }
    .decorative-circle-3 {
      display: none;
    } 
}
