/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(to bottom, #fff7ed, #fef2f2);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid #fed7aa;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.om-symbol {
  width: 2.5rem;
  height: 2.5rem;
  background: #ea580c !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-weight: bold;
  font-size: 1.125rem;
}

.site-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
}

/* Buttons */
.btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-green {
  background: #16a34a;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-green:hover {
  background: #15803d;
  transform: translateY(-1px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.25rem;
  border-radius: 0.75rem;
}

.btn-outline {
  background: transparent;
  color: #ea580c;
  border: 1px solid #fed7aa;
}

.btn-outline:hover {
  background: #fff7ed;
}

.call-btn-header a,
.call-btn-large,
.service-btn,
.cta-btn {
  text-decoration: none !important;
  display: inline-block;
}

.call-btn-header a:hover,
.call-btn-large:hover,
.cta-btn:hover {
  text-decoration: none !important;
}

.call-btn-header a .btn,
.call-btn-large .btn,
.cta-btn .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.call-btn-header .btn-green,
.call-btn-large .btn-green,
.cta-btn .btn-green {
  background: #16a34a !important;
  color: white !important;
  border: none !important;
}

.call-btn-header .btn-green:hover,
.call-btn-large .btn-green:hover,
.cta-btn .btn-green:hover {
  background: #15803d !important;
}

/* Hero Section */
.hero-section {
  padding: 2rem 1rem;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fed7aa, #fecaca);
  opacity: 0.2;
  z-index: 0;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.badge {
  background: #fff7ed;
  color: #9a3412;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.call-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.call-card-content {
  text-align: center;
  margin-bottom: 1rem;
}

.phone-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #16a34a;
}

.call-text {
  color: #4b5563;
  font-weight: 500;
}

.availability {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.location {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}

.location-icon {
  color: #ef4444 !important;
}

/* Services Section */
.services-section {
  padding: 2rem 1rem;
  background: white;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #1f2937;
  margin-bottom: 2rem;
}

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

.service-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #fed7aa;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-header {
  height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.service-title-header {
  font-size: 1.125rem;
  font-weight: bold;
}

.service-content {
  padding: 1.5rem;
}

.service-title-section {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.service-icon-small {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.service-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
}

.service-description {
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Gradient Classes */
.orange-red {
  background: linear-gradient(to right, #fb923c, #ef4444);
}

.red-pink {
  background: linear-gradient(to right, #f87171, #ec4899);
}

.yellow-orange {
  background: linear-gradient(to right, #fbbf24, #f97316);
}

.purple-indigo {
  background: linear-gradient(to right, #a78bfa, #6366f1);
}

.blue-cyan {
  background: linear-gradient(to right, #60a5fa, #06b6d4);
}

.green-emerald {
  background: linear-gradient(to right, #4ade80, #10b981);
}

.red-gradient {
  background: linear-gradient(to right, #f87171, #dc2626);
}

.green-gradient {
  background: linear-gradient(to right, #4ade80, #16a34a);
}

.blue-gradient {
  background: linear-gradient(to right, #60a5fa, #2563eb);
}

/* Additional Gradient and Color Classes */
.bg-green-600 {
  background-color: #16a34a !important;
}

.hover\:bg-green-700:hover {
  background-color: #15803d !important;
}

.text-green-600 {
  color: #16a34a !important;
}

/* About Section */
.about-section {
  padding: 2rem 1rem;
  background: linear-gradient(to right, #fff7ed, #fef2f2);
}

.about-container {
  max-width: 64rem;
  margin: 0 auto;
}

.about-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.profile-image {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.profile-info {
  text-align: center;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.star {
  color: #fbbf24;
}

.profile-name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.profile-title {
  color: #4b5563;
}

.about-text {
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  text-align: center;
}

.credential {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.check {
  color: #16a34a;
}

/* Gallery Section */
.gallery-section {
  padding: 3rem 1rem;
  background: linear-gradient(to right, #fff7ed, #fef2f2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  height: 15rem;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.2);
}

/* Categories Section */
.categories-section {
  padding: 2rem 1rem;
  background: white;
}

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

.category-card {
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.category-header {
  height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.category-icon {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.category-title {
  font-size: 1.125rem;
  font-weight: bold;
}

.category-content {
  padding: 1.5rem;
}

.category-main-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.category-list {
  list-style: none;
}

.category-list li {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 2rem 1rem;
  background: #f9fafb;
}

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

.testimonial-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #374151;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: #fed7aa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #9a3412;
}

.author-name {
  font-weight: 500;
}

.author-location {
  font-size: 0.875rem;
  color: #6b7280;
}

/* CTA Section */
.cta-section {
  padding: 3rem 1rem;
  background: linear-gradient(to right, #ea580c, #dc2626);
  color: white;
  position: relative;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fed7aa, #fecaca);
  opacity: 0.2;
  z-index: 0;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-card {
  max-width: 28rem;
  margin: 0 auto;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  color: #1f2937;
}

.cta-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.clock-icon {
  color: #16a34a !important;
  font-size: 1.2rem;
}

.cta-contact {
  font-size: 0.875rem;
  color: #4b5563;
}

.cta-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.cta-email {
  margin: 0;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 1.5rem 1rem;
}

.footer-text {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.75;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 64rem;
  max-height: 90vh;
  width: 100%;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .about-header {
    flex-direction: row;
    text-align: left;
  }

  .about-header .profile-image {
    margin-bottom: 0;
    margin-right: 1.5rem;
  }

  .profile-info {
    text-align: left;
  }

  .stars {
    justify-content: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item {
    height: 18rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 3rem;
  }
}
