/* Global Styles */
:root {
  --primary-color: #ff7b00;
  --secondary-color: #ff9a3c;
  --accent-color: #ffb366;
  --text-color: #333;
  --light-color: #fff;
  --dark-color: #2c2c2c;
  --border-color: #ffe0c0;
  --success-color: #4caf50;
  --error-color: #f44336;
  --box-shadow: 0 4px 15px rgba(255, 123, 0, 0.15);
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, #ff7b00, #ff9a3c);
  --gradient-secondary: linear-gradient(135deg, #ff9a3c, #ffb366);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: #000 !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #333 !important;
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.4);
}

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

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.btn-block {
  display: block;
  width: 100%;
}

section {
  padding: 80px 0;
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

.logo i {
  margin-right: 10px;
  color: var(--primary-color);
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

@media screen and (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav ul li {
    margin: 0 0 15px 0;
  }
  
  nav ul li a {
    display: block;
    padding: 10px 0;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
  padding: 150px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 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.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2H6zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 0;
  transition: none;
}

.hero .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  transition: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  transition: none;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  transition: none;
  transform: none !important;
  opacity: 1 !important;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  transition: none;
  transform: none !important;
  opacity: 1 !important;
}

.hero .btn {
  padding: 15px 35px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 1 !important;
}

.hero .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 992px) {
  .hero {
    padding: 120px 0;
    min-height: 450px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 100px 0;
    min-height: 400px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero .btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    padding: 80px 0;
    min-height: 350px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* Features Section */
.features {
  background-color: white;
  text-align: center;
}

.features h2 {
  margin-bottom: 50px;
}

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

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

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

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 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='%23ff9800' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

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

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 123, 0, 0.1), rgba(255, 154, 60, 0.05));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.25);
}

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

.service-card i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  transition: all 0.5s ease;
}

.service-card:hover i {
  transform: scale(1.1);
  color: var(--secondary-color);
  filter: drop-shadow(0 0 10px rgba(255, 123, 0, 0.5));
}

.service-card h3 {
  margin-bottom: 15px;
  transition: var(--transition);
}

.service-card p {
  margin-bottom: 25px;
  color: #666;
}

.service-card .btn {
  margin-top: auto;
  align-self: center;
}

.service-card .btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  transition: all 0.5s ease;
}

.service-card:hover .btn-secondary {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.view-all {
  text-align: center;
  margin-top: 20px;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  transition: all 0.5s ease;
}

.btn-outline:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
}

/* Glowing Effects */
@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(255, 123, 0, 0.3); }
  50% { box-shadow: 0 0 20px rgba(255, 123, 0, 0.5); }
  100% { box-shadow: 0 0 5px rgba(255, 123, 0, 0.3); }
}

.glow-effect {
  animation: glow 3s infinite;
}

.service-card:hover {
  animation: glow 2s infinite;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  position: relative;
  background: white;
  margin: 5% auto;
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.5s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.close-modal:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.modal-header {
  background: var(--gradient-primary);
  padding: 20px 30px;
  color: white;
  position: relative;
}

.modal-header h2 {
  margin: 0;
  color: white;
  font-size: 1.8rem;
}

.modal-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.modal-description {
  width: 100%;
  padding: 0;
}

.modal-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

#modalBenefits {
  margin-bottom: 30px;
}

#modalBenefits h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

#benefitsList {
  padding-left: 20px;
}

#benefitsList li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  list-style-type: none;
}

#benefitsList li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

.modal-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* Modal Responsive Styles */
@media screen and (min-width: 768px) {
  .modal-body {
    padding: 30px;
  }
  
  .modal-description {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
    padding-right: 30px;
  }
  
  .modal-cta {
    flex-direction: column;
  }
  
  .modal-cta .btn {
    width: 100%;
  }
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .service-card {
    height: auto;
    padding: 25px;
  }
}

@media screen and (max-width: 576px) {
  .service-card {
    padding: 20px;
  }
  
  .service-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
}

/* Testimonials Section */
.testimonials {
  background: var(--gradient-secondary);
  color: white;
}

.testimonials h2 {
  color: white;
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.testimonial-author {
  font-weight: 700;
  margin-top: 20px;
}

/* Calculator Section */
.calculator-form {
  background: linear-gradient(135deg, #fff5e6, #fff);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 123, 0, 0.2);
}

/* Results Section */
.results {
  background: linear-gradient(135deg, #fff5e6, #fff);
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: var(--box-shadow);
  display: none;
}

.number-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 123, 0, 0.1);
  transition: var(--transition);
}

.number-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(255, 123, 0, 0.2);
}

