/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.main-header {
  background-color: #fff;
  padding: 0 30px;
    position: sticky;
  top: 0; /* <-- Add this */
  z-index: 11;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

/* Logo */
.logo img {
  height: 70px;
  width: auto;
}

/* Navigation (same as before) */
.nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav {
  background: #fff;
  padding: 0 1px;
  height: 70px;
  color: #000;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

.nav ul li {
  position: relative;
}
.nav ul li a {
  color: #000;
  padding: 20px 15px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav ul li a:hover,
.nav ul li a.active {
  color: #ffc326;
}

/* Dropdown */
.nav .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  color: #000;
  background-color: white;
  min-width: 220px;
  border-radius: 5px;
  z-index: 1000;
  pointer-events: none;
  display: block;
}
.nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  padding-top: 2.2rem;
  transform: translateY(0);
  pointer-events: auto;
}
.nav .dropdown-menu li {
  display: block;
}
.nav .dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 16px 18px;
  color: #000;
  font-size: 17px;
  white-space: nowrap;
  transition: background-color 0.25s;
}

main{
  background-color: #000;
}
.hero-section {
  background-color: #111;
  padding: 190px 30px;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-text .highlight {
  color: #ffc326;
}

.hero-text p {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ddd;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffc326;
  color: #000;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #e6ae00;
}

.hero-image {
  flex: 1;
  text-align: center;
  
}

.hero-image img {
  max-width: 105%;
      object-fit: contain;
    vertical-align: top;
    height: inherit;
    max-height: inherit;
    border-radius: inherit;
    background-color: #000;
}
.contact-wrapper {
  background: #f9f9f9;
  padding-top: 100px;
}

.contact-card {
  max-width: 1200px;
  margin: -260px auto 0 auto; /* pull up into hero */
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 40px;
  gap: 30px;
}

.contact-form,
.contact-info {
  min-width: 300px;
}

.contact-form h3,
.contact-info h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 22px 22px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f8f8f8;
}
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}
.contact-form textarea {
  resize: none;
  width: 100%;
}

.contact-form button {
  padding: 12px 60px;
  background: #ffc326;
  color: #000;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.contact-info .info-box {
  display: flex;
  align-items: center;
  background: #fffbe6;
  border-radius: 10px;
  padding: 60px;
  gap: 15px;
}

.contact-info .icon {
  font-size: 28px;
  color: #ffc326;
  background: #fff3cd;
  padding: 15px;
  border-radius: 50%;
}

.contact-info .info-title {
  font-weight: 700;
  color: #ffc326;
  font-size: 16px;
}

.contact-info .info-number {
  color: #333;
  font-size: 16px;
}
.about-recovery-section {
  padding: 60px 30px;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.about-recovery-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.about-recovery-image {
  flex: 1 1 500px;
  margin-top: 3.5rem;
}

.about-recovery-image img {
  width: 100%;
  height: 80vh;
  display: block;
  border-radius: 10px;
}

.about-recovery-text {
  flex: 1 1 500px;
  color: #333;
}

.about-label {
  color: #ffc326;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-recovery-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
}

.about-recovery-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.highlight {
  color: #ffc326;
  font-weight: 600;
}

.about-feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.about-feature-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .about-recovery-container {
    flex-direction: column;
    text-align: center;
  }

  .about-recovery-text {
    margin-top: 30px;
  }
}
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;
  margin-top: 25px;
  margin-bottom: 30px;
}

