@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&display=swap");

:root {
  --red: #0dc542;
  --red2: #0dc542;
  --dark: #07111b;
  --gold: #f5b942;
  --bg: #f6f8fb;
  --text: #111827;
  --shadow: 0 25px 70px rgba(7, 17, 27, 0.12);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Cairo, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.8;
}
header {
  height: 90px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}
.logo {
  height: 72px;
  transition: 0.4s;
}
.logo:hover {
  transform: scale(1.08);
}
nav a {
  margin: 0 14px;
  color: #18212b;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s;
  position: relative;
}
nav a:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: 0.3s;
}
nav a:hover {
  color: var(--red);
}
nav a:hover:before {
  width: 100%;
}
.phone,
button {
  border: 0;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: inherit;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red2));
  box-shadow: 0 15px 35px rgba(201, 21, 29, 0.28);
  cursor: pointer;
  transition: 0.35s;
}
.phone:hover,
button:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(201, 21, 29, 0.35);
}
.hero {
  min-height: 860px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      268deg,
      rgba(5, 12, 20, 0.88) 0%,
      rgba(5, 12, 20, 0.62) 70%,
      rgba(5, 12, 20, 0.15) 125%
    ),
    url(assets/hero-truck.png) center / cover;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgb(35 141 43 / 35%), transparent 35%);
}
.hero .content {
  position: relative;
  z-index: 2;
  /* max-width:700px; */
  color: #fff;
  /* padding:40px; */
  animation: heroFade 0.9s ease;
}
.hero .content span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 22px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  color: #fff;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.15;
  font-weight: 900;
  margin: 20px 0;
}
.hero h1 b {
  color: #2ac96b;
}
.hero p {
  font-size: 20px;
  color: #f1f5f9;
  max-width: 560px;
}
.hero button {
  border: none;
  border-radius: 14px;
  padding: 15px 34px;
  font-size: 17px;
  font-weight: 800;
  margin: 25px 8px 0 0;
  cursor: pointer;
  transition: 0.3s;
  background: #c9151d;
  color: white;
  box-shadow: 0 15px 35px rgba(201, 21, 29, 0.35);
}
.hero button:hover {
  transform: translateY(-5px);
}
.hero .outline {
  background: transparent;
  border: 2px solid #fff;
}
@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(transparent, #fff);
}
.content {
  width: 58%;
  padding-right: 8%;
  position: relative;
  z-index: 2;
}
.content span {
  display: inline-block;
  background: #fff1f2;
  color: var(--red);
  padding: 8px 22px;
  border-radius: 40px;
  font-weight: 900;
}
h1 {
  font-size: 76px;
  line-height: 1.15;
  font-weight: 900;
  margin: 22px 0;
}
h1 b {
  color: var(--red);
}
.content p {
  font-size: 23px;
  /* color: #374151; */
  max-width: 650px;
  margin-bottom: 35px;
}
.outline {
  background: #fff;
  color: var(--dark);
  border: 2px solid var(--dark);
  box-shadow: none;
  margin-right: 12px;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 40px 8% 90px;
  background: #fff;
}
.features div {
  background: #fff;
  padding: 35px 20px;
  text-align: center;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid #eef2f7;
  transition: 0.35s;
}
.features div:hover {
  transform: translateY(-12px);
  border-color: #ffd1d4;
}
.features div:first-letter {
  font-size: 45px;
}
.features h3 {
  font-size: 23px;
  margin: 15px 0 5px;
}
.about {
  padding: 100px 8%;
  display: flex;
  align-items: center;
  gap: 80px;
  background: var(--bg);
}
.about img {
  width: 48%;
  border-radius: 35px;
  box-shadow: var(--shadow);
}
.about h2,
.order h2,
.areas h2 {
  font-size: 44px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 900;
}
.about p,
.order p,
.areas p {
  font-size: 21px;
}
.order {
  padding: 100px 8%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url("assets/delivery.png") center/cover;
  color: #fff;
}
.areas {
  text-align: center;
  padding: 90px 8%;
}
footer {
  background: var(--dark);
  color: #fff;
  padding: 45px 8%;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
}
footer img {
  height: 95px;
}
@media (max-width: 900px) {
  header {
    height: auto;
    padding: 15px;
    flex-direction: column;
    gap: 15px;
  }
  nav {
    display: none;
  }
  .hero {
    min-height: 650px;
  }
  .content {
    width: 100%;
    padding: 50px 25px;
    text-align: center;
  }
  h1 {
    font-size: 43px;
  }
  .content p {
    font-size: 18px;
    color: white;
  }
  .features {
    grid-template-columns: 1fr;
    padding: 30px 25px;
  }
  .about {
    flex-direction: column;
    padding: 60px 25px;
    gap: 35px;
  }
  .about img {
    width: 100%;
  }
  .about h2,
  .order h2,
  .areas h2 {
    font-size: 32px;
  }
  footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.why-us {
  padding: 90px 8%;
  background: linear-gradient(180deg, #fff, #f6f8fb);
}
.section-title {
  text-align: center;
  max-width: 850px;
  margin: auto;
}
.section-title span {
  display: inline-block;
  color: var(--red);
  background: #fff0f1;
  padding: 7px 25px;
  border-radius: 30px;
  font-weight: 900;
}
.section-title h2 {
  font-size: 45px;
  font-weight: 900;
  margin: 15px 0;
}
.section-title p {
  font-size: 20px;
  color: #4b5563;
}
.features {
  padding: 50px 0 0;
  background: transparent;
}
.feature-card svg {
  width: 55px;
  height: 55px;
  fill: var(--red);
  margin-bottom: 15px;
}
.feature-card svg path {
  stroke: none;
}
.feature-card {
  min-height: 250px;
}
@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .section-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.menu-toggle {
  display: none;
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-size: 28px;
  width: 50px;
  height: 45px;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 900px) {
  header {
    flex-direction: row;
    position: sticky;
    padding: 12px 20px;
    height: 75px;
  }
  .logo {
    height: 55px;
  }
  .menu-toggle {
    display: block;
  }
  nav {
    display: flex;
    position: absolute;
    top: 75px;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    padding: 25px;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
  nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  nav a {
    margin: 0;
    padding: 10px 0;
  }
  .phone {
    display: none;
  }
}

/* Premium Energy CTA */
.order {
  margin: 80px auto;
  width: 86%;
  padding: 70px 30px;
  border-radius: 35px;
  background: linear-gradient(135deg, #07111b, #182b3d);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(7, 17, 27, 0.25);
}
.order:before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgb(21 201 70 / 35%);
  filter: blur(80px);
  top: -150px;
  right: -100px;
}
.order h2,
.order p,
.order button {
  position: relative;
}
.order h2 {
  font-size: 42px;
  margin-bottom: 15px;
}
.order p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e5e7eb;
}
.order .outline {
  background: transparent;
  border: 2px solid #fff;
  margin-right: 12px;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  left: 28px;
  bottom: 28px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  animation: whatsappPulse 2s infinite;
}
.floating-whatsapp svg {
  width: 38px;
  height: 38px;
  fill: #fff;
}
@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .order {
    width: 92%;
    padding: 45px 20px;
  }
  .order h2 {
    font-size: 30px;
  }
  .floating-whatsapp {
    width: 58px;
    height: 58px;
    left: 18px;
    bottom: 18px;
  }
}

/* SVG Action Buttons */
.hero-btn,
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
}
.hero-btn svg,
.cta-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.whatsapp-btn {
  background: #25d366;
  color: #fff;
}
.call-btn {
  color: #fff;
}
.call-btn svg {
  fill: currentColor;
}
.cta-btn {
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
}
.order .cta-btn {
  margin: 8px;
}

