
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

.container{
max-width:1300px;
margin:auto;
width:100%;
padding:0 20px;
}

/* TOP BAR */
.topbar{
background:black;
color:white;
font-size:14px;
}

.topbar .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:8px 20px;
}

.topbar i{
color:red;
margin-right:6px;
}

.social i{
margin-left:12px;
cursor:pointer;
}

/* HEADER */
header {
  background: #000;
  padding: 15px 0;
  width: 100%;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* LOGO */
.logo img {
  width: 120px;
  transition: 0.3s;
}

.logo img:hover {
  opacity: 0.8;
}

/* NAVIGATION */
nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  transition: 0.3s;
  border-radius: 6px;
}

nav ul li a i {
  color: red;
}

nav ul li a:hover {
  background: red;
  color: white;
}

/* DROPDOWN */
.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  z-index: 10;
}

.dropdown li {
  width: 100%;
}

.dropdown li a {
display:flex;
align-items:center;
gap:8px;
padding:12px 15px;
color:black;
font-weight:600;
}

.dropdown li a:hover {
  background: #f3f3f3;
  color: red;
}

/* TOGGLE BUTTON */
.menu-toggle {
  display: none;
  font-size: 22px;
  color: white;
  cursor: pointer;
}

/* SLIDER TOPBAR (mobile only) */
.topbar-slider {
  display: flex;
  gap: 20px;
}

.slide {
  display: none;
  white-space: nowrap;
}

.slide.active {
  display: block;
}
.topbar-slider .slide {
  display: block;
}


/* body */

.depot-section{
padding:70px 20px;
background:#f5f5f5;
}

.depot-header{
text-align:center;
margin-bottom:40px;
}

.depot-logo {
width:80px;
margin-bottom:10px;
}

.depot-header h1{
font-size:36px;
color:#222;
margin-bottom:10px;
}

.depot-header p{
color:#666;
}


.depot-intro{
background:white;
padding:30px;
border-radius:10px;
margin-bottom:30px;
line-height:1.8;
box-shadow:0 6px 20px rgba(0,0,0,0.05);
}


.advantages{
background:white;
padding:30px;
border-radius:10px;
margin-bottom:30px;
box-shadow:0 6px 20px rgba(0,0,0,0.05);
}

.advantages h2{
margin-bottom:15px;
}

.advantages ul{
list-style:none;
padding:0;
}

.advantages li{
margin-bottom:10px;
font-size:16px;
}


.process{
margin-bottom:40px;
}

.process h2{
text-align:center;
margin-bottom:30px;
}

.steps{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.step{
background:white;
padding:25px;
border-radius:10px;
text-align:center;
box-shadow:0 6px 15px rgba(0,0,0,0.05);
}

.step span{
display:inline-block;
width:40px;
height:40px;
line-height:40px;
border-radius:50%;
background:rgb(255, 0, 0);
color:white;
font-weight:bold;
margin-bottom:10px;
}


.call-box{
background:#000;
color:white;
padding:40px;
border-radius:12px;
text-align:center;
}

.call-box h2{
margin-bottom:15px;
color: #f40014;
}

.location{
margin-top:10px;
margin-bottom:20px;
font-size:16px;
}
.location i{
color: red;
}

.btn-contact{
display:inline-block;
background:#f40014;
color: white;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.btn-contact:hover{
background:#f40014;
}


/* FOOTER */

.footer{
background:#0d0d0d;
color:white;
padding:70px 20px 30px;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

/* TITLES */

.footer h3{
margin-bottom:15px;
color:white;
}

/* CONTACT FORM */

.footer-contact input,
.footer-contact textarea{
width:100%;
padding:12px;
margin-bottom:10px;
border:none;
border-radius:6px;
background:#1a1a1a;
color:white;
}

.footer-contact textarea{
height:100px;
resize:none;
}

.footer-contact button{
width:100%;
padding:12px;
border:none;
border-radius:6px;
background:red;
color:white;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.footer-contact button:hover{
background:white;
color:black;
}

/* LINKS */

.footer-links a{
display:block;
color:#ccc;
text-decoration:none;
margin-bottom:8px;
transition:0.3s;
}

.footer-links a:hover{
color:red;
}

/* SOCIAL */

.social-icons a{
color:white;
font-size:22px;
margin-right:12px;
transition:0.3s;
}

.social-icons a:hover{
color:red;
}

/* ABOUT */

.footer-about p{
color:#ccc;
line-height:1.6;
}

/* ADDRESS */

.footer-address{
margin-top:15px;
color:#ccc;
font-size:14px;
}

/* BOTTOM */

.footer-bottom{
text-align:center;
margin-top:50px;
border-top:1px solid #222;
padding-top:20px;
color:#777;
font-size:14px;
}
.mobile-only {
  display: none;
}
.whatsapp-float{

position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
box-shadow:0 8px 20px rgba(0,0,0,0.3);
z-index:999;

}

.whatsapp-float:hover{

background:#1ebe5b;

}

@media(max-width:900px){

  .menu-toggle {
    display: block;
  }

  .header-flex {
    flex-direction: row;
    justify-content: space-between;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #00000091;
    transition: 0.3s;
    padding-top: 80px;
    z-index: 999;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    width: 100%;
    padding: 12px 0;
  }

  .menu-toggle.active i::before {
    content: "\f00d";
  }

  .topbar .container {
    flex-direction: row; /* نفس desktop */
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* ما يهبطوش */
    gap: 10px;
  }

  .topbar-slider {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
  }

  .social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0; /* ما يتصغروش */
  }
    .topbar-slider .slide {
    display: none;
  }

  .topbar-slider .slide.active {
    display: block;
  }

.depot-header h1{
font-size:28px;
}

.footer-grid{
grid-template-columns:1fr 1fr;
}
    .has-dropdown {
    display: none;
  }

  .mobile-only {
    display: block;
  }
  .depot-section{
padding:30px 10px;
}


}

@media(max-width:600px){

  /* LOGO */
.logo img {
  width: 90px;
  transition: 0.3s;
}
.footer-grid{
grid-template-columns:1fr;
}

}

@media(max-width:450px){
/* LOGO */
.logo img {
  width: 80px;
  transition: 0.3s;
}
  .social {
    gap: 10px;
    margin-left: 0px;
    margin-right: -5px;

  }
}