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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

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

/* Background Gradients */
.bg-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
  min-height: 100vh;
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

.logo-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #ea580c, #f97316);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

.logo-icon i {
  width: 2rem;
  height: 2rem;
  color: white;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ea580c, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.contact-info {
  display: none;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-item i {
  width: 1rem;
  height: 1rem;
  color: #ea580c;
}

.contact-item span {
  font-weight: 500;
}

@media (min-width: 768px) {
  .contact-info {
    display: flex;
  }
}

/* Hero Section */
.hero-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.05), rgba(249, 115, 22, 0.05), rgba(243, 244, 246, 0.2));
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.badge i {
  width: 1rem;
  height: 1rem;
  color: #ea580c;
}

.crc-text {
  color: #000000 !important;
  font-weight: 700 !important;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #ea580c, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  line-height: 1.6;
}

.highlight {
  color: #ea580c;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image {
  position: relative;
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.floating-icon {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, #ea580c, #f97316);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
  animation: bounce 2s infinite;
}

.floating-icon i {
  width: 3rem;
  height: 3rem;
  color: white;
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -10px, 0);
  }
  70% {
    transform: translate3d(0, -5px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-buttons {
    flex-direction: row;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn i {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: white;
  box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  color: #ea580c;
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.btn-outline:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(234, 88, 12, 0.4);
}

.btn-full {
  width: 100%;
}

/* Section Styles */
.services-section,
.testimonials-section,
.contact-section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Services Grid */
.services-grid {
  display: grid;
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.5);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #ea580c, #f97316);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.2), rgba(249, 115, 22, 0.2));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  width: 2rem;
  height: 2rem;
  color: #ea580c;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.service-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.service-features i {
  width: 1.25rem;
  height: 1.25rem;
  color: #ea580c;
  flex-shrink: 0;
}

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

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

/* Testimonials Section */
.testimonials-section {
  position: relative;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(243, 244, 246, 0.3), rgba(234, 88, 12, 0.05));
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.5s ease;
}

.testimonial-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}

.testimonial-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.testimonial-role {
  color: #6b7280;
  margin-bottom: 1rem;
}

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

.star-filled {
  width: 1.25rem;
  height: 1.25rem;
  color: #ea580c;
  fill: currentColor;
}

.testimonial-text {
  color: #6b7280;
  font-style: italic;
  line-height: 1.6;
}

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

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 6xl;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.5s ease;
}

.contact-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.contact-title i {
  width: 1.5rem;
  height: 1.5rem;
  color: #ea580c;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(243, 244, 246, 0.5);
  transition: background-color 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(243, 244, 246, 0.7);
}

.contact-info-item i {
  width: 1.5rem;
  height: 1.5rem;
  color: #ea580c;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.info-label {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.info-text {
  color: #6b7280;
  line-height: 1.6;
}

.schedule-list {
  margin-bottom: 2rem;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(243, 244, 246, 0.5);
  margin-bottom: 1rem;
}

.schedule-time {
  color: #ea580c;
  font-weight: 700;
  font-size: 1.125rem;
}

.schedule-closed {
  color: #6b7280;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
.footer {
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(229, 231, 235, 0.5);
  padding: 4rem 0;
  margin-top: 6rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-brand-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: #1f2937;
}

.footer-brand-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.detail-label {
  font-weight: 500;
}

.crc-label {
  color: #000000 !important;
  font-weight: 500;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-item i {
  width: 1rem;
  height: 1rem;
  color: #ea580c;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(229, 231, 235, 0.5);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.copyright {
  color: #6b7280;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #6b7280;
}

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .copyright {
    margin-bottom: 0;
  }
}

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

  .section-title {
    font-size: 2rem;
  }

  .hero-description,
  .section-description {
    font-size: 1.125rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