/* Navbar phone SVG */
.phone{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}
.nav-phone-icon{
    width:18px;
    height:18px;
    fill:currentColor;
}


.professional-footer{
 background:#050505;
 color:#fff;
 padding:45px 6% 20px;
}
.footer-container{
 display:flex;
 justify-content:space-between;
 gap:40px;
}
.footer-brand{width:35%;}
.footer-brand img{width:150px;}
.footer-brand p{line-height:1.8;color:#ddd;}
.footer-links{text-align:center;display:flex;flex-direction:column;gap:12px;}
.footer-links h3,.footer-contact h3{color:#18b957;}
.footer-links a{color:white;text-decoration:none;}
.footer-contact{direction:ltr;}
.contact-item{
 display:flex;
     margin-top: 10px;
 align-items:center;
 gap:10px;
 color:#ddd;
}
.svg-icon{
 width:20px;
 height:20px;
 display:inline-block;
 background-position:center;
 background-repeat:no-repeat;
 background-size:contain;
}
.phone-icon{
 background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8a15.4 15.4 0 006.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.2 1.3.4 2.7.6 4.1.6.7 0 1.3.6 1.3 1.3V20c0 .7-.6 1.3-1.3 1.3C10.4 21.3 2.7 13.6 2.7 3.3 2.7 2.6 3.3 2 4 2h3.1c.7 0 1.3.6 1.3 1.3 0 1.4.2 2.8.6 4.1.1.4 0 .8-.2 1.1z'/%3E%3C/svg%3E");
}
.whatsapp-icon{
 background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20 3.9A10 10 0 003.5 16.1L2 22l6-1.5A10 10 0 1020 3.9z'/%3E%3C/svg%3E");
}
.location-icon{
 background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 00-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 00-7-7zm0 9.5A2.5 2.5 0 1112 6a2.5 2.5 0 010 5.5z'/%3E%3C/svg%3E");
}
.whatsapp-btn{
      margin-top: 15px;
 display:inline-flex;
 align-items:center;
 gap:8px;
 background:#16b957;
 color:#fff;
 padding:12px 28px;
 border-radius:30px;
 text-decoration:none;
}
.footer-bottom{
 border-top:1px solid #333;
 margin-top:35px;
 padding-top:20px;
 text-align:center;
 color:#ccc;
}
@media(max-width:768px){
 .footer-container{flex-direction:column;align-items:center;text-align:center;}
 .footer-brand{width:100%;}
}

.services-page{
padding:70px 6%;
background:#f7f7f7;
min-height:100vh;
}
.services-page h1{text-align:center;margin-bottom:40px;}
.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}
.service-card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
text-align:center;
}
.service-card h2{color:#19d719;}
.service-card p{line-height:1.9;color:#555;}
.service-actions{
display:flex;
justify-content:center;
gap:12px;
margin-top:25px;
}
.service-actions a{
padding:12px 25px;
border-radius:30px;
background:#16b957;
color:#fff;
text-decoration:none;
}
.service-actions a:first-child{background:#222;}

.service-image{
 width:100%;
 height:220px;
 object-fit:cover;
 border-radius:16px;
 margin-bottom:20px;
}

.services-home{
padding:70px 6%;
background:#f6f6f6;
direction:rtl;
}
.services-title{text-align:center;margin-bottom:40px;}
.services-title h2{color:#000000;font-size:36px;}
.services-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}
.service-box{
background:#fff;
border-radius:22px;
padding:30px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.service-box img{
width:100%;
height:220px;
object-fit:cover;
border-radius:18px;
}
.service-box h3{
color:#1be246;
font-size:25px;
margin:25px 0 15px;
}
.service-box p{
line-height:2;
color:#555;
}
.service-buttons{
/* display:flex; */
justify-content:center;
gap:15px;
margin-top:25px;
}
.service-buttons a{
padding:12px 28px;
border-radius:30px;
color:white;
text-decoration:none;
}
.call-btn{background:#222;}
.whatsapp-btn{background:#16b957;}
@media(max-width:900px){
.services-cards{grid-template-columns:1fr;}
}