.number-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 15px;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(135deg, #fff5e6, #fff);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 30px 0;
  text-align: center;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.social-icons a {
  color: white;
  font-size: 1.2rem;
  margin-left: 15px;
  transition: var(--transition);
}

.social-icons a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Enhanced Footer Styles */
footer {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  color: white;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  text-align: left;
}

.footer-col h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.footer-col p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: white;
  background: var(--primary-color);
  transform: translateY(-3px);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.footer-bottom-links li a {
  color: #888;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-bottom-links li a:hover {
  color: var(--primary-color);
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    display: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* Services Page Styles */
.services-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.services-section:last-of-type {
  border-bottom: none;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-clickable {
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  padding: 20px;
  border-radius: 10px;
}

.service-clickable:hover {
  background: rgba(255, 123, 0, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.15);
}

.service-clickable::after {
  content: 'Tap to view details';
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--gradient-primary);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-clickable:hover::after {
  opacity: 1;
}

.service-icon {
  margin-bottom: 20px;
  color: var(--primary-color);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-content {
  max-width: 800px;
}

.service-content h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.service-content h3 {
  margin: 20px 0 10px;
  color: var(--secondary-color);
}

.service-content ul {
  margin-bottom: 30px;
  text-align: left;
  display: inline-block;
}

.service-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.service-content li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

@media screen and (min-width: 768px) {
  .service-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  
  .service-icon {
    margin-right: 40px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .service-content ul {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .service-clickable::after {
    position: static;
    display: block;
    margin: 10px auto 0;
    width: fit-content;
  }
}

/* Clickable Service Items */
.service-item.service-clickable {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.service-item.service-clickable:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-item.service-clickable::after {
  content: 'Click for details';
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(255, 123, 0, 0.1);
  color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item.service-clickable:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .service-item.service-clickable::after {
    display: none;
  }
}

/* Booking Page Styles */
.booking-process {
  padding: 80px 0;
  background-color: #f9f7f5;
  position: relative;
  overflow: hidden;
}

.booking-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 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='%23ff7b00' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.booking-process .container {
  position: relative;
  z-index: 1;
}

.booking-process h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #333;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.booking-process h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 123, 0, 0.1);
  overflow: hidden;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 123, 0, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.2);
  position: relative;
  z-index: 1;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background-color: rgba(255, 123, 0, 0.1);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.step-content {
  width: 100%;
}

.step-content h3 {
  margin: 0 0 15px 0;
  font-size: 1.4rem;
  color: #333;
  font-weight: 600;
}

.step-content p {
  margin: 0;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .booking-process {
    padding: 60px 0;
  }
  
  .booking-process h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .booking-process {
    padding: 50px 0;
  }
  
  .booking-process h2 {
    font-size: 2rem;
    margin-bottom: 35px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  
  .step {
    padding: 25px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .step-content h3 {
    font-size: 1.3rem;
  }
  
  .step-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .booking-process {
    padding: 40px 0;
  }
  
  .booking-process h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .step {
    padding: 20px;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .step-content p {
    font-size: 0.95rem;
  }
}

.booking-services {
  padding: 80px 0;
}

.booking-services .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.booking-services .service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: auto;
}

.booking-services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 123, 0, 0.2);
}

.service-header {
  background: var(--gradient-primary);
  padding: 25px 30px;
  color: white;
}

.service-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.service-duration {
  margin: 5px 0 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.service-price {
  background: rgba(255, 123, 0, 0.1);
  padding: 15px 30px;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.service-description {
  padding: 30px;
  flex-grow: 1;
}

.service-description h4 {
  color: var(--primary-color);
  margin: 25px 0 15px;
  font-size: 1.2rem;
}

.service-description ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-description li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.service-description li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 30px 30px;
  background: #25D366;
  border-color: #25D366;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
  font-size: 1.2rem;
}

.booking-faq {
  padding: 60px 0;
  background-color: rgba(255, 123, 0, 0.05);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.15);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.cta {
  padding: 80px 0;
  text-align: center;
  background: var(--gradient-primary);
  color: white;
}

.cta h2 {
  color: white;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.1rem;
}

@media screen and (min-width: 768px) {
  .booking-services .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  }
}

@media screen and (max-width: 767px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .booking-services .service-card {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-header h3 {
    font-size: 1.3rem;
  }
  
  .btn-whatsapp {
    margin: 0 20px 20px;
  }
}

/* Service Buttons */
.service-buttons, .cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.service-buttons .btn, .cta-buttons .btn {
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-buttons .btn-whatsapp, .cta-buttons .btn-whatsapp {
  background-color: #25D366;
  border-color: #25D366;
  color: white;
}

.service-buttons .btn-whatsapp:hover, .cta-buttons .btn-whatsapp:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

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

@media (max-width: 576px) {
  .service-buttons, .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cta-buttons {
    align-items: center;
  }
  
  .service-buttons .btn, .cta-buttons .btn {
    width: 100%;
  }
}

/* Service Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: white;
  border-radius: 10px;
  max-width: 900px;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  margin: 30px auto;
  overflow: hidden;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.close-modal:hover {
  transform: scale(1.2);
  color: #333;
}

.modal-body {
  padding: 0;
}

.service-modal-content {
  display: flex;
  flex-direction: column;
}

.service-modal-image {
  height: 300px;
  overflow: hidden;
}

.service-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-modal-details {
  padding: 30px;
}

.service-modal-details h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 2rem;
}

.service-modal-description {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #555;
}

.service-modal-details h3 {
  color: var(--primary-color);
  margin: 20px 0 15px;
  font-size: 1.4rem;
}

.service-modal-benefits {
  margin-bottom: 25px;
  padding-left: 20px;
}

.service-modal-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.service-modal-benefits li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

.service-modal-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
  padding: 10px 15px;
  background-color: rgba(255, 123, 0, 0.1);
  border-radius: 8px;
  display: inline-block;
  border-left: 4px solid var(--primary-color);
}

.service-modal-benefits {
  margin-bottom: 25px;
  padding-left: 20px;
}

.service-modal-benefits li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  font-size: 1.05rem;
}

.service-modal-benefits li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

.btn-book-modal {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.1rem;
  margin-top: 10px;
  margin-right: 10px;
}

@media screen and (min-width: 768px) {
  .service-modal-content {
    flex-direction: row;
  }
  
  .service-modal-image {
    width: 40%;
    height: auto;
  }
  
  .service-modal-details {
    width: 60%;
    padding: 40px;
  }
}

@media screen and (max-width: 767px) {
  .modal-content {
    width: 95%;
    margin: 15px auto;
  }
  
  .service-modal-image {
    height: 200px;
  }
  
  .service-modal-details {
    padding: 20px;
  }
  
  .service-modal-details h2 {
    font-size: 1.6rem;
  }
  
  .service-modal-details h3 {
    font-size: 1.2rem;
  }
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
  .service-modal-price-container {
    padding: 12px 15px;
  }
  
  .service-modal-price-value {
    font-size: 1.5rem;
  }
  
  .service-modal-section-title {
    font-size: 1.2rem;
  }
  
  .service-modal-description,
  .service-modal-format {
    font-size: 1rem;
  }
  
  .service-modal-benefits li,
  .service-modal-included li {
    font-size: 1rem;
    padding-left: 25px;
  }
}

/* Highlight effect for selected service */
@keyframes highlightService {
  0% {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.1);
  }
  25% {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 123, 0, 0.2);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 123, 0, 0.15);
  }
  75% {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 123, 0, 0.2);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.1);
  }
}

.highlight-service {
  animation: highlightService 2s ease-in-out;
  border: 2px solid var(--primary-color);
  position: relative;
}

.highlight-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 123, 0, 0.05);
  z-index: -1;
  pointer-events: none;
}

.highlight-service::after {
  content: 'Selected Service';
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* How Numerology Works Section */
.how-numerology-works {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-top: 5px solid var(--primary-color);
}

.how-numerology-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 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='%23ff9800' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

.how-numerology-works .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Process Items */
.numerology-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 70px;
}

.process-item {
  flex: 0 0 calc(33.333% - 30px);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.process-icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
}

.icon-container {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #FF5722 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

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

.planet-orbit {
  width: 120px;
  height: 120px;
  border: 2px dashed rgba(255, 152, 0, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: orbit 15s linear infinite;
}

.planet {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #3498db 0%, #9b59b6 100%);
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

@keyframes orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.process-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.process-content p {
  color: #555;
  line-height: 1.6;
}

/* Numerology Chart */
.numerology-chart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.chart-container {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.chart-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(255, 87, 34, 0.1));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.number-node {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-weight: bold;
  color: var(--primary-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: pulse 3s infinite;
}

.number-node:hover {
  transform: scale(1.2);
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
  z-index: 10;
}

.n1 { top: 20px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.n2 { top: 50px; right: 70px; animation-delay: 0.3s; }
.n3 { top: 130px; right: 30px; animation-delay: 0.6s; }
.n4 { bottom: 130px; right: 30px; animation-delay: 0.9s; }
.n5 { bottom: 50px; right: 70px; animation-delay: 1.2s; }
.n6 { bottom: 20px; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.n7 { bottom: 50px; left: 70px; animation-delay: 1.8s; }
.n8 { bottom: 130px; left: 30px; animation-delay: 2.1s; }
.n9 { top: 130px; left: 30px; animation-delay: 2.4s; }

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 152, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
  }
}

.connection-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M150,150 L150,20 M150,150 L230,50 M150,150 L270,130 M150,150 L270,170 M150,150 L230,250 M150,150 L150,280 M150,150 L70,250 M150,150 L30,170 M150,150 L30,130 M150,150 L70,50' stroke='rgba(255,152,0,0.3)' stroke-width='1'/%3E%3C/svg%3E");
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.chart-info {
  flex: 0 0 50%;
  padding: 20px;
}

.chart-info h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.chart-info p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

@media screen and (max-width: 992px) {
  .process-item {
    flex: 0 0 calc(50% - 20px);
  }
  
  .chart-container, .chart-info {
    flex: 0 0 100%;
  }
  
  .chart-container {
    margin-bottom: 40px;
  }
  
  .chart-info {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .process-item {
    flex: 0 0 100%;
  }
  
  .chart-circle {
    width: 250px;
    height: 250px;
  }
  
  .number-node {
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 480px) {
  .how-numerology-works {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .process-icon {
    width: 100px;
    height: 100px;
  }
  
  .icon-container {
    width: 70px;
    height: 70px;
  }
  
  .planet-orbit {
    width: 100px;
    height: 100px;
  }
  
  .chart-circle {
    width: 220px;
    height: 220px;
  }
  
  .number-node {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
}

/* Number Tooltips */
.number-tooltip {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: var(--primary-color);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  z-index: 100;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

.number-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
}

.number-node.active {
  background: var(--primary-color);
  color: white;
  transform: scale(1.2);
  z-index: 10;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Add AOS fallback styles */
[data-aos] {
  transition-property: opacity, transform;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
  opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

[data-aos="fade-left"] {
  transform: translateX(30px);
  opacity: 0;
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

/* Enhanced Booking Services Section */
.booking-services {
  padding: 60px 0;
  background-color: #f8f5f2;
  position: relative;
  background-image: linear-gradient(to bottom, #f8f5f2, #f9f7f5);
}

.booking-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 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='%23ff7b00' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.booking-services .container {
  position: relative;
  z-index: 1;
}

.booking-services h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #333;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.booking-services h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, rgba(255, 123, 0, 0.1), rgba(255, 123, 0, 0.8), rgba(255, 123, 0, 0.1));
  border-radius: 2px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 123, 0, 0.1);
  height: 100%;
  position: relative;
  font-size: 0.9rem;
  transform: translateY(0);
  max-width: 100%;
}

/* Simple highlight for selected service */
.highlight-service {
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.3);
}

.service-header {
  padding: 15px 15px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
}

.service-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
  flex: 1;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.service-duration {
  background-color: rgba(255, 123, 0, 0.1);
  color: var(--primary-color);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  display: inline-block;
  margin-top: 2px;
}

.service-price {
  background: linear-gradient(135deg, #ff7b00, #ff9d45);
  color: white;
  padding: 8px 15px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.service-price p {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.service-description {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-description p {
  margin: 0 0 12px 0;
  color: #555;
  line-height: 1.4;
  font-size: 0.9rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.service-description h4 {
  margin: 15px 0 10px 0;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}

.service-description ul {
  margin: 0 0 15px 0;
  padding-left: 5px;
  list-style-type: none;
}

.service-description li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
  line-height: 1.3;
  font-size: 0.85rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.service-description li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.8rem;
}

/* Responsive adjustments for service grid */
@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .service-header h3 {
    font-size: 1.1rem;
  }
  
  .service-description p,
  .service-description li {
    font-size: 0.85rem;
  }
}

/* Enhanced service cards with better text fitting */
.service-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 123, 0, 0.1);
  height: 100%;
  position: relative;
  font-size: 0.9rem;
  transform: translateY(0);
  max-width: 100%;
}

/* Simple highlight for selected service */
.highlight-service {
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.3);
}

.service-header {
  padding: 15px 15px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px;
}

.service-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
  flex: 1;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.service-duration {
  background-color: rgba(255, 123, 0, 0.1);
  color: var(--primary-color);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  display: inline-block;
  margin-top: 2px;
}

.service-price {
  background: linear-gradient(135deg, #ff7b00, #ff9d45);
  color: white;
  padding: 8px 15px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.service-price p {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.service-description {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-description p {
  margin: 0 0 12px 0;
  color: #555;
  line-height: 1.4;
  font-size: 0.9rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.service-description h4 {
  margin: 15px 0 10px 0;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}

.service-description ul {
  margin: 0 0 15px 0;
  padding-left: 5px;
  list-style-type: none;
}

.service-description li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
  line-height: 1.3;
  font-size: 0.85rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.service-description li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.8rem;
}

.service-card .btn {
  margin: 0;
  border-radius: 0 0 16px 16px;
  padding: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ff7b00, #ff9d45);
  border: none;
}

.service-card .btn:hover {
  background: linear-gradient(135deg, #ff8d20, #ffae65);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.2);
}

.btn-whatsapp i {
  font-size: 1.1rem;
}

/* Responsive adjustments for booking services */
@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 992px) {
  .booking-services {
    padding: 40px 0;
  }
  
  .booking-services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .service-header {
    padding: 12px 12px 6px;
  }
  
  .service-header h3 {
    font-size: 1.1rem;
  }
  
  .service-description h4 {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .booking-services {
    padding: 30px 0;
  }
  
  .booking-services h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .booking-services {
    padding: 25px 0;
  }
  
  .booking-services h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .service-header {
    padding: 10px 10px 6px;
  }
  
  .service-duration {
    padding: 3px 8px;
    font-size: 0.75rem;
  }
  
  .service-price {
    padding: 8px 12px;
  }
  
  .service-price p {
    font-size: 1.2rem;
  }
  
  .service-description {
    padding: 10px;
  }
  
  .service-description li {
    padding-left: 18px;
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
  
  .service-card .btn {
    padding: 8px;
    font-size: 0.85rem;
  }
}

/* Add glowing animation */
@keyframes glow {
  0% {
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.1);
  }
  50% {
    box-shadow: 0 5px 25px rgba(255, 123, 0, 0.2), 0 0 15px rgba(255, 123, 0, 0.1);
  }
  100% {
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.1);
  }
}

.service-card {
  animation: glow 3s infinite;
}

.service-card:nth-child(2) {
  animation-delay: 0.6s;
}

.service-card:nth-child(3) {
  animation-delay: 1.2s;
}

.service-card:nth-child(4) {
  animation-delay: 1.8s;
}

.service-card:nth-child(5) {
  animation-delay: 2.4s;
}

@media (max-width: 768px) {
  .highlight-service::before {
    top: -10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .highlight-service::before {
    top: -8px;
    right: 8px;
    padding: 3px 8px;
    font-size: 0.7rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
}

/* Service duration tag on services page */
.service-duration-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--primary-color);
  background-color: rgba(255, 123, 0, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 10px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .service-duration-tag {
    font-size: 0.8rem;
    padding: 2px 8px;
    margin-left: 8px;
  }
}

@media (max-width: 480px) {
  .service-duration-tag {
    display: block;
    margin: 5px 0 0 0;
    font-size: 0.75rem;
    text-align: left;
    width: fit-content;
  }
}

/* Meanings of Numbers Page Styles */
.meanings-headfooter {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}

.design-credit {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 0;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 30px;
}

.design-credit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.design-credit a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.design-credit a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.meanings-header {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.meanings-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 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.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2H6zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  z-index: 0;
}

.meanings-header h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: fadeInDown 1s ease-out;
}

.meanings-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.number-meanings {
  padding: 80px 0;
  background-color: #f9f7f5;
  position: relative;
}

.number-meanings .container {
  max-width: 1200px;
  margin: 0 auto;
}

.meaning-card {
  display: flex;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
}

.meaning-card.animate {
  animation: fadeInUp 0.8s forwards;
}

.meaning-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 123, 0, 0.2);
}

.meaning-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 123, 0, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.meaning-card:hover::before {
  opacity: 1;
}

.number-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin: 30px;
  box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.number-circle::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.meaning-card:hover .number-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(255, 123, 0, 0.4);
}

.meaning-card:hover .number-circle::after {
  opacity: 0.3;
  animation: rotateGlow 3s infinite linear;
}

.number-circle.master {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
  font-size: 2.5rem;
}

.meaning-content {
  padding: 30px 40px 30px 0;
  flex-grow: 1;
}

.meaning-content h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
}

.meaning-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.meaning-card:hover .meaning-content h2::after {
  width: 100%;
}

.meaning-content h3 {
  color: var(--secondary-color);
  margin: 20px 0 10px;
  font-size: 1.3rem;
}

.meaning-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.meaning-content ul {
  margin-bottom: 20px;
}

.meaning-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.meaning-content li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

/* Glowing effects */
.glow-effect {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.3) 0%, rgba(255, 123, 0, 0) 70%);
  z-index: 0;
  animation: pulse 3s infinite;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.meaning-card:hover .glow-effect {
  opacity: 1;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.5;
  }
}

/* Responsive styles for meanings page */
@media screen and (max-width: 992px) {
  .meaning-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
  }
  
  .number-circle {
    margin: 0 0 20px 0;
  }
  
  .meaning-content {
    padding: 0;
  }
  
  .meaning-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .meaning-content ul {
    display: inline-block;
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .meanings-header h1 {
    font-size: 2.5rem;
  }
  
  .meanings-header p {
    font-size: 1rem;
  }
  
  .meaning-card {
    padding: 20px;
  }
  
  .number-circle {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .number-circle.master {
    font-size: 2rem;
  }
  
  .meaning-content h2 {
    font-size: 1.5rem;
  }
  
  .meaning-content h3 {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .meanings-header h1 {
    font-size: 2rem;
  }
  
  .number-circle {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .number-circle.master {
    font-size: 1.6rem;
  }
  
  .meaning-content h2 {
    font-size: 1.3rem;
  }
  
  .meaning-content h3 {
    font-size: 1.1rem;
  }
  
  .meaning-content p,
  .meaning-content li {
    font-size: 0.95rem;
  }
}

/* Calculator Page Styles */
.calculator-section {
  background: linear-gradient(135deg, #f9f2ff, #fff5e6);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.calculator-section::before,
.calculator-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.1) 0%, rgba(255, 123, 0, 0) 70%);
  animation: pulse 8s infinite alternate ease-in-out;
}

.calculator-section::before {
  top: -100px;
  left: -100px;
}

.calculator-section::after {
  bottom: -100px;
  right: -100px;
  animation-delay: 4s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0.1;
  }
}

.calculator-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.calculator-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite;
  position: relative;
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 25px;
}

.star-symbol {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0 10px;
  animation: twinkle 2s infinite alternate;
}

.line-decoration {
  height: 2px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

@keyframes twinkle {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.section-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 25px;
}

.calculator-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.calculator-wrapper {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 123, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.calculator-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.calculator-wrapper:hover::before {
  opacity: 1;
}

.calculator-form {
  padding: 40px;
  position: relative;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.animated-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  color: var(--text-color);
}

.animated-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.2);
  background-color: white;
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.animated-input:focus ~ .focus-border {
  width: 100%;
}

.calculate-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1.1rem;
}

.calculate-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: all 0.6s ease;
}

.calculate-btn:hover::before {
  left: 100%;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.calculate-btn:hover .btn-icon {
  transform: rotate(360deg);
}

/* Error Message Styling */
.error-message {
  background-color: #ffebee;
  color: #d32f2f;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #d32f2f;
  font-weight: 500;
  display: none;
  transition: all 0.3s ease;
}

.shake-animation {
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

/* Results Container Styling */
.results-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(255, 123, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.results-container h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.results-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.decoration-line {
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.decoration-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  margin: 0 10px;
}

.result-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.result-card {
  background: linear-gradient(135deg, #fff, #f9f9f9);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(255, 123, 0, 0.1);
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.15);
}

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

.result-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.result-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  background: rgba(255, 123, 0, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.result-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text-color);
}

.result-number-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  height: 80px;
}

.result-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.number-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.2) 0%, rgba(255, 123, 0, 0) 70%);
  animation: pulse-glow 2s infinite alternate;
  z-index: 1;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0.1;
  }
}

.master-number {
  color: #9c27b0;
  text-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
}

.result-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
  min-height: 120px;
}

.save-results {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.save-results .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.9rem;
}

.save-results .btn i {
  font-size: 1rem;
}

/* Number Preview Section */
.number-preview {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  position: relative;
  overflow: hidden;
}

.number-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 154, 60, 0.1) 0%, rgba(255, 154, 60, 0) 70%);
  transform: scale(1.5);
  opacity: 0.2;
  z-index: 0;
}

