.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   Section 1: Hero Section CSS
   ========================================== */

/* ===== SECTION 1: HERO SECTION ===== */
.service-hero-section {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 992px) {
  .service-hero-section {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .service-hero-section {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .service-hero-section {
    height: 180px;
  }
}

/* ===== SECTION 2: SERVICES INFO ===== */
.services-info-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.services-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.vertical-bars {
  width: 4px;
  height: 30px;
  background-color: #facd14;
}

.services-label {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
}

.services-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 40px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e5e5e5;
}

.services-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 40px 0 20px;
}

.services-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin: 0 0 20px;
}

/* ===== CTA ESTIMATE SECTION ===== */
.cta-estimate-section {
  padding: 50px 0;
  background: linear-gradient(#09436a 0%, #0c3e60 100%);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.3;
}

.cta-text p {
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  opacity: 0.9;
}

.cta-btn {
  padding: 16px 40px;
  background-color: #facd14;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-btn:hover {
  background: transparent;
  transform: translateY(-2px);

  border: 2px solid #facd14;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 24px;
  }

  .cta-text p {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-estimate-section {
    padding: 40px 0;
  }

  .cta-text h2 {
    font-size: 20px;
  }
}
/* ===== SECTION 4: PROCESS STEPS ===== */
/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.process-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px;
}

.process-intro {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ===== PROCESS CARD ===== */
.process-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 25px;
  background-color: #f8f9fa;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Number Box */
.number-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  border-radius: 8px;
  flex-shrink: 0;
  line-height: 1;
}

.number-box.blue {
  background-color: #09436a;
  color: #ffffff;
}

.number-box.yellow {
  background-color: #facd14;
  color: #1a1a1a;
}

/* Card Content */
.card-content {
  flex: 1;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px;
}

.card-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  margin: 0;
}

/* ===== HOVER EFFECTS ===== */
/* Blue Cards - Hover */
.process-card.card-blue:hover {
  border-color: #09436a;
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.15);
  transform: translateY(-3px);
}

/* Yellow Cards - Hover */
.process-card.card-yellow:hover {
  border-color: #facd14;
  box-shadow: 0 8px 25px rgba(240, 180, 41, 0.2);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-section h2 {
    font-size: 28px;
  }

  .number-box {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .card-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .process-card {
    padding: 20px;
    gap: 15px;
  }

  .number-box {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}
/* ===== SECTION 5: WHY CHOOSE ===== */
.why-choose-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.why-choose-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 30px;
}

.why-choose-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  margin: 0 0 20px;
}

.why-choose-section a {
  color: #facd14;
  font-weight: 600;
  text-decoration: none;
}

.why-choose-section a:hover {
  text-decoration: underline;
}

/* ===== SECTION 6: RECENT PROJECTS ===== */
.recent-projects-section {
  padding: 80px 0;
  background-color: #e8f6ff;
}

.recent-projects-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px;
}

.recent-projects-section > .container > p {
  font-size: 16px;
  color: #000;
  margin: 0 0 40px;
  line-height: 1.6;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.project-image {
  position: relative;
  border: 4px solid #facd14;
  border-radius: 8px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.project-image:hover img {
  transform: scale(1.05);
}

/* Before/After Badges */
.project-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #facd14;
  color: #000;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .recent-projects-section {
    padding: 100px 0;
  }

  .recent-projects-section h2 {
    font-size: 40px;
  }

  .projects-grid {
    gap: 40px;
  }
}

/* Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  .recent-projects-section {
    padding: 70px 0;
  }

  .recent-projects-section h2 {
    font-size: 34px;
  }

  .recent-projects-section > .container > p {
    font-size: 15px;
    margin: 0 0 35px;
  }

  .projects-grid {
    gap: 25px;
  }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) {
  .recent-projects-section {
    padding: 60px 0;
  }

  .recent-projects-section h2 {
    font-size: 30px;
  }

  .recent-projects-section > .container > p {
    font-size: 15px;
    margin: 0 0 30px;
  }

  .projects-grid {
    gap: 20px;
  }

  .project-image {
    border-width: 3px;
  }

  .project-badge {
    bottom: 12px;
    left: 12px;
    padding: 7px 18px;
    font-size: 13px;
  }
}

/* Tablet Portrait (576px - 767px) */
@media (max-width: 767px) {
  .recent-projects-section {
    padding: 50px 0;
  }

  .recent-projects-section h2 {
    font-size: 28px;
    margin: 0 0 12px;
  }

  .recent-projects-section > .container > p {
    font-size: 14px;
    margin: 0 0 25px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-image {
    border-width: 3px;
  }

  .project-badge {
    bottom: 12px;
    left: 12px;
    padding: 7px 18px;
    font-size: 13px;
  }
}

/* Mobile (480px - 575px) */
@media (max-width: 575px) {
  .recent-projects-section {
    padding: 40px 0;
  }

  .recent-projects-section h2 {
    font-size: 24px;
    margin: 0 0 10px;
  }

  .recent-projects-section > .container > p {
    font-size: 14px;
    margin: 0 0 20px;
    line-height: 1.5;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .project-image {
    border-width: 3px;
    border-radius: 6px;
  }

  .project-badge {
    bottom: 10px;
    left: 10px;
    padding: 6px 15px;
    font-size: 12px;
    border-radius: 4px;
  }
}

/* Small Mobile (up to 479px) */
@media (max-width: 479px) {
  .recent-projects-section {
    padding: 30px 0;
  }

  .recent-projects-section h2 {
    font-size: 22px;
  }

  .recent-projects-section > .container > p {
    font-size: 13px;
    margin: 0 0 18px;
  }

  .projects-grid {
    gap: 12px;
  }

  .project-image {
    border-width: 2px;
  }

  .project-badge {
    bottom: 8px;
    left: 8px;
    padding: 5px 12px;
    font-size: 11px;
  }
}

/* Disable hover effect on touch devices */
@media (hover: none) {
  .project-image:hover img {
    transform: none;
  }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .project-image img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ===== SECTION 7: FAQ SECTION ===== */
.faq-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.faq-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 40px;
  margin-bottom: 20px;
}

.faq-list {
  max-width: 900px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-question {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #09436a;
}

.faq-icon {
  flex-shrink: 0;
  stroke: #09436a;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #000;
  margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .hero-circles {
    flex-direction: column;
    align-items: center;
  }

  .circle {
    width: 300px;
    height: 300px;
    margin: 10px 0;
  }

  .hero-content h1 {
    font-size: 60px;
  }

  .process-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .services-title {
    font-size: 26px;
  }

  .services-content h2 {
    font-size: 24px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .process-steps-section h2,
  .why-choose-section h2,
  .recent-projects-section h2,
  .faq-section h2 {
    font-size: 28px;
  }

  .card-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .circle {
    width: 250px;
    height: 250px;
  }

  .services-title {
    font-size: 22px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}
