/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Base */
body {
  font-family: "Cairo", Arial, sans-serif;
  direction: rtl;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  /* Features */
  .feature-title {
    font-size: 1rem !important;
  }

  .feature-description {
    font-size: 0.8rem !important;
  }

  .feature-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.5rem !important;
  }

  /* Services */
  .service-preview-card {
    margin: 0 auto !important;
    max-width: 300px;
  }

  .service-preview-content {
    padding: 20px 15px !important;
  }

  .service-preview-content h3 {
    font-size: 1rem !important;
    margin-bottom: 10px !important;
  }

  .service-preview-content p {
    font-size: 0.8rem !important;
    margin-bottom: 15px !important;
  }

  /* Testimonials */
  .testimonial-text {
    font-size: 0.85rem !important;
  }

  .testimonial-stars i {
    font-size: 0.9rem !important;
  }

  .author-info h4 {
    font-size: 0.9rem !important;
  }

  .author-info span {
    font-size: 0.75rem !important;
  }

  /* CTA Section */
  .cta-title {
    font-size: 1.4rem !important;
  }

  .cta-subtitle {
    font-size: 0.9rem !important;
  }

  /* Contact Page */
  .contact-hero-title {
    font-size: 1.6rem !important;
  }

  .contact-hero-subtitle {
    font-size: 0.9rem !important;
  }

  .contact-method-card h3 {
    font-size: 1.1rem !important;
  }

  .contact-method-card p {
    font-size: 0.85rem !important;
  }

  .hours-text h3 {
    font-size: 1.2rem !important;
  }

  .hours-text p {
    font-size: 0.85rem !important;
  }

  .contact-feature h4 {
    font-size: 1rem !important;
  }

  .contact-feature p {
    font-size: 0.85rem !important;
  }

  .contact-cta-section h2 {
    font-size: 1.4rem !important;
  }

  .contact-cta-section p {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  /* Feature Cards */
  .feature-title {
    font-size: 1.1rem;
  }

  .feature-description {
    font-size: 0.85rem;
  }

  /* Service Cards */
  .service-preview-content h3 {
    font-size: 1.1rem;
  }

  .service-preview-content p {
    font-size: 0.85rem;
  }

  .service-preview-features li {
    font-size: 0.8rem;
  }

  /* Testimonial Cards */
  .testimonial-text {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .testimonial-stars i {
    font-size: 1rem;
  }

  .author-info h4 {
    font-size: 0.95rem;
  }

  .author-info span {
    font-size: 0.75rem;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #02552b;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  background-color: #02552b;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #02552b;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    right: -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: 20px 0;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-item {
    margin: 10px 0;
  }

  .nav-link {
    font-size: 16px;
    padding: 12px 16px;
  }
}

/* Basic Styles for Other Components */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #02552b;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #02552b;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #034a24;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #02552b;
  border: 2px solid #02552b;
}

.btn-secondary:hover {
  background-color: #02552b;
  color: #ffffff;
}

/* Hero Section */
.hero {
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("img/background.png") center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
  line-height: 1.8;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.hero-buttons .btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  min-width: 160px;
}

.hero-buttons .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: left 0.5s;
}

.hero-buttons .btn:hover::before {
  left: 100%;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #02552b 0%, #034a24 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(2, 85, 43, 0.4);
  border: 2px solid transparent;
}

.hero-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #034a24 0%, #02552b 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(2, 85, 43, 0.5);
}

.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Keyframe Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Hero decorative elements */
.hero-container::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(2, 85, 43, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: -1;
}

.hero-container::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(189, 48, 39, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
  z-index: -1;
}

/* Ripple effect for buttons */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Enhanced button icons */
.hero-buttons .btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
  transform: translateX(-2px);
}

/* Loading animation for hero elements */
.hero-title,
.hero-subtitle,
.hero-buttons {
  animation-play-state: running;
}