.number-preview h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.number-preview > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.number-item {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  border: 1px solid rgba(255, 123, 0, 0.05);
  overflow: hidden;
}

.number-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.number-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.1);
}

.number-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 15px;
  position: relative;
  transition: all 0.3s ease;
}

.number-circle.glow {
  box-shadow: 0 0 20px rgba(255, 123, 0, 0.5);
  transform: scale(1.1);
}

.number-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.master-number .number-circle {
  background: linear-gradient(135deg, #9c27b0, #673ab7);
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  animation: float-away 1s forwards ease-out;
}

@keyframes float-away {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  50% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5) translate(20px, -20px);
  }
}

.learn-more-container {
  position: relative;
  text-align: center;
  padding: 20px 0;
}

.learn-more {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.floating-symbols {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-symbol {
  position: absolute;
  color: var(--primary-color);
  opacity: 0.3;
  animation: float 10s infinite linear;
}

.floating-symbol:nth-child(1) {
  top: 10%;
  left: 10%;
  font-size: 1.2rem;
  animation-duration: 15s;
}

.floating-symbol:nth-child(2) {
  top: 20%;
  right: 20%;
  font-size: 1.5rem;
  animation-duration: 18s;
  animation-delay: 1s;
}

.floating-symbol:nth-child(3) {
  bottom: 30%;
  left: 30%;
  font-size: 1rem;
  animation-duration: 18s;
  animation-delay: 2s;
}

.floating-symbol:nth-child(4) {
  bottom: 10%;
  right: 15%;
  font-size: 1.3rem;
  animation-duration: 20s;
  animation-delay: 3s;
}

.floating-symbol:nth-child(5) {
  top: 50%;
  left: 50%;
  font-size: 1.4rem;
  animation-duration: 25s;
  animation-delay: 4s;
}

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

/* Animations */
.animate-fadeIn {
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .calculator-header h1 {
    font-size: 2.4rem;
  }
  
  .result-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .number-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .calculator-section {
    padding: 60px 0;
  }
  
  .calculator-header h1 {
    font-size: 2rem;
  }
  
  .calculator-form {
    padding: 30px;
  }
  
  .results-container {
    padding: 30px;
  }
  
  .result-cards-container {
    grid-template-columns: 1fr;
  }
  
  .result-description {
    min-height: auto;
  }
  
  .number-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .number-circle {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .calculator-section {
    padding: 40px 0;
  }
  
  .calculator-header h1 {
    font-size: 1.8rem;
  }
  
  .header-decoration .line-decoration {
    width: 50px;
  }
  
  .calculator-form,
  .results-container {
    padding: 20px;
  }
  
  .save-results {
    flex-direction: column;
  }
  
  .save-results .btn {
    width: 100%;
  }
  
  .number-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
  
  .number-item {
    padding: 15px 10px;
  }
  
  .number-circle {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .number-item p {
    font-size: 0.8rem;
  }
  
  .learn-more {
    font-size: 1rem;
  }
}

input[type="date"].animated-input {
  height: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  padding-right: 15px;
  color: var(--text-color);
  font-family: inherit;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 10px;
  width: 24px;
  height: 24px;
  opacity: 0.8;
  cursor: pointer;
  filter: invert(60%) sepia(75%) saturate(1352%) hue-rotate(360deg) brightness(100%) contrast(102%);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
}

input[type="date"]::-webkit-datetime-edit {
  padding: 0;
  color: var(--text-color);
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  background: transparent;
}

input[type="date"]::-webkit-datetime-edit-text,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
  padding: 0 4px;
  color: var(--text-color);
}

/* Input styles */
.input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.animated-input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
}

.animated-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 123, 0, 0.2);
  outline: none;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
  opacity: 0.6;
  transition: var(--transition);
}

