/* Tajawal font and base variables */
:root {
  --primary: #883737;
  --secondary: #000000;
  --background: #f5f5f5;
  --font-main: 'Tajawal', Arial, sans-serif;
}

html {
  direction: rtl;
  font-family: var(--font-main);
  background: var(--background);
  color: var(--secondary);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--background);
  font-family: var(--font-main);
  min-height: 100vh;
  padding-top: 80px;
}

header, footer {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

main {
  padding: 0;
}

@media (max-width: 768px) {
  main {
    padding: 0 0.5rem;
  }
} 

/* Header Styles */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.nav-menu ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu ul li a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.nav-menu ul li a:hover,
.nav-menu ul li a.active {
  color: var(--primary);
}
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
}

@media (max-width: 900px) {
  .header-container {
    padding: 1rem 1rem;
  }
  .nav-menu ul {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
    z-index: 999;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .burger {
    display: block;
  }
}

@media (max-width: 700px) {
  body {
    padding-top: 70px;
  }
}

/* Footer Styles */
.footer-container {
  background: #222;
  color: #fff;
  padding: 2.5rem 1.5rem 1rem 1.5rem;
  margin-top: 3rem;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  flex: 1 1 220px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 0.7rem;
}
.footer-contact p {
  margin: 0.2rem 0;
  font-size: 1rem;
  color: #eee;
}
.footer-links,
.footer-social {
  flex: 1 1 180px;
}
.footer-links h4,
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--primary);
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 0.5rem;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover {
  color: var(--primary);
}
.footer-social .social-icons a {
  color: #fff;
  margin-left: 0.7rem;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-social .social-icons a:hover {
  color: var(--primary);
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #bbb;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
} 

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 1.5rem;
  margin: 2.5rem auto 2rem auto;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  max-width: 1100px;
  box-shadow: 0 2px 16px rgba(136,55,55,0.06);
  position: relative;
}
.hero-content {
  text-align: center;
  margin-bottom: 2.2rem;
}
.hero-content h1 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
.hero-content p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 1.2rem;
}
.cta-btn {
  background: var(--primary);
  color: #fff;
  padding: 0.7rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(136,55,55,0.08);
  border: none;
  display: inline-block;
}
.cta-btn:hover {
  background: #a94a4a;
  box-shadow: 0 4px 16px rgba(136,55,55,0.13);
}

/* Hero Images Polygonal Style */
.hero-images {
  display: flex;
  gap: 2.5rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}
.hero-img {
  box-shadow: 0 4px 24px rgba(136,55,55,0.10);
  background: #fff;
  object-fit: cover;
  aspect-ratio: 1.1/1;
  height: 260px;
  /* Remove border-radius, use polygonal clip-path */
  border-radius: 12px;
}
/* Polygonal Clip Paths Utility Classes */
.clip-left {
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 20%);
}
.clip-middle {
  clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 10%);
}
.clip-right {
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0% 90%);
}

/* Hero Images: Use utility classes for clip-paths */
.hero-img-1 {
  width: 30%;
  min-width: 220px;
}
.hero-img-2 {
  width: 40%;
  min-width: 300px;
}
.hero-img-3 {
  width: 30%;
  min-width: 220px;
}
@media (max-width: 900px) {
  .hero-images {
    gap: 1rem;
    max-width: 98vw;
  }
  .hero-img {
    height: 160px;
  }
  .hero-img-1, .hero-img-3 {
    min-width: 100px;
  }
  .hero-img-2 {
    min-width: 150px;
  }
}
@media (max-width: 600px) {
  .hero-images {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .hero-img {
    width: 90% !important;
    min-width: 0;
    height: 120px;
  }
}

/* About Section */
.about-section {
  background: #f5f5f5;
  border-radius: 1.2rem;
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(136,55,55,0.04);
}
.about-section h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}
.about-section p {
  color: #444;
  font-size: 1.1rem;
}

