/* Base Styles */
:root {
  --primary: #9d0208;
  --primary-dark: #6a0104;
  --secondary: #d4af37;
  --secondary-light: #f1c232;
  --text-dark: #333333;
  --text-light: #f5f5f5;
  --background: #fff8f0;
  --background-alt: #f8f0e3;
  --border: #e0d2bc;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
}

* {
  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-dark);
  background-color: var(--background);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

/* Remove the unwanted symbol from section titles */
.section-title::before {
  content: "";
  display: none;
}

/* Improve section title styling without the symbol */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary);
  position: relative;
  padding-bottom: 15px;
}

/* Enhance the underline for section titles */
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

section {
  padding: 80px 0;
}

/* Header Styles */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px; /* Increased from 80px to 100px to accommodate larger logo */
}

/* Update the logo styles to allow more flexibility and ensure vertical centering */
.logo {
  display: flex;
  align-items: center; /* This centers the logo vertically */
  height: 100px; /* Match the header height for vertical centering */
}

/* Updated logo image styles to be larger */
.logo-image {
  max-height: 100px; /* Increased from 100px to 130px for a larger logo */
  width: auto;
  object-fit: contain; /* Maintain aspect ratio */
  margin: 0 auto; /* Center horizontally if needed */
}

/* Keep the placeholder for when no logo is available */
.logo-placeholder {
  background-color: var(--primary);
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  display: none; /* Hide by default, show when needed */
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-list li a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-list li a:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--primary);
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 4px;
}

.nav-cta:hover {
  background-color: var(--primary-dark);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
}

/* Also update the hero section margin-top to account for taller header */
.hero {
  position: relative;
  color: white;
  text-align: center;
  padding: 180px 0 100px;
  margin-top: 100px; /* Updated from 80px to 100px to match header height */
  overflow: hidden;
  background-color: #1a0505;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgba(157, 2, 8, 0.9) 0%, rgba(106, 1, 4, 0.8) 100%);
  opacity: 0.9;
  z-index: 1;
}