.input-focused .input-icon {
  color: var(--primary-color);
  opacity: 1;
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.input-focused .focus-border {
  width: 100%;
}

.input-help {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

/* Error state */
.input-error {
  border-color: var(--error-color) !important;
  background-color: rgba(255, 0, 0, 0.03);
}

.input-wrapper .input-error + .focus-border {
  background-color: var(--error-color);
  width: 100%;
}

.error-message {
  color: var(--error-color);
  font-size: 0.9rem;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  background-color: rgba(255, 0, 0, 0.05);
  border-left: 3px solid var(--error-color);
  display: none;
}

.shake-animation {
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

/* Enhanced Calculator Section Styling */
.calculator-section {
  background: linear-gradient(135deg, #f9f2ff, #fff5e6);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  animation: gradientShift 15s ease infinite alternate;
}

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

.calculator-section::before,
.calculator-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.1) 0%, rgba(255, 123, 0, 0) 70%);
  animation: pulse 8s infinite alternate ease-in-out;
}

.calculator-section::before {
  top: -100px;
  left: -100px;
}

.calculator-section::after {
  bottom: -100px;
  right: -100px;
  animation-delay: 4s;
}

/* Add floating elements for visual interest */
.calculator-section .floating-element {
  position: absolute;
  opacity: 0.5;
  z-index: 0;
  filter: blur(1px);
  animation: float 15s infinite ease-in-out;
}

.calculator-section .floating-element:nth-child(1) {
  top: 15%;
  left: 10%;
  font-size: 2rem;
  animation-duration: 12s;
}

.calculator-section .floating-element:nth-child(2) {
  top: 25%;
  right: 15%;
  font-size: 1.8rem;
  animation-duration: 18s;
  animation-delay: 1s;
}

.calculator-section .floating-element:nth-child(3) {
  bottom: 20%;
  left: 15%;
  font-size: 2.2rem;
  animation-duration: 15s;
  animation-delay: 4s;
}

.calculator-section .floating-element:nth-child(4) {
  bottom: 30%;
  right: 10%;
  font-size: 1.6rem;
  animation-duration: 20s;
  animation-delay: 6s;
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0.1;
  }
}