/* Services Overview */
.services-overview {
  background: #fff;
  border-radius: 1.2rem;
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  max-width: 1000px;
  box-shadow: 0 2px 8px rgba(136,55,55,0.04);
  text-align: center;
}
.services-overview h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.services-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.service-card {
  background: #f5f5f5;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(136,55,55,0.04);
  padding: 1.2rem 1.5rem;
  min-width: 160px;
  max-width: 200px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
.service-card h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin: 0;
}
.service-card:hover {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 6px 24px rgba(136,55,55,0.10);
}
@media (max-width: 700px) {
  .services-cards {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .service-card {
    width: 90%;
    max-width: 350px;
    display: grid;
  }
  .service-card i {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
  }
  .service-card h3 {
    font-size: 2.1rem;
    color: var(--secondary);
    margin: 0;
  }
  .services-cards {
    padding: 25px;
  }
}

/* Services CTA Button */
.services-cta {
  margin-top: 2rem;
  text-align: center;
}

.services-btn {
  background: var(--primary);
  color: #fff;
  padding: 0.7rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(136,55,55,0.08);
  border: none;
  display: inline-block;
}

.services-btn:hover {
  background: #a94a4a;
  box-shadow: 0 4px 16px rgba(136,55,55,0.13);
}

.services-btn:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .services-btn {
    padding: 0.8rem 2.5rem;
    font-size: 1.2rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: #fff;
  border-radius: 1.2rem;
  margin: 3.5rem auto 3.5rem auto;
  padding: 3rem 1.5rem 3rem 1.5rem;
  max-width: 700px;
  box-shadow: 0 4px 24px rgba(136,55,55,0.10);
  text-align: center;
  position: relative;
}
.testimonials-section h2 {
  margin-bottom: 2.2rem;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}
.testimonial {
  background: #f5f5f5;
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  color: #333;
  font-size: 1.1rem;
  margin: 0 auto;
  max-width: 500px;
  box-shadow: 0 2px 8px rgba(136,55,55,0.04);
}
.testimonial span {
  display: block;
  margin-top: 0.7rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

/* Animations on scroll (fade-in) */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
[data-animate].animated {
  opacity: 1;
  transform: none;
} 

/* Enforce clip-path on images and cards */
.hero-img,
.service-card {
  overflow: hidden;
}

/* Remove border-radius from .service-card if present */
.service-card {
  border-radius: 0 !important;
} 

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0 2.5rem 0;
  min-height: 260px;
}
.carousel-arrow {
  background: var(--primary);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(136,55,55,0.10);
  width: 2.7rem;
  height: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  opacity: 0.92;
}
.carousel-arrow.right {
  left: -10rem;
}
.carousel-arrow.left {
  right: -6rem;
}
.carousel-arrow:focus,
.carousel-arrow:hover {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(136,55,55,0.18);
}
.testimonial-cards {
  width: 100%;
  display: block;
  position: relative;
  min-height: 260px;
  justify-content: center;
  height: auto;
}
.testimonial-card {
  display: none;
  min-width: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  background: #fff;
  box-shadow: 0 8px 32px rgba(136,55,55,0.13), 0 1.5px 0 0 var(--primary);
  padding: 2.7rem 2.2rem 2.2rem 2.2rem;
  margin: 0 0.5rem;
  color: #222;
  font-size: 1.18rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--primary);
  border-bottom-width: 6px;
  border-right-width: 5px;
  border-left: none;
  border-top: none;
  transform: translateX(0);
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
}
.testimonial-card.active {
  display: flex !important;
  z-index: 2;
  transform: translateX(0);
}
.testimonial-card.slide-in-left,
.testimonial-card.slide-in-right,
.testimonial-card.slide-out-left,
.testimonial-card.slide-out-right {
  /* No display:flex here! Only JS sets it. */
}
.testimonial-card.slide-in-left {
  z-index: 3;
  transform: translateX(-100%);
}
.testimonial-card.slide-in-right {
  z-index: 3;
  transform: translateX(100%);
}
.testimonial-card.slide-out-left {
  z-index: 2;
  transform: translateX(-100%);
}
.testimonial-card.slide-out-right {
  z-index: 2;
  transform: translateX(100%);
}
.testimonial-card p {
  margin: 0 0 1.5rem 0;
  font-size: 1.25rem;
  line-height: 1.9;
  font-weight: 500;
  color: #222;
  position: relative;
}
.testimonial-card p::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  font-size: 2.2rem;
  position: absolute;
  right: -2.2rem;
  top: -0.7rem;
  opacity: 0.18;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.08rem;
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}
@media (max-width: 700px) {
  .testimonials-section {
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    margin: 2rem 0 2rem 0;
  }
  .testimonials-carousel {
    max-width: 98vw;
    padding: 1.2rem 0 1.2rem 0;
    min-height: 180px;
  }
  .testimonial-cards {
    min-height: 180px;
    margin: 30px;
  }
  .testimonial-card {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    font-size: 1rem;
    border-width: 2px;
    border-bottom-width: 4px;
    border-right-width: 3px;
  }
  .carousel-arrow {
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
    left: -3.2rem;
    right: -3.2rem;
  }
  .testimonial-card p::before {
    font-size: 1.5rem;
    right: -1.2rem;
    top: -0.3rem;
  }
} 