/* Traditional spiritual pattern overlay */
.hero-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50 Z' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M50 25 L75 50 L50 75 L25 50 Z' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.1'/%3E%3Ccircle cx='50' cy='50' r='15' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.1'/%3E%3C/svg%3E");
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Decorative spiritual symbol */
.hero-content::before {
  content: "ॐ";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  opacity: 0.1;
  color: var(--secondary);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Service-themed badges */
.badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badges span {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.badges span:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.badges span i {
  font-size: 1.2rem;
  color: var(--secondary);
}

/* Improved CTA buttons to match ritual theme */
.hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.hero-cta-buttons .cta-button {
  background: var(--secondary);
  color: var(--text-dark);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--secondary);
  transition: all 0.3s ease;
}

.hero-cta-buttons .cta-button:hover {
  background-color: var(--secondary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta-buttons .call-button {
  background-color: transparent;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
  transition: all 0.3s ease;
}

.hero-cta-buttons .call-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta-buttons .call-button i {
  font-size: 1.2rem;
  color: var(--secondary);
}

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* Center content horizontally */
  gap: 8px;
  background-color: #fff;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center; /* Ensure text is centered */
}

.call-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: var(--primary-dark);
}

.call-button.secondary {
  background-color: white;
  color: var(--primary);
  padding: 10px 20px;
  font-size: 1rem;
}

.call-button.secondary:hover {
  background-color: #f0f0f0;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--text-dark);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center; /* Ensure text is centered */
}

.cta-button:hover {
  background-color: var(--secondary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
  background-color: var(--primary);
  color: white;
}

.cta-button.secondary:hover {
  background-color: var(--primary-dark);
}

/* Services Overview */
.services-overview {
  background-color: var(--background-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: translateY(5px);
  transition: transform 0.3s ease;
}

.service-card:hover::after {
  transform: translateY(0);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(157, 2, 8, 0.2);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  margin-bottom: 20px;
  color: #666;
}

.service-link {
  color: var(--primary);
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.service-link::after {
  content: "→";
  margin-left: 5px;
  transition: all 0.3s ease;
}

.service-link:hover::after {
  margin-left: 10px;
}

.service-cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.service-cta-buttons .cta-button,
.service-cta-buttons .call-button {
  flex: 1;
  text-align: center;
  font-size: 0.95rem;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  margin-bottom: 1rem;
}

/* Improved decorative images */
.decorative-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

/* About section decorative image */
.about-decorative {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.about-decorative::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.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.1;
}

.om-symbol {
  font-size: 6rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.decorative-text {
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Service section decorative images */
.service-decorative {
  background: linear-gradient(45deg, #9d0208 0%, #6a0104 100%);
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Add subtle pattern overlay to all service decorative images */
.service-decorative::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 0h20v20H0V0zm20 20h20v20H20V20z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

/* New icon circle for better centering */
.icon-circle {
  width: 110px;
  height: 110px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.icon-circle i {
  font-size: 3.5rem;
  color: white;
}

/* Update the service-name class to ensure better text contrast */
.service-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  text-align: center;
  width: 100%;
  color: white; /* Ensure text is white for better contrast */
}

/* Classes section decorative image */
.classes-decorative {
  background: linear-gradient(45deg, #9d0208 0%, #6a0104 100%);
}

/* Detailed Service Sections */
.service-detail {
  margin-bottom: 80px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.service-detail:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-detail-content.reverse {
  direction: rtl;
}

.service-detail-content.reverse .service-detail-text {
  direction: ltr;
}

.service-detail-text h2 {
  margin-bottom: 20px;
  text-align: left;
}

.service-detail-text h2::after {
  left: 0;
  transform: none;
}

.service-detail-text h3 {
  margin: 25px 0 15px;
  color: var(--primary);
}

.service-detail-text p {
  margin-bottom: 15px;
}

.service-detail-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.service-detail-text ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.service-detail-text ul li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.service-detail-image {
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Classes Section */
.classes {
  background-color: var(--background-alt);
}

.classes-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: center;
}

/* Classes Section - Add styling for subheadings */
.classes-subheading {
  color: var(--primary);
  font-size: 1.4rem;
  margin: 25px 0 15px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

.classes-subheading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--secondary);
}

.classes-list {
  margin: 20px 0 30px;
}

.classes-list li {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.classes-list li:last-child {
  border-bottom: none;
}

.classes-list h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.classes-list p {
  margin-bottom: 8px;
}

/* Make the course titles stand out more */
.classes-list h4 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.classes-image {
  position: relative;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.review-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-card {
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--secondary);
}

.review-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 5rem;
  color: rgba(157, 2, 8, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-stars {
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 15px;
}

.review-author {
  font-weight: bold;
  text-align: right;
}

.reviews-link {
  text-align: center;
}

.text-link {
  color: var(--primary);
  font-weight: 500;
}

.text-link i {
  font-size: 0.8rem;
  margin-left: 5px;
}

/* Contact Form */
.contact {
  background-color: var(--background-alt);
}

.contact-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
  width: 48%;
  display: inline-block;
  vertical-align: top;
}

.form-group.full-width {
  width: 100%;
}

.form-group:nth-child(odd) {
  margin-right: 4%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

/* Time input container for birth time and AM/PM selector */
.time-input-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.time-input-container input[type="time"] {
  flex: 1;
}

.am-pm-selector {
  display: flex;
  gap: 10px;
}

.radio-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 5px;
}

.radio-container input[type="radio"] {
  margin: 0;
  width: auto;
}

.radio-label {
  font-size: 0.9rem;
  font-weight: 500;
}

.form-note {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #666;
}

.contact-info {
  padding: 20px;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.contact-list {
  margin-bottom: 30px;
}

.contact-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list li i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 25px;
}

/* Improved contact direct buttons */
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.call-direct,
.whatsapp-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.call-direct {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.call-direct:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-direct {
  background-color: var(--whatsapp);
  color: white;
  border: 2px solid var(--whatsapp);
}

.whatsapp-direct:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.social-links {
  margin-top: 25px;
}

.social-links h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  color: var(--primary);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
}

/* Location Section */
.location-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
}

.map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.areas-served h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-column ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.area-column ul li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* Mobile CTA Improvements */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  z-index: 999;
}

.mobile-cta-buttons {
  display: flex;
  gap: 10px;
}

.mobile-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: white;
  padding: 12px 0;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  flex: 1;
}

.mobile-cta-button.call {
  background-color: var(--secondary);
  color: var(--text-dark);
}

/* Floating Call Button */
.floating-call {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  display: none;
}

.floating-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(157, 2, 8, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(157, 2, 8, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(157, 2, 8, 0);
  }
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  margin-bottom: 15px;
  color: var(--secondary);
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  color: var(--secondary);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
}

.footer-contact ul li i {
  color: var(--secondary);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
}

.disclaimer {
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #999;
}

.copyright {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }

  .about-content,
  .service-detail-content,
  .classes-content,
  .contact-content,
  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-content.reverse {
    direction: ltr;
  }

  .service-detail-image {
    order: -1;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .nav-list.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 150px 0 80px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .form-group {
    width: 100%;
    margin-right: 0;
  }

  .time-input-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .mobile-cta {
    display: block;
  }

  .floating-call {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .service-cta-buttons {
    flex-direction: column;
  }

  .contact-direct {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .badges {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-text h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .service-detail-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .icon-circle {
    width: 90px;
    height: 90px;
  }

  .icon-circle i {
    font-size: 2.8rem;
  }

  .service-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .floating-call {
    display: block;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: block;
  }

  .service-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .nav-list.active {
    display: flex;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.1rem;
  }

  .badges span {
    width: 100%;
    justify-content: center;
  }
}

/* Responsive adjustments for hero section */
@media (max-width: 768px) {
  .hero-content::before {
    font-size: 6rem;
    top: -60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .badges {
    gap: 15px;
  }

  .badges span {
    padding: 10px 15px;
    width: 100%;
    justify-content: center;
  }

  .hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-cta-buttons .cta-button,
  .hero-cta-buttons .call-button {
    width: 100%;
    min-width: unset;
  }
}

@media (max-width: 576px) {
  .hero-content::before {
    font-size: 5rem;
    top: -50px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.1rem;
  }
}

/* For mobile screens, adjust accordingly but still keep it larger */
@media (max-width: 768px) {
  .header-content {
    height: 90px; /* Slightly smaller on mobile but still larger than before */
  }

  .logo {
    height: 80px; /* Match header height */
  }

  .logo-image {
    max-height: 90px; /* Increased from 80px to 100px for mobile */
  }

  .hero {
    margin-top: 90px; /* Match header height */
  }
}