.calculator-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.calculator-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite;
  position: relative;
  text-shadow: 0 5px 15px rgba(255, 123, 0, 0.1);
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto 25px;
}

.star-symbol {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0 10px;
  animation: twinkle 2s infinite alternate;
}

.line-decoration {
  height: 2px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

@keyframes twinkle {
  0% {
    opacity: 0.5;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.calculator-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.calculator-wrapper {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(255, 123, 0, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(0);
}

.calculator-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 123, 0, 0.2);
}

.calculator-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.calculator-wrapper:hover::before {
  opacity: 1;
}

.calculator-form {
  padding: 40px;
  position: relative;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  padding-left: 5px;
}

.form-group label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 70%;
  background: var(--primary-color);
  border-radius: 3px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.animated-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  color: var(--text-color);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.animated-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.1);
  background-color: #fff;
}

.input-wrapper.input-focused .input-icon {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.focus-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.input-wrapper.input-focused .focus-border {
  width: 100%;
}

.input-help {
  display: block;
  margin-top: 5px;
  font-size: 0.8rem;
  color: #666;
  transition: all 0.3s ease;
}

.calculate-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
}

.calculate-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: all 0.5s ease;
}

.calculate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 123, 0, 0.4);
}

.calculate-btn:hover::before {
  left: 100%;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Enhanced Results Container Styling */
.results-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(255, 123, 0, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transform: translateY(0);
}

.results-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 123, 0, 0.2);
}