/* Enhanced focus states */
.hero-buttons .btn:focus-visible {
  outline: 3px solid rgba(2, 85, 43, 0.5);
  outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
.hero-buttons .btn,
.hero-buttons .btn::before,
.hero-buttons .btn i {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Page Sections */
.page-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  color: #02552b;
}

.page-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

/* About Section */
.about-section {
  padding: 60px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-img {
  width: 100%;
  border-radius: 12px;
}

/* Services Section */
.services-section {
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #02552b;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 5px 0;
  color: #666;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contact-icon {
  font-size: 48px;
  color: #02552b;
  margin-bottom: 20px;
}

.contact-link {
  color: #02552b;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  color: #bd3027;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #02552b 0%, #034a24 100%);
  color: #ffffff;
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-section a:hover {
  color: #ffffff;
  transform: translateX(-2px);
}

.footer-contact a i {
  margin-left: 8px;
  font-size: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 1rem;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  color: #bbb;
}

/* Mobile Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-section {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .footer-section p {
    font-size: 0.85rem;
  }

  .footer-social {
    justify-content: center;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .footer-contact a {
    font-size: 0.85rem;
  }
  .footer-bottom p {
    font-size: 10px;
  }
}

/* Floating Contact Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.call-float,
.whatsapp-float {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.call-float {
  background-color: #02552b;
  color: #ffffff;
  animation: call-pulse 2s infinite;
}

.call-float:hover {
  background-color: #034a24;
  transform: scale(1.1);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(2, 85, 43, 0.4);
  animation-play-state: paused;
}

.call-float:focus-visible {
  outline: 3px solid rgba(2, 85, 43, 0.5);
  outline-offset: 2px;
}

.whatsapp-float {
  background-color: #25d366;
  color: #ffffff;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
  animation-play-state: paused;
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.5);
  outline-offset: 2px;
}

/* Call button pulse animation */
@keyframes call-pulse {
  0% {
    box-shadow: 0 4px 15px rgba(2, 85, 43, 0.3), 0 0 0 0 rgba(2, 85, 43, 0.7);
  }
  70% {
    box-shadow: 0 4px 15px rgba(2, 85, 43, 0.3), 0 0 0 10px rgba(2, 85, 43, 0);
  }
  100% {
    box-shadow: 0 4px 15px rgba(2, 85, 43, 0.3), 0 0 0 0 rgba(2, 85, 43, 0);
  }
}

/* WhatsApp button pulse animation */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3),
      0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3),
      0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile responsive adjustments for floating buttons */
@media (max-width: 768px) {
  .floating-buttons {
    right: 16px;
    bottom: 16px;
    gap: 12px;
  }

  .call-float,
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
    min-height: 70vh;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-buttons .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 140px;
    flex: 0 0 auto;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
/* Sectio
n Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #02552b;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #02552b, #fff);
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #bd3027, #a02822);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #bd3027, #a02822);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #02552b;
  margin-bottom: 15px;
}

.feature-description {
  color: #666;
  line-height: 1.7;
}

/* Services Preview Section */
.services-preview {
  padding: 80px 0;
  background-color: #ffffff;
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.service-preview-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-preview-image {
  height: auto;
  width: auto;
  overflow: hidden;
  position: relative;
}

.service-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: fit;
  transition: transform 0.3s ease;
}

.service-preview-card:hover .service-preview-image img {
  transform: scale(1.05);
}

.service-preview-content {
  padding: 30px;
}

.service-preview-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #02552b;
  margin-bottom: 15px;
}

.service-preview-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-preview-features {
  list-style: none;
  padding: 0;
}

.service-preview-features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #555;
}

.service-preview-features i {
  color: #02552b;
  margin-left: 10px;
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23025529" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>')
    repeat;
  pointer-events: none;
}

.testimonials-swiper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.testimonial-card {
  background: #ffffff;
  padding: 50px 40px;
  top: 20px;
  border-radius: 24px;
  position: relative;
  text-align: center;
  width: 100%;
  height: 90%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(2, 85, 43, 0.05);
}

.testimonial-quote {
  position: absolute;
  top: -15px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #02552b, #034a24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(2, 85, 43, 0.3);
}

