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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333333;
  overflow-x: hidden;
}

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

.header {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header .navbar {
  padding: 1rem 0;
}
.header .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo h1 {
  font-family: "Nunito", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #00b5ce;
  letter-spacing: -0.5px;
}
.header .logo h1 span {
  color: #6cbe45;
  margin-left: 5px;
}
.header .nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
@media (max-width: 768px) {
  .header .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }
  .header .nav-menu.active {
    left: 0;
  }
}
.header .nav-link {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.header .nav-link:hover, .header .nav-link.active {
  color: #00b5ce;
}
.header .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #00b5ce;
}
.header .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header .hamburger {
    display: flex;
  }
}
.header .hamburger span {
  width: 25px;
  height: 3px;
  background: #333333;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}
.hero-content h1 {
  font-family: "Nunito", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-content h1 .highlight {
  color: #00b5ce;
}
.hero-content p {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-buttons {
    justify-content: center;
  }
}
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image i {
  font-size: 15rem;
  color: #00b5ce;
  opacity: 0.1;
}
@media (max-width: 768px) {
  .hero-image i {
    font-size: 8rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: #00b5ce;
  color: #ffffff;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 181, 206, 0.3);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: #00b5ce;
  color: #ffffff;
}
.btn-primary:hover {
  background: #0099b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 181, 206, 0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: transparent;
  color: #00b5ce;
  border: 2px solid #00b5ce;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.btn-secondary:hover {
  background: #00b5ce;
  color: #ffffff;
}
@media (max-width: 480px) {
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

.page-header {
  background: linear-gradient(135deg, #00b5ce, #6cbe45);
  color: #ffffff;
  text-align: center;
  padding: 140px 0 80px;
}
.page-header h1 {
  font-family: "Nunito", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
}
.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-family: "Nunito", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.1rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

.services {
  background: #f8f9fa;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 2.5rem;
  text-align: center;
  position: relative;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
  .service-card {
    padding: 1.5rem;
  }
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.service-card.featured {
  border: 3px solid #00b5ce;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .service-card.featured {
    transform: none;
  }
}
.service-card .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00b5ce, #6cbe45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.service-card .service-icon i {
  font-size: 2rem;
  color: #ffffff;
}
.service-card h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.service-card p {
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-card .service-features {
  list-style: none;
  text-align: left;
}
.service-card .service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #333333;
}
.service-card .service-features li i {
  color: #6cbe45;
  font-size: 0.9rem;
}
.service-card .popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #6cbe45;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.why-choose {
  background: #ffffff;
}
.why-choose .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.why-choose .feature {
  text-align: center;
  padding: 2rem;
}
.why-choose .feature-icon {
  width: 70px;
  height: 70px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.why-choose .feature-icon i {
  font-size: 1.8rem;
  color: #00b5ce;
}
.why-choose .feature h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.why-choose .feature p {
  color: #666666;
}

.pricing {
  background: #f8f9fa;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.pricing-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.pricing-card.featured {
  border: 3px solid #00b5ce;
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .pricing-card.featured {
    transform: none;
  }
}
.pricing-header {
  background: linear-gradient(135deg, #00b5ce, #6cbe45);
  color: #ffffff;
  padding: 2rem;
  text-align: center;
  position: relative;
}
.pricing-header .pricing-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.pricing-header .pricing-icon i {
  font-size: 1.5rem;
}
.pricing-header h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-table {
  padding: 0;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table table th,
.pricing-table table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
@media (max-width: 480px) {
  .pricing-table table th,
  .pricing-table table td {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}
.pricing-table table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
}
.pricing-table table td:last-child {
  font-weight: 600;
  color: #00b5ce;
}
.pricing-features {
  padding: 2rem;
}
@media (max-width: 480px) {
  .pricing-features {
    padding: 1.5rem;
  }
}
.pricing-features h4 {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.pricing-features ul {
  list-style: none;
}
.pricing-features ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #333333;
}
.pricing-features ul li i {
  color: #6cbe45;
  font-size: 0.9rem;
}
.pricing-notes {
  margin-top: 4rem;
}
.pricing-notes h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
}
.pricing-notes .notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.pricing-notes .note {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pricing-notes .note:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.pricing-notes .note i {
  color: #00b5ce;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}
.pricing-notes .note p {
  color: #333333;
  line-height: 1.6;
}

.additional-services {
  margin-top: 4rem;
}
.additional-services h2 {
  font-family: "Nunito", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
}
.additional-services .services-table {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.additional-services .services-table:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.additional-services .services-table table {
  width: 100%;
  border-collapse: collapse;
}
.additional-services .services-table table th,
.additional-services .services-table table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
@media (max-width: 480px) {
  .additional-services .services-table table th,
  .additional-services .services-table table td {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}
.additional-services .services-table table th {
  background: #00b5ce;
  color: #ffffff;
  font-weight: 600;
}
.additional-services .services-table table td:nth-child(2) {
  font-weight: 600;
  color: #00b5ce;
}

.contact {
  background: #f8f9fa;
}
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.contact-form-section h2 {
  font-family: "Nunito", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
}
.contact-form {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 2.5rem;
}
.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
  .contact-form {
    padding: 1.5rem;
  }
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2c3e50;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #00b5ce;
  box-shadow: 0 0 0 3px rgba(0, 181, 206, 0.1);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-info {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 2.5rem;
  height: fit-content;
}
.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
  .contact-info {
    padding: 1.5rem;
  }
}
.contact-info h2 {
  font-family: "Nunito", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i {
  color: #00b5ce;
  font-size: 1.2rem;
}
.contact-details h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.3rem;
}
.contact-details p {
  color: #333333;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.contact-details small {
  color: #666666;
  font-size: 0.9rem;
}

.social-media {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}
.social-media h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.social-media .social-links {
  display: flex;
  gap: 1rem;
}
.social-media .social-link {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b5ce;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-media .social-link:hover {
  background: #00b5ce;
  color: #ffffff;
  transform: translateY(-2px);
}

.faq {
  background: #ffffff;
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.faq-question:hover {
  background: #e8f4fd;
}
.faq-question h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
}
.faq-question i {
  color: #00b5ce;
  transition: all 0.3s ease;
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}
.faq-answer p {
  color: #666666;
  line-height: 1.7;
}

.cta {
  background: linear-gradient(135deg, #00b5ce, #6cbe45);
  color: #ffffff;
  text-align: center;
}
.cta-content h2 {
  font-family: "Nunito", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 2rem;
  }
}
.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta .btn-primary {
  background: #ffffff;
  color: #00b5ce;
}
.cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.footer {
  background: #2c3e50;
  color: #ffffff;
  padding: 3rem 0 1rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-section h3 {
  color: #00b5ce;
  font-size: 1.5rem;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-section ul li i {
  color: #00b5ce;
  width: 16px;
}
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
  color: #9b9b9a;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.success-message {
  background: #6cbe45;
  color: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1rem;
  display: none;
}
.success-message.show {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
  padding: 140px 0 80px;
}
.services-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .services-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
.services-hero-text h1 {
  font-family: "Nunito", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2c3e50;
}
@media (max-width: 768px) {
  .services-hero-text h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .services-hero-text h1 {
    font-size: 2rem;
  }
}
.services-hero-text .services-subtitle {
  font-size: 1.5rem;
  color: #00b5ce;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Nunito", sans-serif;
}
.services-hero-text .services-description {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.services-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .services-hero-buttons {
    justify-content: center;
  }
}
.services-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-hero-image .hero-image-placeholder {
  width: 400px;
  height: 300px;
  background: linear-gradient(135deg, #00b5ce, #6cbe45);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services-hero-image .hero-image-placeholder {
    width: 300px;
    height: 225px;
  }
}
.services-hero-image .hero-image-placeholder i {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
}
.services-hero-image .hero-image-placeholder .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}

.cleaning-plans {
  background: #ffffff;
}
.cleaning-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .cleaning-plans-grid {
    grid-template-columns: 1fr;
  }
}

.cleaning-plan-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.cleaning-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.cleaning-plan-card.featured {
  border: 3px solid #00b5ce;
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .cleaning-plan-card.featured {
    transform: none;
  }
}
.cleaning-plan-card .plan-header {
  background: linear-gradient(135deg, #00b5ce, #6cbe45);
  color: #ffffff;
  padding: 2rem;
  text-align: center;
  position: relative;
}
.cleaning-plan-card .plan-header .plan-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.cleaning-plan-card .plan-header .plan-icon i {
  font-size: 1.5rem;
}
.cleaning-plan-card .plan-header h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.cleaning-plan-card .plan-content {
  padding: 2rem;
}
@media (max-width: 480px) {
  .cleaning-plan-card .plan-content {
    padding: 1.5rem;
  }
}
.cleaning-plan-card .plan-content .plan-description {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.cleaning-plan-card .plan-content .plan-details {
  margin-bottom: 2rem;
}
.cleaning-plan-card .plan-content .plan-details p {
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.cleaning-plan-card .plan-content .plan-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}
.cleaning-plan-card .plan-content .plan-note i {
  color: #00b5ce;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.cleaning-plan-card .plan-content .plan-note p {
  margin: 0;
  font-size: 0.9rem;
  color: #333333;
}
.cleaning-plan-card .plan-content .plan-features h4 {
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.cleaning-plan-card .plan-content .plan-features ul {
  list-style: none;
}
.cleaning-plan-card .plan-content .plan-features ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #333333;
}
.cleaning-plan-card .plan-content .plan-features ul li i {
  color: #6cbe45;
  font-size: 0.9rem;
}

.additional-services-section {
  background: #f8f9fa;
}
.additional-services-section .additional-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.additional-services-section .additional-service-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 2rem;
  text-align: center;
}
.additional-services-section .additional-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
  .additional-services-section .additional-service-item {
    padding: 1.5rem;
  }
}
.additional-services-section .additional-service-item .service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00b5ce, #6cbe45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.additional-services-section .additional-service-item .service-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}
.additional-services-section .additional-service-item h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.additional-services-section .additional-service-item p {
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.additional-services-section .additional-service-item .service-price {
  display: inline-block;
  background: #00b5ce;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.1rem;
}

.service-process {
  background: #ffffff;
}
.service-process .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.service-process .process-step {
  text-align: center;
  padding: 2rem;
}
.service-process .process-step .step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00b5ce, #6cbe45);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.service-process .process-step .step-content h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.service-process .process-step .step-content p {
  color: #666666;
  line-height: 1.6;
}

.why-choose-services {
  background: #f8f9fa;
}
.why-choose-services .why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.why-choose-services .why-choose-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 2rem;
  text-align: center;
}
.why-choose-services .why-choose-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
@media (max-width: 480px) {
  .why-choose-services .why-choose-item {
    padding: 1.5rem;
  }
}
.why-choose-services .why-choose-item .choose-icon {
  width: 70px;
  height: 70px;
  background: #f8f9fa;
  border: 3px solid #00b5ce;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.why-choose-services .why-choose-item .choose-icon i {
  font-size: 1.8rem;
  color: #00b5ce;
}
.why-choose-services .why-choose-item h3 {
  font-family: "Nunito", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.why-choose-services .why-choose-item p {
  color: #666666;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

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

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.border-radius {
  border-radius: 12px;
}

.box-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.transition {
  transition: all 0.3s ease;
}

.contact-form input[type=text].is-invalid,
.contact-form input[type=email].is-invalid,
.contact-form input[type=password].is-invalid,
.contact-form input[type=submit].is-invalid,
.contact-form textarea.is-invalid,
.contact-form select.is-invalid {
  border-color: #dc3545;
}
.contact-form input[type=text].is-invalid ~ .invalid-feedback,
.contact-form input[type=email].is-invalid ~ .invalid-feedback,
.contact-form input[type=password].is-invalid ~ .invalid-feedback,
.contact-form input[type=submit].is-invalid ~ .invalid-feedback,
.contact-form textarea.is-invalid ~ .invalid-feedback,
.contact-form select.is-invalid ~ .invalid-feedback {
  color: #dc3545;
}

/*# sourceMappingURL=styles.css.map */