.results-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.05) 0%, rgba(255, 123, 0, 0) 70%);
  z-index: -1;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.results-container h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.results-container h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
}

.results-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.decoration-line {
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.decoration-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  margin: 0 10px;
}

.result-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.result-card {
  background: linear-gradient(135deg, #fff, #f9f9f9);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(255, 123, 0, 0.1);
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 123, 0, 0.15);
}

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

.result-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.result-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  background: rgba(255, 123, 0, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.result-card:hover .result-header i {
  transform: rotate(360deg);
  background: var(--primary-color);
  color: white;
}

.result-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text-color);
}

.result-number-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  height: 80px;
}

.result-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.result-card:hover .result-number {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255, 123, 0, 0.3);
}

.number-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.2) 0%, rgba(255, 123, 0, 0) 70%);
  animation: pulse-glow 2s infinite alternate;
  z-index: 1;
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.3);
    opacity: 0.1;
  }
}

.master-number {
  color: #9c27b0;
  text-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
}

.result-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
  min-height: 120px;
  position: relative;
  padding-left: 10px;
}

.result-description::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), transparent);
  border-radius: 3px;
}

.save-results {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.save-results .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: white;
  color: var(--primary-color);
  border: 1px solid rgba(255, 123, 0, 0.3);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.save-results .btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.2);
}

.save-results .btn i {
  font-size: 1rem;
  transition: all 0.3s ease;
}

.save-results .btn:hover i {
  transform: scale(1.2);
}

/* FAQ Page Styles */
.faq-section {
  padding: 60px 0;
  background-color: #f9f7f5;
}

.faq-search {
  display: flex;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 16px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-search input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 3px 20px rgba(var(--primary-rgb), 0.15);
  outline: none;
}

.faq-search button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: var(--primary-color);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-search button:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.faq-category {
  padding: 10px 20px;
  background: white;
  border: 1px solid #eee;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.faq-category:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.faq-category.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  padding-right: 30px;
}

.faq-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 20px 20px;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #666;
}

/* Submit Review Page Styles */
.submit-review-section {
  padding: 60px 0;
  background-color: #f9f7f5;
}

.review-form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

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

.form-group small {
  display: block;
  margin-top: 5px;
  color: #888;
  font-size: 12px;
}

