/* Import Montserrat from Google Fonts as fallback */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Local Montserrat Font Faces */
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("fonts/Montserrat/static/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("fonts/Montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("fonts/Montserrat/static/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("fonts/Montserrat/static/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("fonts/Montserrat/static/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
}

/* General Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Body Styling */
body {
  background: #fff;
  color: #333;
}

.main-box-container {
  /* max-width: 1440px; */
  margin: 0 auto;
  background: #fff;
}

/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 300px;
  line-height: 23px;
  font-weight: 500;
  top: 0;
  background-color: #fff;
  width: 100%;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
  position: relative;
  z-index: 99999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}


#services img {
  max-width: 100%;
  height: auto;
  margin-bottom: 100px;
}

#steps img {
  max-width: 100%;
  height: auto;
  margin-bottom: 100px;
}

.hero h2 {
  margin: 10px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #6D597A;
  color: white;
  text-decoration: none;
  border-radius: 25px;
}

.btn:hover {
  background: #B56576;
}

.btn.call-now {
  padding: 10px 20px;
  background-color: #008e8e;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}

.btn.call-now:hover {
  background-color: #008e8e;
}

/* Footer */
footer {
  text-align: center;
  padding: 16px 0px;
  background: #333;
  color: #fff;
  margin-top: 50px;
}

footer .disclaimer {
  font-size: 0.8rem;
  /* ~13px */
  font-style: italic;
  color: gray;
}

/* Section Styling */

p {
  font-size: 1rem;
  /* ~16px */
  margin: 16px 0;
  line-height: 1.6;
}

h3 {
  font-size: 20px;
  padding: 32px 10px;
  text-align: center;
}

/* Contact Page Layout */
.contact-page {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding: 64px 200px;
  background-color: #e1cabe;
}

.contact-left {
  flex: 1;
  padding: 20px;
  max-width: 60%;
}

.contact-right {
  flex: 1;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 40%;
}

.contact-left h2,
.contact-left h3,
.contact-right h1 {
  color: #333;
  margin-bottom: 15px;
}

.contact-left ul {
  list-style-type: none;
  padding: 0;
}

.contact-left ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-left ul li::before {
  content: "✔";
  color: #6D597A;
  margin-right: 8px;
}

/* Form Styling */
form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 5px;
  border: 2px solid #B56576;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form input[type="text"]:hover,
form input[type="email"]:hover,
form input[type="tel"]:hover,
form textarea:hover {
  border-color: #6D597A;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="tel"]:focus,
form textarea:focus {
  border-color: #E56B6F;
  outline: none;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(229, 107, 111, 0.4);
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form button[type="submit"] {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #008e8e;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
}

form button[type="submit"]:hover {
  background-color: #B56576;
}

.areas-list {
  columns: 6;
  column-gap: 40px;
  margin: 0 auto;
}

.areas-list li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 16px;
}

/* Brands Repair Section */
.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  list-style: none;
  justify-content: center;
  padding: 0;
}

.brands-list li {
  padding: 0;
  font-size: 14px;
}

/* Responsive Layout */
@media (max-width: 1200px) {
  header {
    padding: 10px 100px;
  }

  nav {
    margin: 16px 100px;
  }

  .contact-page {
    padding: 50px 100px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 10px 50px;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    margin: 16px 50px;
    text-align: center;
  }

  .contact-page {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }

  .contact-left,
  .contact-right {
    max-width: 100%;
  }
}

@media (max-width: 480px) {

  p {
    font-size: 0.875rem;
    /* ~14px for mobile */
  }

  footer {
    padding: 10px 20px;
  }

  footer p {
    font-size: 0.75rem;
    /* ~12px */
  }

  footer .disclaimer {
    font-size: 0.5rem;
    /* ~8px */
  }

  header {
    padding: 5px 10px;
  }

  .logo {
    max-width: 80px;
  }

  nav {
    margin: 16px 20px;
    text-align: left;
  }

  .btn.call-now {
    font-size: 14px;
    padding: 8px 16px;
  }

  .contact-page {
    padding: 20px 10px;
  }

  form input,
  form textarea {
    font-size: 14px;
    padding: 10px;
  }

  form button {
    font-size: 14px;
    padding: 8px 16px;
  }
}