/* General Styles */
body {
    font-family: 'Cairo', sans-serif;
}

 
  h1, h2, h3 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700; 
  }

  p, span, li {
    font-family: 'Cairo', sans-serif;
    font-weight: 400; /* عادي */
  }

a {
    text-decoration: none;
}


.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.5);
}

.hero p {
    width: 70%;
    margin: auto;
    padding-bottom: 30px;
}

.hero-home {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url(../img/hero-img.png);
}

.hero-unclog {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url(../img/hero-unclog.webp);
}



.hero-cleaners {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url(../img/hero-cleaners.webp);
}



.hero-ac {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url(../img/ac-repair.webp);
}



.hero-lint {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url(../img/hero-lint.webp);
}

.hero-duct {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url(../img/hero-duct.webp);
}

.hero-contact {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url(../img/hero-contact.webp);
}

.hero-locations {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: url(../img/hero-locations.webp);
}


#info-bg{
  text-align: center;
  margin: auto;
  width: 70%;
}

#start p{
  margin: 0;
  text-align: center;
}


#services span{
  color: #050505;
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 0;
}

#before-after span{
  color: #050505;
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 0;
  margin: auto;
   text-align: center;
}


h2{
  color: #0056b3;
}


.hero .container {
    position: relative;
    z-index: 2;
}



section h2 {
    font-weight: 700;
}

section p {
    font-size: 1.1rem;
}


/* Footer */
footer p {
    margin: 0.2rem 0;
    text-align: left;
}

footer h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
}

footer a {
    color: #ffffff;
    
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Button-like style */
.call-btn {
    display: inline-block;
    font-size: 30px;
    padding: 0.7rem 1rem;
    background-color: #f9772a; 
    border-radius: 1.4rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover animation */
.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #f7823e; 
}

/* Pulse animation on load */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.call-btn {
    animation: pulse 2s infinite;
}


.process-section {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.671), rgba(0,0,0,0.5)),
    url(../img/process-back.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.process-section h2 {
  color: #fff;
}


.process-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  transition: 0.3s;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.process-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #0d6efd, #20c997);
  color: #fff;
  border-radius: 50%;
  line-height: 45px;
  font-weight: bold;
  margin: 0 auto 15px;
}

.icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.process-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.process-box p {
  font-size: 14px;
  color: #666;
}


.process-section .row::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #ddd;
  z-index: 0;
}

.process-box {
  position: relative;
  z-index: 1;
}

.map {
  width: 100%;
  height: 67vh;
  border: 0;
  border-radius: 15px;
 
}

/* form */
.CUS {
 background-color: #0056b3;
  padding: 30px;
  border-radius: 30px;
  
}

.half {
  width:48%;
  display:inline-block;
  margin:1%;
}

.CUS p {
  padding: 0;
}

form.CUS input.subject {
  display: none;
}

.CUS .form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.CUS .form-row p {
  flex: 1;
  margin: 0;
}

.CUS textarea {
  width: 100%;
  height: 120px;
  font-size: 15px;
  padding-left: 10px;
  padding-top: 10px;
  border: 1px solid #020202;
  border-radius: 10px;
  box-sizing: border-box;
  border: 1px solid #9e9d9d;
  background-color: #ffffff;
}

.CUS .submit {
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  border: 1px solid #d4d4d4;
  
  color: #161515;
}

.CUS input,
.CUS select {
  width: 50%;
  font-size: 15px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 10px;
  box-sizing: border-box;
  font-weight: normal;
  padding: 10px;
  margin: 5px 0;
  background-color: #ffffff;

}

.CUS label {
  font-size: 15px;
  display: block;
  margin-top: 10px;
  font-weight: bold;
  text-align: left;
  color: #3b3b3b;
}

.CUS legend {
  font-size: 20px;
  text-align: left;
  color: #3b3b3b;
}

form.CUS,
.CUS fieldset {
  border: none;
}

.CUS input.half,
.CUS select.half {
  width: 48% !important;
  display: inline-block;
  vertical-align: top;
  margin: 5px 1%;
  box-sizing: border-box;
}

.CUS input.half,
.CUS select.half {
  float: left;
  width: 48% !important;
}

.CUS p::after {
  content: "";
  display: block;
  clear: both;
}

#additional-info{
  background-image: url(../img/back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

#offers{
  background-color: #0056b3;
  width: 70%;
  color: #ffffff;
  margin: auto;
}

#offers h2{
  font-size: 50px;
  color: #ffffff;
  padding-top: 50px; 
  
}

#offers p{
  padding: 20px; 
}

#offers img{
  width: 80%;
}

#offers span{
  text-align: left;
  font-size: 35px;
}

@media (max-width: 768px) {
  #offers{
  background-color: #0056b3;
  width: 100%;
  color: #ffffff;
  margin: auto;
}

.hero p {
    width: 100%;
    margin: auto;
    padding-bottom: 30px;
}
}

/* llocations */

.locations-wrapper {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.location-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  padding: 12px 15px;
  text-align: center;
  text-decoration: none;
  color: #222;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.location-item:hover {
  background: rgb(0, 86, 179);
  color: #ffffff;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.location-item:active {
  transform: scale(0.98);
}


.icon {
  font-size: 18px;
  color: white;
}