.testimonial-stars {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-stars i {
  color: #ffb400;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
  font-size: 1.1rem;
  position: relative;
  padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: #02552b;
  opacity: 0.3;
  font-family: serif;
  position: absolute;
  top: -10px;
}

.testimonial-text::before {
  right: 100%;
}

.testimonial-text::after {
  left: 100%;
  transform: scaleX(-1);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.author-avatar {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #bd3027, #a02822);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(189, 48, 39, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  box-shadow: 0 12px 35px rgba(189, 48, 39, 0.4);
}

.author-info {
  text-align: right;
}

.author-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #02552b;
  margin-bottom: 8px;
  line-height: 1.2;
}

.author-info span {
  color: #888;
  font-size: 1rem;
  font-weight: 500;
}

/* Custom Swiper Navigation */
.testimonial-nav-next,
.testimonial-nav-prev {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #eee, #fff);
  border-radius: 50%;
  color: #034a24;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  backdrop-filter: blur(10px);
}

.testimonial-nav-next:hover,
.testimonial-nav-prev:hover {
  background: linear-gradient(135deg, #fff, #eee);
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(2, 85, 43, 0.4);
}

.testimonial-nav-next::after,
.testimonial-nav-prev::after {
  display: none;
}

.testimonial-nav-next {
  left: auto;
  right: -27px;
}

.testimonial-nav-prev {
  right: auto;
  left: -27px;
}

/* Custom Swiper Pagination */
.testimonial-pagination {
  position: relative;
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  left: 0;
  right: 0;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #ddd;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #02552b, #034a24);
  transform: scale(1.3);
  box-shadow: 0 4px 15px rgba(2, 85, 43, 0.3);
}

.testimonial-pagination .swiper-pagination-bullet:hover {
  background: #02552b;
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials-swiper {
    padding: 0 15px;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .testimonial-nav-next,
  .testimonial-nav-prev {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .testimonial-nav-next {
    right: -22px;
  }

  .testimonial-nav-prev {
    left: -22px;
  }

  .author-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .testimonial-author {
    gap: 15px;
  }

  .author-info h4 {
    font-size: 1.1rem;
  }

  .author-info span {
    font-size: 0.9rem;
  }

  .testimonial-pagination {
    margin-top: 35px;
    padding: 0 15px;
    max-width: 100%;
    overflow: hidden;
  }

  .testimonial-pagination .swiper-pagination-bullet {
    margin: 0 5px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 35px 25px;
  }

  .testimonial-text {
    font-size: 1rem;
    padding: 0 10px;
  }

  .testimonial-nav-next,
  .testimonial-nav-prev {
    display: none;
  }

  .testimonial-pagination {
    margin-top: 30px;
    padding: 0 20px;
  }

  .testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 4px;
  }

  .testimonial-pagination .swiper-pagination-bullet-active {
    transform: scale(1.2);
  }
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #bd3027 0%, #a02822 100%);
  color: #ffffff;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 50px;
  min-width: 160px;
}

.cta-buttons .btn-primary {
  background-color: #ffffff;
  color: #bd3027;
}

.cta-buttons .btn-primary:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-buttons .btn-secondary:hover {
  background-color: #ffffff;
  color: #bd3027;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .services-preview-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .cta-buttons .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 140px;
    flex: 0 0 auto;
  }
}

@media (max-width: 480px) {
  .features-section,
  .services-preview,
  .how-it-works,
  .testimonials-section,
  .cta-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .testimonial-card {
    padding: 30px 20px;
  }

  .service-preview-content {
    padding: 25px;
  }

  .cta-title {
    font-size: 1.4rem;
  }

  .cta-subtitle {
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-buttons .btn,
  .cta-buttons .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    min-width: 130px;
  }
}
/* About Page Styles */
.about-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
}

.about-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #02552b;
  margin-bottom: 15px;
}