.hero-section,
.about-section,
.services-overview,
.testimonials-section {
  max-width: none;
  margin: 0;
  border-radius: 0;
  padding-left: 4vw;
  padding-right: 4vw;
}

/* Modern About Section */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 2px 16px rgba(136,55,55,0.06);
  padding: 3.5rem 4vw;
  gap: 3rem;
  min-height: 340px;
}
.about-section .about-text {
  flex: 2;
  text-align: right;
}
.about-section h2 {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.about-section p {
  color: #333;
  font-size: 1.25rem;
  line-height: 2.1;
  margin-bottom: 0;
}
.about-section .about-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section .about-image img {
  max-width: 320px;
  width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(136,55,55,0.10);
  object-fit: cover;
}
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 2vw;
    min-height: unset;
  }
  .about-section .about-image img {
    max-width: 90vw;
  }
  .about-section h2 {
    font-size: 1.5rem;
  }
  .about-section p {
    font-size: 1.05rem;
  }
} 

.hero-section,
.about-section,
.services-overview,
.testimonials-section {
  padding-left: 7vw;
  padding-right: 7vw;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.about-section {
  gap: 5rem;
  min-height: 420px;
  padding: 5rem 7vw;
}
.about-section h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
.about-section p {
  font-size: 1.55rem;
  line-height: 2.3;
}
.about-section .about-image img {
  max-width: 420px;
  border-radius: 1.7rem;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}
.hero-content p {
  font-size: 1.45rem;
  margin-bottom: 2rem;
}
.cta-btn {
  font-size: 1.4rem;
  padding: 1.1rem 3.2rem;
}

.services-overview h2,
.testimonials-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2.2rem;
}
.service-card {
  padding: 2.2rem 2.5rem;
  min-width: 220px;
  max-width: 320px;
}
.service-card i {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-size: 1.4rem;
}

.testimonial-card {
  padding: 3.2rem 2.7rem 2.7rem 2.7rem;
  font-size: 1.45rem;
}
.testimonial-card p {
  font-size: 1.35rem;
}
.testimonial-card span {
  font-size: 1.25rem;
}

@media (max-width: 900px) {
  .hero-section,
  .about-section,
  .services-overview,
  .testimonials-section {
    padding-left: 3vw;
    padding-right: 3vw;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .about-section {
    gap: 2rem;
    min-height: unset;
    padding: 2.5rem 3vw;
  }
  .about-section h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  .about-section p {
    font-size: 1.1rem;
  }
  .about-section .about-image img {
    max-width: 95vw;
    border-radius: 1.1rem;
  }
  .hero-content h1 {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
  }
  .hero-content p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
  .cta-btn {
    font-size: 1.05rem;
    padding: 0.7rem 1.5rem;
  }
  .services-overview h2,
  .testimonials-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .service-card {
    padding: 1.2rem 1.2rem;
    min-width: 120px;
    max-width: 98vw;
  }
  .service-card i {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
  }
  .service-card h3 {
    font-size: 1.05rem;
  }
  .testimonial-card {
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    font-size: 1.05rem;
  }
  .testimonial-card p {
    font-size: 1.05rem;
  }
  .testimonial-card span {
    font-size: 1.05rem;
  }
} 

/* About Values Section */
.about-values {
  background: linear-gradient(90deg, #f5f5f5 60%, #fbeee6 100%);
  padding: 4rem 7vw 4rem 7vw;
  margin-top: 0;
}
.values-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
}
.value-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(136,55,55,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
}
.value-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.value-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}
.value-card p {
  font-size: 1.15rem;
  color: #333;
  line-height: 2;
}
.value-card:hover {
  box-shadow: 0 8px 32px rgba(136,55,55,0.18);
  transform: translateY(-7px) scale(1.04);
}

