/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
}

.top {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: white;
}

.logo {
  width: 100px;
}

.phone {
  position: absolute;
  right: 15%;
  top: 18px;
  color: #0066b3;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.phone:hover {
  color: #df1f2d;
}

.phone span {
  color: #333;
  font-size: 12px;
}

.nav {
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.nav .active {
  color: #d71920;
}

.menu-btn {
  display: none;
  background: #0055a5;
  color: white;
  border: none;
  padding: 9px 14px;
  font-size: 22px;
  cursor: pointer;
}

.hero {
  height: 430px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.25)),
    url("images/cleaning-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 14%;
  color: white;
}

.hero-text {
  max-width: 620px;
}

.hero h1 {
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 900;
}

.hero h1::after {
  content: "";
  display: block;
  width: 130px;
  height: 5px;
  background: #d71920;
  margin: 22px 0;
}

.hero p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero a {
  background: #0055a5;
  color: white;
  text-decoration: none;
  padding: 18px 28px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
}

.red-services{
    background:#df1f2d;
    display:flex;
    justify-content:center;
    gap:50px;
    padding:55px 8%;
}

.info-card{
    width:250px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    color:white;
}

.info-card p{
    font-size:14px;
    line-height:1.8;
    text-transform:uppercase;
    margin-bottom:18px;
    max-width:210px;
}

.circle{
    width:110px;
    height:110px;
    margin:22px 0;

    border-radius:50%;
    background:#0068b7;
    border:5px solid white;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:52px;
}
.info-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 8px;
  font-size: 10px;
  border: 1px solid #fff;
  background: white;
  color: #0068b7;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.info-btn:hover {
  background: #0068b7;
  color: white;
  border-color: #0068b7;
}

.intro {
  padding: 30px 18%;
  text-align: center;
  font-size: 25px;
  line-height: 1.6;
}

.testimonial {
  background: #dff2ff;
  text-align: center;
  padding: 45px 20%;
  font-size: 20px;
  font-style: italic;
  color: #0b2545;
}



.bottom {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  padding: 45px 24%;
  align-items: start;
}

.small-logo {
  width: 160px;
}

.contact-info {
  border-right: 2px solid #aaa;
  padding-right: 35px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 14px;
}

.quote-form {
  background: #dff2ff;
  padding: 25px;
}

.quote-form h2 {
  color: #003b78;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
}

.quote-form textarea {
  height: 110px;
  resize: none;
  margin-bottom: 15px;
}

.quote-form button {
  background: #d71920;
  color: white;
  border: none;
  padding: 12px 32px;
  display: block;
  margin: auto;
  text-transform: uppercase;
  font-weight: bold;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 18px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .top {
    height: auto;
    padding: 18px;
    flex-direction: column;
  }

  .phone {
    position: static;
    margin-top: 8px;
  }

  .menu-btn {
    display: block;
    margin: 8px auto;
  }

  .nav {
    flex-direction: column;
    padding: 8px 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 0;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-top: 1px solid #eee;
  }

  .red-services {
    display: none;
  }


  .hero {
    height: auto;
    min-height: 430px;
    padding: 60px 7%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .red-services {
    grid-template-columns: 1fr;
    padding: 35px 7%;
  }

  .info-card {
    border-right: none;
    grid-template-columns: 70px 1fr;
  }

  .bottom {
    grid-template-columns: 1fr;
    padding: 35px 7%;
  }

  .contact-info {
    border-right: none;
    border-bottom: 2px solid #aaa;
    padding-bottom: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  background: linear-gradient(135deg, #006bad, #008bd6);
  color: white;
  padding: 35px 14%;
  text-align: left;
}

.page-hero h1 {
  max-width: 900px;
  margin: auto;
  font-size: 34px;
  font-weight: 900;
}

.page-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 55px 20px;
}

.page-content h2 {
  color: #003b78;
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-content > p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.split-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.split-boxes div {
  background: #dff3ff;
  padding: 28px;
  border-top: 6px solid #df1f2d;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.split-boxes h3 {
  color: #003b78;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.split-boxes p {
  line-height: 1.7;
}

@media (max-width: 900px) {
  .page-hero {
    text-align: center;
    padding: 28px 7%;
  }

  .split-boxes {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  background: linear-gradient(135deg, #dff3ff, #eef9ff);
  padding: 55px 20%;
  text-align: center;
  color: #06233f;
  font-size: 22px;
  font-style: italic;
  position: relative;
}

.testimonial::before,
.testimonial::after {
  position: absolute;
  font-size: 150px;
  color: rgba(0, 132, 200, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial::before {
  content: "“";
  left: 33%;
  top: 15px;
}

.testimonial::after {
  content: "”";
  right: 33%;
  bottom: 0;
}

.testimonial strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-style: normal;
}

.testimonial button {
  margin-top: 20px;
  background: #df1f2d;
  color: white;
  border: none;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.bottom {
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 20px 70px;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  border-right: 2px solid #b8c3cc;
  padding-right: 40px;
}

.small-logo {
  width: 190px;
  margin-bottom: 15px;
}

.contact-info h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 14px;
  line-height: 1.6;
  margin: 8px 0;
}

.quote-form {
  background: linear-gradient(135deg, #dff3ff, #cdeafb);
  padding: 32px;
  box-shadow: 0 15px 35px rgba(0, 65, 120, 0.12);
}

.quote-form h2 {
  color: #003b78;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 13px;
  border: none;
  background: white;
  font-size: 14px;
}

.quote-form textarea {
  height: 130px;
  resize: none;
  margin-bottom: 18px;
}

.quote-form button {
  display: block;
  margin: auto;
  background: #df1f2d;
  color: white;
  border: none;
  padding: 11px 34px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 900px) {
  .page-hero {
    padding: 28px 7%;
    text-align: center;
  }

  .about-layout,
  .bottom {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 45px 7%;
    font-size: 18px;
  }

  .testimonial::before,
  .testimonial::after {
    display: none;
  }

  .contact-info {
    border-right: none;
    border-bottom: 2px solid #b8c3cc;
    padding-right: 0;
    padding-bottom: 25px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form h2 {
    font-size: 24px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-box {
  background: #dff3ff;
  padding: 28px;
  border-top: 6px solid #df1f2d;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.service-box h3 {
  color: #003b78;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-box p {
  line-height: 1.7;
}

.service-box a {
  display: inline-block;
  margin-top: 18px;
  background: #df1f2d;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.section-label {
  color: #df1f2d;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.owner-preview,
.owner-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 55px 20px;
}

.owner-preview,
.owner-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 35px;
  align-items: center;
}

.owner-preview img,
.owner-card img {
  width: 100%;
  max-width: 330px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.owner-preview h2,
.owner-card h2 {
  color: #003b78;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.owner-card h4 {
  color: #df1f2d;
  margin-bottom: 15px;
}

.owner-preview p,
.owner-card p {
  line-height: 1.7;
  margin-bottom: 18px;
}

.owner-btn {
  display: inline-block;
  background: #df1f2d;
  color: white;
  text-decoration: none;
  padding: 11px 22px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

.owner-card {
  background: #dff3ff;
  padding: 35px;
  border-top: 6px solid #df1f2d;
}

@media (max-width: 900px) {
  .owner-preview,
  .owner-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .owner-preview img,
  .owner-card img {
    margin: 0 auto;
  }
}