.about-hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.about-story {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro h2 {
  font-size: 2rem;
  color: #02552b;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

.vision-mission {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vm-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #02552b;
  transition: all 0.3s ease;
}

.vm-card:hover {
  transform: translateX(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.vm-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a02822, #bd3027);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.vm-card h3 {
  font-size: 1.3rem;
  color: #02552b;
  margin-bottom: 15px;
}

.vm-card p {
  color: #666;
  line-height: 1.6;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image:hover .about-img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #a02822;
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.values-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.value-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #02552b;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #bd3027, #a02822);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: 1.3rem;
  color: #02552b;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

.about-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #02552b 0%, #034a24 100%);
  color: #ffffff;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.about-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.about-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta .btn {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 50px;
  min-width: 160px;
}

.about-cta .btn-primary {
  background: #ffffff;
  color: #02552b;
}

.about-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.about-cta .btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.about-cta .btn-secondary:hover {
  background: #ffffff;
  color: #02552b;
  transform: translateY(-2px);
}

/* About Page Mobile Responsive */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2rem !important;
  }

  .about-hero-subtitle {
    font-size: 1rem !important;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-intro h2 {
    font-size: 1.6rem !important;
  }

  .intro-text {
    font-size: 0.95rem !important;
  }

  .vm-card h3 {
    font-size: 1.1rem !important;
  }

  .vm-card p {
    font-size: 0.9rem !important;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .value-card h3 {
    font-size: 1.1rem !important;
  }

  .value-card p {
    font-size: 0.9rem !important;
  }

  .about-cta h2 {
    font-size: 1.6rem !important;
  }

  .about-cta p {
    font-size: 0.95rem !important;
  }

  .about-cta .cta-buttons {
    flex-direction: row;
    gap: 12px;
  }

  .about-cta .btn {
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    min-width: 140px !important;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 60px 0 40px;
  }

  .about-story,
  .values-section,
  .about-cta {
    padding: 60px 0;
  }

  .vm-card,
  .value-card {
    padding: 30px 20px;
  }
}
/* Contact Page Styles */
.contact-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
}

.contact-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #02552b;
  margin-bottom: 15px;
}

.contact-hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-methods {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.contact-method-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid #02552b;
}

.contact-method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-method-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #02552b, #034a24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: 2rem;
}

.contact-method-card h3 {
  font-size: 1.4rem;
  color: #02552b;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-method-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-method-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f8f9fa;
  color: #02552b;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-method-link:hover {
  background: #02552b;
  color: #ffffff;
  transform: translateY(-2px);
}

.contact-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #bd3027, #a02822);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-hours {
  padding: 60px 0;
  background: linear-gradient(135deg, #02552b 0%, #034a24 100%);
  color: #ffffff;
}

.hours-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.hours-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hours-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
}

.hours-text h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.hours-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.hours-schedule {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 8px;
  min-width: 250px;
}

.day {
  font-weight: 600;
}

.time {
  color: rgba(255, 255, 255, 0.9);
}

.why-contact-us {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.contact-feature {
  text-align: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #bd3027, #a02822);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
  font-size: 1.3rem;
}

.contact-feature h4 {
  font-size: 1.2rem;
  color: #02552b;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-feature p {
  color: #666;
  line-height: 1.5;
}

.contact-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #bd3027 0%, #a02822 100%);
  color: #ffffff;
  text-align: center;
}

.contact-cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.contact-cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-cta-section .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-cta-section .btn {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 50px;
  min-width: 160px;
}

.contact-cta-section .btn-primary {
  background: #ffffff;
  color: #bd3027;
}

.contact-cta-section .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.contact-cta-section .btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.contact-cta-section .btn-secondary:hover {
  background: #ffffff;
  color: #bd3027;
  transform: translateY(-2px);
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
  .contact-hero-title {
    font-size: 2rem !important;
  }

  .contact-hero-subtitle {
    font-size: 1rem !important;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .contact-grid .contact-method-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 300px;
  }

  .contact-method-card {
    padding: 30px 20px;
  }

  .contact-method-icon {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.5rem !important;
    margin-bottom: 15px !important;
  }

  .contact-method-card h3 {
    font-size: 1rem !important;
  }

  .contact-method-card p {
    font-size: 0.8rem !important;
  }

  .contact-method-link {
    padding: 10px 16px !important;
    font-size: 0.8rem !important;
  }

  .contact-badge {
    font-size: 0.7rem !important;
    padding: 4px 8px !important;
  }

  .hours-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .schedule-item {
    min-width: auto;
    width: 100%;
  }

  .contact-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .contact-feature h4 {
    font-size: 1.1rem !important;
  }

  .contact-feature p {
    font-size: 0.9rem !important;
  }

  .contact-cta-section h2 {
    font-size: 1.6rem !important;
  }

  .contact-cta-section p {
    font-size: 0.95rem !important;
  }

  .contact-cta-section .cta-buttons {
    flex-direction: row;
    gap: 12px;
  }

  .contact-cta-section .btn {
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    min-width: 140px !important;
  }
}

@media (max-width: 480px) {
  .contact-hero,
  .contact-methods,
  .why-contact-us,
  .contact-cta-section {
    padding: 60px 0;
  }

  .service-hours {
    padding: 50px 0;
  }

  .contact-method-card {
    padding: 30px 20px;
  }

  .contact-features {
    grid-template-columns: 1fr;
  }
}