.feature-item {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item .tick {
  color: #ffc326;
  font-size: 25px;
  line-height: 1;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .about-feature-grid {
    grid-template-columns: 1fr;
  }
}

.btn-yellow {
  display: inline-block;
  background-color: #ffc326;
  color: #000;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-yellow:hover {
  background-color: #e6af00;
}
.stats-section {
  padding: 60px 30px;
  display: flex;
  /* justify-content: center; */
  background: #fff;
  font-family: 'Poppins', sans-serif;
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
  gap: 30px;
  /* max-width: 1100px; */
  /* width: 100%; */
}

.stats-section {
  padding: 60px 30px;
  display: grid;
  gap: 30px;
  background: url('tow-truck-service.jpg') center center / cover no-repeat;
  position: relative;
  font-family: 'Poppins', sans-serif;
}
/* Optional: dark overlay for better readability */
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Ensure stats content is above the overlay */
.stats-section > div {
  position: relative;
  z-index: 1;
}


.stat-card1 {
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  width: 20rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.stat-card2 {
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 10px;
    width: 20rem;
    margin-left: 18rem;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.stat-card3 {
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 10px;
    width: 20rem;
        margin-left: 36rem;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.stat-card4 {
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
    width: 20rem;
        margin-left: 54rem;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.stat-number {
  font-size: 36px;
  color: #ffc326;
  margin-right: 15px;
  flex-shrink: 0;
}

.stat-label {
  line-height: 1.2;
}.g-section {
  background: linear-gradient(180deg, #232323 50%, #f5f5f5 0%);
  padding: 60px 30px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.g-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  /* max-width: 1200px; */
  margin: auto;
}

.logo-column {
  flex: 1 1 350px;
  text-align: center;
}

.logo-column img {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
}

.content-column {
  flex: 1 1 500px;
  color: #000;
}

.content-column p {
  font-size: 18px;
  margin-bottom: 20px;
}

.content-column strong {
  font-size: 20px;
  color: #ffc326;
}

/* Button */
.w-btn {
  display: inline-block;
  background-color: #ffc326;
  color: #000;
  padding: 12px 30px;
  margin-top: 2.2rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.w-btn:hover {
  background-color: #e6af00;
}

/* Phone Contact Box */
.w-iconbox {
  display: flex;
  align-items: center;
  gap: 15px;
}

.w-iconbox-icon img {
  width: 58px;
  height: 58px;
  background: #232323;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(255, 195, 38, 0.3);
}

.w-iconbox-text p {
  font-size: 18px;
  color: #000;
  margin: 2px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
  .g-cols {
    flex-direction: column;
    text-align: center;
  }

  .w-iconbox {
    justify-content: center;
  }

  .logo-column img {
    max-width: 250px;
  }
}

.services-flip-section {
  padding: 60px 20px;
}

.flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.flip-card {
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 360px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  backface-visibility: hidden;
  padding: 30px 20px;
  text-align: center;
  background: #fff;
}

.flip-front {
  z-index: 2;
}

.flip-back {
  transform: rotateY(180deg);
}

.icon-wrap {
  margin-bottom: 20px;
}

.icon-wrap svg, .icon-wrap i {
  font-size: 40px;
  color: #ffc326;
}

.flip-card h3 {
  font-size: 26px;
  /* font-weight: 600; */
  color: #003b8f;
  margin-bottom: 10px;
}

.flip-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.flip-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: #ffc326;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.flip-btn:hover {
  background: #e6b800;
}
.service-pitch-section {
  padding: 60px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.text-column {
  flex: 1 1 500px;
}

.text-column .highlight-label {
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 10px;
}

.text-column h2 {
  font-size: 28px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.text-column p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.service-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #333;
  font-size: 15px;
}

.service-list i {
  color: #ffc107;
  margin-right: 10px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ffc107;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #e0aa06;
}

.image-column {
  flex: 1 1 400px;
  text-align: center;
}

.image-column img {
  max-width: 100%;
  height: auto;
}
.recovery-section {
  padding: 60px 20px;
  background-color: #fff;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.recovery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

/* Image stack area */
.image-stack {
  position: relative;
  flex: 1 1 500px;
  max-width: 500px;
}

.pattern-bg {
  position: absolute;
  top: -130px;
  /* left: 10; */
  width: 100%;
  max-width: 300px;
  /* opacity: 0.2; */
  z-index: 0;
}

.image-top {
  width: 70%;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.image-bottom {
  width: 80%;
  position: absolute;
  bottom: -40px;
  left: 70px;
  border-radius: 8px;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.image-floating {
  position: absolute;
  top: 40%;
  left: -20px;
  width: 150px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  transform: rotate(-5deg);
  z-index: 3;
}

.text-content {
  flex: 1 1 500px;
}

.text-content .label {
  color: #ffb703;
  font-weight: 600;
  margin-bottom: 10px;
}

.text-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.text-content p {
  color: #444;
  margin-bottom: 25px;
  font-size: 15.5px;
  line-height: 1.6;
}

/* Feature box styling */
.feature-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.icon-circle img{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #ffb703;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.feature-text h4 {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 600;
}

.feature-text p {
  margin: 0;
  font-size: 14.5px;
  color: #555;
}

.reviews-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 10px;
}

.reviews-section p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 40px;
}

.swiper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.swiper-slide {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.stars {
  color: #f9b017;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.reviewer {
  display: flex;
  align-items: center;
}

.reviewer img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
}

.reviewer-name {
  font-weight: bold;
  color: #222;
}

.review-meta {
  font-size: 0.85rem;
  color: #777;
}

.g-logo img {
  width: 24px;
  height: 24px;
}
.icon-google-review::before {
  content: "G"; /* Placeholder until real icon loads */
  font-weight: bold;
  color: orange;
  font-size: 24px;
  font-family: Arial, sans-serif;
}
.g-logo {
  font-size: 24px;
  color: orange;
}



    section {
      padding: 60px 30px;
      /* max-width: 1200px; */
      /* margin: 0 auto; */
    }

    .section-title {
      text-align: center;
      font-size: 28px;
      margin-bottom: 50px;
    }

    .how-it-works {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      text-align: center;
      gap: 20px;
    }

    .step {
      flex: 1 1 30%;
      max-width: 30%;
    }

    .step img {
      width: 100px;
      margin-bottom: 20px;
    }

    .step h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .step p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
    }

    

    .faq-item {
      border-bottom: 1px solid #ddd;
    }

    .faq-question {
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      padding: 15px 10px;
      font-size: 17px;
      font-weight: bold;
      cursor: pointer;
      position: relative;
    }

    .faq-question::after {
      content: "+";
      position: absolute;
      right: 10px;
      font-size: 20px;
    }

    .faq-question.active::after {
      content: "-";
    }

    .faq-answer {
      display: none;
      padding: 0 10px 15px;
      font-size: 15px;
      color: #444;
      line-height: 1.6;
    }

    .faq-question.active + .faq-answer {
      display: block;
    }

    @media (max-width: 768px) {
      .step {
        max-width: 100%;
      }
    }
.site-footer {
  background: #1e1e1e;
  color: #fff;
  padding: 60px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-left,
.footer-right {
  flex: 1 1 45%;
}

/* Left Side */
.footer-logo {
  height: 55px;
  margin-bottom: 20px;
}

.footer-description {
  line-height: 1.6;
  font-size: 15px;
  color: #ddd;
}

.footer-contacts {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.footer-contact-box {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
}

.footer-contact-box a {
  color: #ffc107;
  font-weight: bold;
  text-decoration: none;
}

.footer-icon {
  font-size: 25px;
}

/* Right Side: Inquire Us */
.footer-right h3 {
  color: #ffc107;
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-right p {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 20px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-form input {
  padding: 14px;
  margin-top: 12px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  flex: 1;
}

.footer-form button {
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  margin-top: 12px;
  padding: 12px;
  font-size: 14px;
  border: none;
  border-radius: 25px;
  width: 110px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-form button:hover {
  background-color: #e5b100;
}

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.footer-nav li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav li a:hover {
  color: #ffc107;
}

.footer-copy {
  font-size: 14px;
  color: #777;
}

.footer-copy a {
  color: #ffc107;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .form-row {
    flex-direction: column;
  }
}
.about-banner {
  background-image: url('https://web.archive.org/web/20250328121735im_/https://towtruck.ae/wp-content/uploads/2023/01/Car-Towing-1.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.about-text-box {
  position: relative;
  background-color: white;
  padding: 20px 40px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text-box h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: 700;
  color: #222;
}

.yellow-bar {
  height: 8px;
  width: 100%;
  background-color: #ffc107;
  margin-top: 10px;
}
.intro-section {
  background-color: #1e1e1e;
  color: #fff;
  padding: 60px 20px;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.content-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.content-left {
  flex: 1 1 60%;
}

.content-left h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.content-left p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.content-left a {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  margin-top: 10px;
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
}

.content-right {
  flex: 1 1 35%;
}

.content-right img {
  width: 100%;
  height: auto;
  border: 4px solid #fff;
}
.btn-about a{
  color: #000;

}
.treatment-section {
  background-color: #fff;
  padding: 60px 20px;
  color: #000;
}

.wrapper1 {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 20px; ✅ Adds breathing room from browser edge */
}

.treatment-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.image-area {
  flex: 1 1 48%;
  border: 6px solid #ffc107;
  padding: 4px;
  box-sizing: border-box;
}

.image-area img {
  width: 100%;
  height: 70vh;
  display: block;
}

.text-area {
  flex: 1 1 48%;
}

.text-area h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.text-area p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.contact-btn:hover {
  background-color: #ddd;
}
.contact-section {
  background-color: #fff;
  padding: 60px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

.contact-text {
  flex: 1 1 50%;
}

.contact-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #000;
}

.contact-text p {
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
}

.contact-form {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.two-cols {
  flex-direction: row;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ffc107;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #fafafa;
  color: #000;
  box-sizing: border-box;
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: #ffc107;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  color: #000;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #e6ac00;
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-row {
  display: flex;
  gap: 10px;
}

.footer-input {
  flex: 1;
  padding: 10px 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

.footer-button {
  padding: 12px 20px;
  background-color: #ffc107;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-button:hover {
  background-color: #e6ac00;
}