/* Services Grid */
.services-cards.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: #f5f5f5;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(136,55,55,0.04);
  padding: 1.2rem 1.5rem;
  min-width: 160px;
  max-width: 200px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 6px 24px rgba(136,55,55,0.10);
}
.service-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
.service-card h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin: 0;
}
.service-card p {
  font-size: 1rem;
  color: #444;
  margin-top: 0.7rem;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .services-cards.services-grid {
    gap: 1rem;
  }
  .service-card {
    padding: 1.2rem 0.7rem;
    min-width: 120px;
    max-width: 98vw;
  }
  .service-card i {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
  }
  .service-card h3 {
    font-size: 1.05rem;
  }
  .service-card p {
    font-size: 0.95rem;
  }
}

/* CTA Section */
.cta-section {
  background: linear-gradient(90deg, #fbeee6 60%, #f5f5f5 100%);
  padding: 4rem 7vw;
  text-align: center;
  border-radius: 1.5rem;
  margin: 3rem 0 0 0;
}
.cta-content h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 2rem;
}
.cta-content .cta-btn {
  font-size: 1.4rem;
  padding: 1.1rem 3.2rem;
  border-radius: 2rem;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(136,55,55,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.cta-content .cta-btn:hover {
  background: #a94a4a;
  box-shadow: 0 4px 16px rgba(136,55,55,0.13);
}

/* Contact Section */
.contact-section {
  display: flex;
  gap: 4rem;
  background: linear-gradient(90deg, #f5f5f5 60%, #fbeee6 100%);
  padding: 5rem 7vw;
  border-radius: 1.5rem;
  margin: 0;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-form-area, .contact-info-area {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(136,55,55,0.10);
  padding: 2.5rem 2rem 2rem 3rem;
  flex: 1 1 340px;
  min-width: 320px;
  margin-bottom: 2rem;
}
.contact-form-area h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 0.7rem;
  border: 1.5px solid #ddd;
  font-size: 1.1rem;
  font-family: inherit;
  background: #fafafa;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}
.contact-form button {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(136,55,55,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.contact-form button:hover {
  background: #a94a4a;
  box-shadow: 0 4px 16px rgba(136,55,55,0.13);
}
.contact-info-area h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.contact-info-area p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.7rem;
}
.contact-info-area i {
  color: var(--primary);
  margin-left: 0.5rem;
}
@media (max-width: 900px) {
  .about-values, .cta-section {
    padding: 2rem 3vw;
  }
  .values-cards, .services-cards.services-grid {
    gap: 1.2rem;
  }
  .value-card, .service-card {
    padding: 1.2rem 0.7rem;
    min-height: 180px;
  }
  .cta-section {
    padding: 2rem 3vw;
    border-radius: 1rem;
  }
  .cta-content h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .cta-content .cta-btn {
    font-size: 1.05rem;
    padding: 0.7rem 1.5rem;
  }
  .contact-section {
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 3vw;
    border-radius: 1rem;
  }
  .contact-form-area, .contact-info-area {
    padding: 1.2rem 0.7rem;
    min-width: unset;
  }
} 

@media (max-width: 700px) {
  .hero-section,
  .about-section,
  .services-overview,
  .testimonials-section {
    padding-left: 2vw;
    padding-right: 2vw;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .hero-section {
    flex-direction: column;
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }
  .hero-content h1 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
  }
  .hero-images {
    flex-direction: column;
    gap: 0.7rem;
    align-items: center;
    max-width: 100vw;
  }
  .hero-img {
    width: 100% !important;
    min-width: 0;
    height: 90px;
    margin-bottom: 0.5rem;
  }
  .services-cards {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .service-card {
    width: 100%;
    max-width: 98vw;
    min-width: unset;
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
  }
  .service-card i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  .service-card h3 {
    font-size: 0.95rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
  .testimonials-section {
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    margin: 2rem 0 2rem 0;
  }
  .testimonial-card {
    padding: 1rem 0.5rem 1rem 0.5rem;
    font-size: 0.95rem;
  }
  .testimonial-card p {
    font-size: 0.95rem;
  }
  .testimonial-card span {
    font-size: 0.95rem;
  }
  /* Contact page */
  .contact-section {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem 2vw;
    border-radius: 1rem;
  }
  .contact-form-area, .contact-info-area {
    padding: 30px;
    min-width: unset;
    width: 100%;
    box-sizing: border-box;
  }
  .contact-form-area h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .contact-form .form-group {
    margin-bottom: 1rem;
  }
  .contact-form label {
    font-size: 0.95rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 0.7rem;
  }
  .contact-form button {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    width: 100%;
    margin-top: 0.7rem;
  }
  .contact-info-area h3 {
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }
  .contact-info-area p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
} 

.site-logo {
  max-width: 120px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media (max-width: 700px) {
  .site-logo {
    max-width: 80px;
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
} 

/* Services Page Styles */
.services-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #a04545 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.services-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.services-hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.main-services {
  padding: 3rem 2rem;
  max-width: 1800px;
  margin: 0 auto;
}

.main-services h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--primary);
}

.main-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.main-service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.main-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: var(--primary);
}

.main-service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, #a04545 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.main-service-icon i {
  font-size: 2rem;
  color: white;
}

.main-service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.main-service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: #555;
  position: relative;
  padding-right: 1.5rem;
  font-size: 1.4rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Service Feature Links */
.service-feature-link {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.service-feature-link:hover {
  color: var(--primary);
  transform: translateX(-5px);
}

.service-feature-link:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

.service-feature-link i {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.service-feature-link:hover i {
  transform: translateX(-3px);
  opacity: 1;
}

/* Ensure proper spacing for the checkmark when link is present */
.service-features li:has(.service-feature-link)::before {
  display: none;
}

/* Individual Services Section */
.individual-services {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.individual-services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.individual-services > p {
  text-align: center;
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

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

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.service-link {
  display: inline-block;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.service-link:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Accordion Styles */
.additional-services {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.additional-services h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--primary);
}

.accordion-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.accordion-item {
  border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  padding: 1.5rem 2rem;
  background: white;
  border: none;
  text-align: right;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  font-family: var(--font-main);
  font-size: 1.1rem;
  color: var(--secondary);
}

.accordion-header:hover {
  background: #f8f8f8;
}

.accordion-header i:first-child {
  color: var(--primary);
  font-size: 1.3rem;
  margin-left: 1rem;
}

.accordion-header span {
  flex: 1;
  text-align: right;
  font-weight: 500;
}

.accordion-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
}

.accordion-content.active {
  max-height: 500px;
}

.accordion-content p {
  padding: 1.5rem 2rem 1rem 2rem;
  margin: 0;
  color: #666;
  line-height: 1.6;
  font-size: 1.3rem;
}

.accordion-content ul {
  padding: 0 2rem 1.5rem 2rem;
  margin: 0;
  list-style: none;
}

.accordion-content li {
  padding: 0.3rem 0;
  color: #555;
  position: relative;
  padding-right: 1.2rem;
  font-size: 1.3rem;
}

.accordion-content li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Responsive Design for Services Page */
@media (max-width: 900px) {
  .services-hero {
    padding: 3rem 1rem;
  }
  
  .services-hero-content h1 {
    font-size: 2rem;
  }
  
  .services-hero-content p {
    font-size: 1.1rem;
  }
  
  .main-services,
  .additional-services {
    padding: 2rem 1rem;
  }
  
  .main-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .main-service-card {
    padding: 2rem;
  }
  
  .main-service-icon {
    width: 70px;
    height: 70px;
  }
  
  .main-service-icon i {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .services-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .main-services h2,
  .additional-services h2 {
    font-size: 1.8rem;
  }
  
  .main-service-card {
    padding: 1.5rem;
  }
  
  .accordion-header {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }
  
  .accordion-content p,
  .accordion-content ul {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
} 

/* Contact Social Media Styles */
.contact-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.contact-social h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.contact-social .social-icons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-social .social-icons a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--secondary);
  text-decoration: none;
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #f8f8f8;
}

.contact-social .social-icons a:hover {
  background: var(--primary);
  color: white;
  transform: translateX(-5px);
}

.contact-social .social-icons i {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.contact-social .social-icons span {
  font-weight: 500;
}

/* Responsive Design for Contact Social */
@media (max-width: 700px) {
  .contact-social .social-icons a {
    padding: 0.6rem;
  }
  
  .contact-social .social-icons i {
    font-size: 1.1rem;
  }
  
  .contact-social .social-icons span {
    font-size: 0.95rem;
  }
}

/* Service Template Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
section.service-contact.animated > .container {
  padding: 0rem !important;
}


/* Service Hero Section */
.service-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #a04545 100%);
  color: white;
  padding: 5rem 2rem;
  margin: 0;
}

.service-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.service-hero-text p {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.hero-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
}

.hero-feature i {
  color: #4CAF50;
  font-size: 1.4rem;
}

.service-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

/* Service Description Section */
.service-description {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.description-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.description-text h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.description-text p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.description-text ul {
  margin: 1.5rem 0;
  padding-right: 1.5rem;
}

.description-text li {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 0.8rem;
  position: relative;
}

.description-text li::before {
  content: "✓";
  position: absolute;
  right: -1.5rem;
  color: var(--primary);
  font-weight: bold;
}

.description-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #a04545 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
  font-size: 1.4rem;
}

/* Service Gallery Section */
.service-gallery {
  padding: 5rem 2rem;
  background: white;
}

.service-gallery h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-gallery > .container > p {
  text-align: center;
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 3rem;
}

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

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* Service Process Section */
.service-process {
  padding: 5rem 2rem;
  background: #f9f9f9;
}

.service-process h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #a04545 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin: 0 auto 1.5rem;
}

.step-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.step-content p {
  color: #666;
  line-height: 1.5;
  font-size: 1.4rem;
}

/* Service Contact Section */
.service-contact {
  padding: 5rem 2rem;
  background: linear-gradient(90deg, #f5f5f5 60%, #fbeee6 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-info > p {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.contact-item h4 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  margin-bottom: 0.3rem;
  font-size: 1.4rem;
}

.contact-form-container {
  background: white;
  padding: 3.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-contact-form .form-group {
  margin-bottom: 1.5rem;
}

.service-contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
}

.service-contact-form input,
.service-contact-form select,
.service-contact-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 0.7rem;
  border: 1.5px solid #ddd;
  font-size: 1.3rem;
  font-family: inherit;
  background: #fafafa;
  transition: border 0.2s;
}

.service-contact-form input:focus,
.service-contact-form select:focus,
.service-contact-form textarea:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}

.service-contact-form button {
  width: 100%;
  font-size: 1.4rem;
  padding: 1rem 2.5rem;
  border-radius: 2rem;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(136,55,55,0.08);
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.service-contact-form button:hover {
  background: #a94a4a;
  box-shadow: 0 4px 16px rgba(136,55,55,0.13);
}

/* Service CTA Section */
.service-cta {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #a04545 100%);
  color: white;
  text-align: center;
}

.service-cta .cta-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-cta .cta-content p {
  font-size: 1.6rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

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

.cta-btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--primary);
}


/* Responsive Design for Service Template */
@media (max-width: 900px) {
  .service-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .service-hero-text h1 {
    font-size: 3rem;
  }
  
  .description-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 700px) {
  .service-hero {
    padding: 3rem 1rem;
  }
  
  .service-hero-text h1 {
    font-size: 2.5rem;
  }
  
  .service-description,
  .service-gallery,
  .service-process,
  .service-contact {
    padding: 3rem 1rem;
  }
  
  .description-text h2,
  .service-gallery h2,
  .service-process h2,
  .contact-info h2,
  .service-cta .cta-content h2 {
    font-size: 2.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .service-hero-text h1 {
    font-size: 2.2rem;
  }
  
  .description-text h2,
  .service-gallery h2,
  .service-process h2,
  .contact-info h2,
  .service-cta .cta-content h2 {
    font-size: 2.2rem;
  }
  
  .feature-card,
  .process-step {
    padding: 1.5rem;
  }
  
  .contact-form-container {
    padding: 4rem;
  }
} 