.rating-group {
  margin-bottom: 30px;
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.star-rating input {
  display: none;
}

.star-rating label {
  cursor: pointer;
  font-size: 30px;
  color: #ddd;
  margin-right: 5px;
  transition: all 0.2s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: #ffc107;
}

.star-rating label.hover {
  color: #ffc107;
}

.consent-group {
  display: flex;
  align-items: flex-start;
}

.consent-group input {
  margin-top: 5px;
  margin-right: 10px;
}

.form-submit {
  margin-top: 30px;
}

.review-guidelines {
  background: #f0f7ff;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.review-guidelines h3 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 15px;
}

.review-guidelines ul {
  padding-left: 20px;
  margin: 0;
}

.review-guidelines li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.5;
}

.review-success {
  padding: 80px 0;
  text-align: center;
}

.success-message {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.success-message i {
  font-size: 60px;
  color: #4CAF50;
  margin-bottom: 20px;
}

.success-message h2 {
  margin-bottom: 15px;
  color: #333;
}

.success-message p {
  margin-bottom: 30px;
  color: #666;
}

/* Testimonials Page Enhancements */
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  padding: 25px;
  flex-grow: 1;
  position: relative;
}

.testimonial-content i {
  color: var(--primary-color);
  opacity: 0.2;
  font-size: 24px;
  position: absolute;
  top: 15px;
  left: 15px;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 10px;
  color: #555;
  line-height: 1.6;
}

.testimonial-footer {
  padding: 15px 25px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.testimonial-info {
  flex-grow: 1;
}

.testimonial-info h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #333;
}

.testimonial-info p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #888;
}

.rating {
  color: #ffc107;
  font-size: 14px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 30px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #eee;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.pagination-btn:hover {
  background: #f0f0f0;
}

.pagination-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Responsive Styles for FAQ and Review Pages */
@media screen and (max-width: 768px) {
  .review-form-container {
    grid-template-columns: 1fr;
  }
  
  .faq-categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
  }
  
  .faq-category {
    flex: 0 0 auto;
  }
  
  .testimonial-cards {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  .faq-question h3 {
    font-size: 16px;
  }
  
  .star-rating label {
    font-size: 24px;
  }
  
  .review-form {
    padding: 20px;
  }
}

/* Enhanced Testimonials Section Styles */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.testimonials::before {
  width: 300px;
  height: 300px;
  background: rgba(var(--primary-rgb), 0.05);
  top: -150px;
  left: -150px;
}

.testimonials::after {
  width: 200px;
  height: 200px;
  background: rgba(var(--secondary-rgb), 0.05);
  bottom: -100px;
  right: -100px;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: var(--heading-color);
  position: relative;
}

.testimonials h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin: 15px auto 0;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.testimonial-author {
  font-weight: 700;
  margin-top: 20px;
}

/* Responsive styles for testimonials */
@media screen and (max-width: 1200px) {
  .testimonial-slider {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .testimonials {
    padding: 70px 0;
  }
}

@media screen and (max-width: 992px) {
  .testimonial-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials h2 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .testimonial-slider {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .testimonial-content {
    padding: 25px;
  }
  
  .testimonial-footer {
    padding: 15px 25px;
  }
}

@media screen and (max-width: 576px) {
  .testimonials {
    padding: 50px 0;
  }
  
  .testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .testimonial-content {
    padding: 20px;
  }
  
  .testimonial-content i {
    font-size: 24px;
    top: 15px;
    left: 15px;
  }
  
  .testimonial-info h3 {
    font-size: 16px;
  }
}

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

.testimonial {
  animation: fadeInUp 0.6s ease forwards;
}

.testimonial:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial:nth-child(3) {
  animation-delay: 0.4s;
}

/* Home Page Testimonials - Responsive Design */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.testimonials::before {
  width: 300px;
  height: 300px;
  background: rgba(var(--primary-rgb), 0.05);
  top: -150px;
  left: -150px;
}

.testimonials::after {
  width: 200px;
  height: 200px;
  background: rgba(var(--secondary-rgb), 0.05);
  bottom: -100px;
  right: -100px;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(var(--primary-rgb), 0.1);
}

.testimonial-content {
  padding: 30px;
  flex-grow: 1;
  position: relative;
}

.testimonial-content i {
  color: var(--primary-color);
  opacity: 0.2;
  font-size: 30px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 15px;
  color: var(--text-color);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-footer {
  padding: 20px 30px;
  border-top: 1px solid #f0f0f0;
  background: #fcfcfc;
}

.testimonial-info h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: var(--heading-color);
  font-weight: 600;
}

.testimonial-info p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.rating {
  color: #ffc107;
  font-size: 14px;
  display: flex;
  gap: 2px;
}

/* Responsive styles for testimonials */
@media screen and (max-width: 1200px) {
  .testimonial-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 992px) {
  .testimonial-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .testimonial-slider {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .testimonial-content {
    padding: 25px;
  }
  
  .testimonial-footer {
    padding: 15px 25px;
  }
}

@media screen and (max-width: 576px) {
  .testimonials {
    padding: 50px 0;
  }
  
  .testimonial-content {
    padding: 20px;
  }
  
  .testimonial-content i {
    font-size: 24px;
    top: 15px;
    left: 15px;
  }
  
  .testimonial-info h3 {
    font-size: 16px;
  }
}

/* Service Modal Styling */
.service-modal-price-container {
  background-color: rgba(255, 123, 0, 0.1);
  border-radius: 8px;
  padding: 15px 20px;
  margin: 0 0 25px 0;
  border-left: 4px solid var(--primary-color);
  display: flex;
  align-items: center;
}

.service-modal-price-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-right: 5px;
}

.service-modal-price-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.service-modal-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 25px 0 15px 0;
  border-bottom: 2px solid rgba(255, 123, 0, 0.2);
  padding-bottom: 8px;
}

.service-modal-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.service-modal-benefits,
.service-modal-included {
  margin-bottom: 25px;
  padding-left: 5px;
  list-style-type: none;
}

.service-modal-benefits li,
.service-modal-included li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  font-size: 1.05rem;
}

.service-modal-benefits li::before,
.service-modal-included li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

.service-modal-format {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 15px;
  border-radius: 8px;
}

.service-modal-buttons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.btn-book-modal {
  padding: 12px 25px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-book-modal:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-book-modal i {
  font-size: 1.3rem;
}

/* Additional text visibility improvements */
.text-visibility-fix {
  /* Base text visibility */
  color: #333;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Improve contrast for all text elements */
body {
  color: #333;
}

/* Ensure all text has sufficient contrast and is visible */
p, h1, h2, h3, h4, h5, h6, a, li, label, td, th, span, div {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure text on dark backgrounds is visible */
.hero *, .cta *, .testimonials *, footer *, 
.page-header *, .calculator-header *, 
.about-header *, .contact-header *, 
.services-header *, .faq-header * {
  color: #fff !important;
}

/* Ensure rating stars are visible */
.rating i {
  color: #ffc107 !important; /* Keep stars gold/yellow */
}

/* Change testimonial text color to black for better visibility */
.testimonial-content p,
.testimonial-content,
.testimonial p,
.testimonial-card p,
.testimonial-card .testimonial-content p {
  color: #000 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.testimonials h2,
.testimonials-grid h2,
.testimonials-grid h1,
.testimonial-cards h3 {
  color: #000 !important;
}

/* Ensure quote icon is visible */
.testimonial-content i.fa-quote-left {
  color: #000 !important;
  opacity: 0.3;
}

/* Ensure testimonial section titles are visible */
.submit-testimonial h2,
.submit-review-section h2,
.page-header h1,
.page-header p {
  color: #000 !important;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  .main-nav ul li {
    margin: 0 0 15px 0;
  }
  
  .main-nav ul li a {
    display: block;
    padding: 10px 0;
  }
  
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  .overlay.active {
    display: block;
  }
}

/* Book a Session Button in Header */
.btn-book {
  background-color: var(--primary-color);
  color: white !important;
  padding: 8px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: black;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design Improvements */
@media screen and (max-width: 1200px) {
  .container {
    width: 95%;
    max-width: 1140px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .about-grid,
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 992px) {
  .container {
    width: 95%;
    max-width: 960px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 100px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .about-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-form-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    margin-top: 40px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .calculator-form,
  .calculator-results {
    width: 100%;
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    width: 95%;
    max-width: 720px;
  }
  
  section {
    padding: 50px 0;
  }
  
  .hero {
    padding: 80px 0;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .about-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .service-card,
  .feature-card,
  .testimonial-card,
  .pricing-card {
    max-width: 100%;
  }
  
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }
  
  .modal-header {
    padding: 15px;
  }
  
  .modal-body {
    padding: 15px;
  }
  
  .calculator-container {
    flex-direction: column;
  }
  
  .calculator-form,
  .calculator-results {
    width: 100%;
    margin: 0;
  }
  
  .calculator-results {
    margin-top: 30px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-control {
    padding: 10px 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .container {
    width: 95%;
    max-width: 540px;
    padding: 0 10px;
  }
  
  section {
    padding: 40px 0;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card,
  .pricing-card {
    padding: 20px;
  }
  
  .feature-icon,
  .service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .feature-card h3,
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .modal-content {
    margin: 15% auto;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
  }
  
  .modal-cta {
    flex-direction: column;
    gap: 10px;
  }
  
  .modal-cta .btn {
    width: 100%;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-control {
    font-size: 0.9rem;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .testimonial-content {
    font-size: 0.95rem;
  }
  
  .testimonial-author {
    font-size: 1rem;
  }
  
  .number-value {
    font-size: 2.5rem;
  }
  
  .number-meaning {
    font-size: 0.9rem;
  }
}

/* Improved Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 60px 20px 20px;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  .main-nav ul li {
    width: 100%;
    margin-left: 0;
  }
  
  .main-nav ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  .overlay.active {
    display: block;
  }
}

/* Responsive Form Improvements */
@media screen and (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
  
  .form-group {
    width: 100%;
    margin-right: 0;
  }
  
  .input-group {
    flex-direction: column;
  }
  
  .input-group-append {
    width: 100%;
    margin-top: 10px;
  }
  
  .input-group .form-control {
    width: 100%;
    border-radius: 4px;
  }
  
  .input-group .btn {
    border-radius: 4px;
    width: 100%;
  }
}

/* Responsive Table Improvements */
@media screen and (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .responsive-table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
  
  .responsive-table thead {
    display: none;
  }
  
  .responsive-table tbody tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
  }
  
  .responsive-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 8px 0;
    text-align: right;
  }
  
  .responsive-table tbody td::before {
    content: attr(data-label);
    font-weight: bold;
    text-align: left;
    margin-right: 10px;
  }
}

/* Responsive Images */
.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Responsive Flex Containers */
.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .flex-container {
    flex-direction: column;
  }
  
  .flex-item {
    width: 100% !important;
  }
}

/* Book a Session Button in Header */
.btn-book {
  background-color: var(--primary-color);
  color: white !important;
  padding: 8px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: black;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  h4 {
    font-size: 1.3rem;
  }
  
  h5 {
    font-size: 1.1rem;
  }
  
  h6 {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 576px) {
  body {
    font-size: 0.9rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  h4 {
    font-size: 1.2rem;
  }
  
  h5 {
    font-size: 1rem;
  }
  
  h6 {
    font-size: 0.9rem;
  }
  
  p {
    font-size: 0.9rem;
  }
}

/* About Us Page Styles */
.divider {
  font-size: 2rem;
  color: #ff7b00;
  text-align: center;
  margin: 2rem 0;
  opacity: 0.7;
}

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

.about-content-section {
  padding: 60px 0;
  background-color: #fdfaff;
}

.about-content-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.about-text {
  line-height: 1.8;
}

.about-text h2 {
  color: #ff7b00;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.promise-list {
  list-style-type: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.promise-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.promise-list li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #ff7b00;
  font-size: 1.2rem;
}

/* Session Info Styles */
.session-info {
  background-color: #fdfaff;
  padding: 60px 0;
}

.session-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.detail-item {
  background: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.detail-item i {
  color: #ff7b00;
  margin-bottom: 15px;
}

.detail-item h3 {
  margin-bottom: 15px;
  color: #333;
}

.detail-item p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .session-details {
    grid-template-columns: 1fr;
  }
}
