/* 🌐 General */
body {
  font-size: 15px;
  background-color: #fff;
  color: #0b0b0b;
  font-family: "Inter", sans-serif;
}
[dir="rtl"] body {
  font-family: "Cairo", sans-serif;
}

/* 🔹 Navbar: شفاف في البداية */
.navbar {
  padding: 0.8rem 4.5rem;
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
}

/* 🔹 لما يحصل Scroll يديله الخلفية */
.navbar.scrolled {
  background-color: #bebebe !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* الروابط */
.navbar-nav .nav-link {
  font-size: 1.3rem;
  padding: 1rem 18px;
  margin: 0 8px;
  color: #000;
  /* color: #650000; */
  font-weight: 600;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* 🔥 الخلفية الممتدة + المسافات يمين وشمال */
.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: -21px;
  left: -14px;
  /* ← مسافة أكبر يمين */
  right: -14px;
  /* ← مسافة أكبر شمال */
  height: calc(100% + 33px);
  background: #650000;
  opacity: 0;
  transition: 0.15s ease;
  z-index: -1;
  border-radius: 10px;
}

.navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-nav .nav-link:hover::before {
  opacity: 1;
}



/* new  */
.row.main-row {
  gap: 30px;
}

/* Carousel Images */
.carousel-img {
  width: 150px;
  height: 120px;
  object-fit: cover;
}

/* Responsive for smaller screens */
@media (max-width: 992px) {

  .col-lg-9,
  .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.header {
  height: 500px;
  background-color: #afabab;
  color: #111;
  text-align: center;
  padding: 100px 20px;
  background-image: url('/front/img/icon/download2.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header h1 {
  font-weight: 800;
}

.bg-link a{
  background-color: white;
  color: #000;
  /* color: #650000; */
  border-radius: 5px;
  padding: 5px;
}
/* infinte scroll */
.logo-slider {
    background: white;
}

.logos-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logos-slide {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    animation: scroll 20s linear infinite;
}

.logos-slide img {
    height: 150px;
    opacity: 0.6;
    transition: 1s;
}

.logos-slide img:hover {
    opacity: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}



/* Category */
.category-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.category-card {
  margin-top: 15px;
  border-radius: 10px;
  transition: .3s;
}

.tips-categories .container {
  max-width: 85%;
  /* يخلي السيكشن أوسع */
}

.tips-categories .col-lg-4 {
  flex: 0 0 32%;
  /* تخلي كل كارت أعرض */
  max-width: 32%;
}




/* 🔹 قسم الكروت */
.recentlocal .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recentlocal .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* 🔹 قسم الخريطة */
.discover {
  text-align: center;
  /* margin: 10px 0 30px; */
}

.map-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.map-container-header {
  width: 80%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.tips-section {
  padding: 70px 0;
}

.tip-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card img {
  width: 320px;
  object-fit: cover;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.tip-card h5 {
  font-size: 1rem;
  color: #333;
  margin-top: 5px;
}

.btn-warning {
  border-radius: 30px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #e0a800;
  transform: scale(1.05);
}


/* 🔹 قسم Fuel */
.fuel {
  width: 80%;
  height: 350px;
  /* نفس ارتفاع الخريطة */
  background: linear-gradient(135deg, #ff9800, #f44336);
  border-radius: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background-image: url('/front/img/icon/yp4b-banner-desktop.webp');
}

.fuel h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.fuel button {
  background-color: #fff;
  color: #650000;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.fuel button:hover {
  background-color: #837f7f;
  color: #fff;
  transform: scale(1.05);
}

/* 🔹 قسم cover */
.cover {
  width: 80%;
  height: 350px;
  /* نفس ارتفاع الخريطة */
  background-image: url('/front/img/icon/iyp_desktop_en.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cover h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cover button {
  background-color: #fff;
  color: #f44336;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cover button:hover {
  background-color: #f44336;
  color: #fff;
  transform: scale(1.05);
}

/* تكبير الصور داخل الـ carousel */
.carousel-imgg {
  width: 200px !important;
  /* 👈 كبرتها — زوّد الرقم لو عايزها أكبر */
  height: 250px !important;
  /* مقاس ثابت للشكل */
  object-fit: contain;
  /* علشان الصورة تبقى مظبوطة من غير ما تتمط */
  border-radius: 10px;
  /* حواف ناعمة */
}

/* إخفاء الأسهم */
.carousel-control-prev,
.carousel-control-next {
  display: none !important;
}

/* مسافة بين الصور */
#multiCarousel .carousel-item .d-flex {
  gap: 20px !important;
}







.ads-google {
  /* 🔹 قسم Fuel */
  width: 1530px;
  height: 180px;
  /* نفس ارتفاع الخريطة */
  background: linear-gradient(135deg, #ff9800, #f44336);
  border-radius: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background-image: url('/front/img/logom.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ads-google-square {
  /* 🔹 قسم Fuel */
  width: 300px;
  height: 300px;
  /* نفس ارتفاع الخريطة */
  background: linear-gradient(135deg, #ff9800, #f44336);
  border-radius: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background-image: url('/front/img/logom.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* About Page */
.about-section {
  height: 500px;
  background-image: url('img/ypca_cover_v2_desktop.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* 🔹 طبقة ظل تغطي الصورة كلها */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(172, 172, 172, 0.6);
  /* غمق الخلفية */
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
  /* ظل داخلي ناعم */
  z-index: 1;
}

.about-section h1 {
  position: relative;
  z-index: 2;
  /* فوق الطبقة المظللة */
  font-size: 2.5rem;
  font-family: "Source Code Pro", monospace;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  /* ظل للكلام نفسه */
}

.who-are-you {
  width: 600;
}

.who-img {
  float: left;
  width: 28%;
  margin: 48px 48px;
}

.who-img img {
  width: 100%;
}

.who-text {
  text-align: left;
  width: 41%;
  float: right;
  padding: 45px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}
/* يخلي الكلام يبدأ وينتهي صح */
.who-text p {
  text-align: justify;
}
.h2.who-text {
  text-decoration-line: underline;
  align-items: center;
}


/* ── Contact Page ── */
.background {
  background-color: #f8f9fa;
}

.info-item {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
}
.info-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12) !important;
}
.info-item .bi,
.info-item svg { color: #650000; }
.info-text {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
  word-break: break-word;
}
.contact-section .map-container {
  width: 100%;
  height: 450px;
}
@media (max-width: 768px) {
  .contact-section .map-container { height: 300px; }
  .info-item { min-width: 100%; }
}

/*  Contact-us Page */
.prodact-section {
  height: 500px;
  background-image: url('/front/img/icon/ypca_cover_v2_desktop.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* 🔹 طبقة ظل تغطي الصورة كلها */
.prodact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(172, 172, 172, 0.6);
  /* غمق الخلفية */
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
  /* ظل داخلي ناعم */
  z-index: 1;
}

.prodact-section h1 {
  position: relative;
  z-index: 2;
  /* فوق الطبقة المظللة */
  font-size: 2.5rem;
  font-family: "Source Code Pro", monospace;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  /* ظل للكلام نفسه */
}






.contact-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
  font-size: x-large;
}

.info-item .bi {
  color: #650000;
}

.send-button .btn {
  background-color: #837f7f;
}

.contact-form {
  transition: all 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-3px);
}

.map-container {
  width: 100%;
  height: 560px;
  min-width: 3502x;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* 🧩 في الشاشات الصغيرة (الموبايل) */
@media (max-width: 992px) {
  .map-container {
    width: 100%;
    height: 300px;
  }
}


/* Metal-Tie */
/* 🔸 Sections */
.first-list {
  background-color: #f0eeee;
  border-radius: 10px;
  padding: 15px;
}

.first-list h3,
.first-list p {
  color: #0b0b0b;
}

/* 🔗 Links */
.link-item {
  color: #0b0b0b;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.link-item:hover {
  background-color: #c1121f;
  color: white;
}

.links a {
  text-decoration: none;
}

/* ⭐ Review Box */
.review-box {
  background-color: #2e2e2e;
  border: 1px solid #c1121f;
  color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.review-box:hover {
  box-shadow: 0 4px 15px rgba(193, 18, 31, 0.5);
}

.fa-solid {
  color: #650000;
  font-size: 25px;
  padding: 3px;
}


/* 🌟 Stars */
.stars i {
  cursor: pointer;
  color: #650000;
  transition: transform 0.2s ease, color 0.2s ease;
}

.stars i:hover {
  transform: scale(1.2);
  color: #837f7f;
}

/* Contact Box */
#contactBox {
  position: fixed;
  top: 50%;
  right: -155px;
  left: auto;
  transform: translateY(-50%);
  width: 140px;
  background: #fff;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 10px 10px;
  transition: right 0.6s ease-in-out, left 0.6s ease-in-out, opacity 0.4s ease;
  opacity: 0;
  z-index: 9999;
}

#contactBox.show {
  right: 0;
  opacity: 1;
}

/* RTL: slide from left */
[dir="rtl"] #contactBox {
  right: auto;
  left: -155px;
  border-radius: 0 12px 12px 0;
}

[dir="rtl"] #contactBox.show {
  left: 0;
  right: auto;
}

#contactBox h6 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: .78rem;
  color: #000;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #f3f3f3;
  color: #000;
  border-radius: 8px;
  padding: 7px 10px;
  margin-bottom: 6px;
  font-size: .8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-item a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  width: 100%;
}

.contact-item:hover {
  background: #ff4444;
  color: #fff;
  transform: translateX(-5px);
}

/* ✅ Responsive Styles */
@media (max-width: 992px) {
  #contactBox {
    position: static;
    transform: none;
    width: 90%;
    margin: 20px auto;
    border-radius: 15px;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .contact-item {
    justify-content: center;
    text-align: center;
  }

  .contact-item i {
    margin-right: 8px;
  }
}

@media (max-width: 576px) {
  #contactBox {
    padding: 10px 15px;
  }

  .contact-item {
    font-size: 0.9rem;
    padding: 8px 10px;
  }

  #contactBox h6 {
    font-size: 1rem;
  }
}



/* 🧱 Headings underline */
h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 15px;
  color: #0b0b0b;
}

h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 3px;
  background-color: #ad6368;
  border-radius: 2px;
}

/* 🎯 Buttons */
.btn {
  background-color: #837f7f;
  color: #fff;
  border: none;
  border-radius: 6px;
}

.btn:hover {
  background-color: #0b0b0b;
  color: #ffffff;
}

/* 🧩 Icons */
.bi {
  color: #b64850;

}

.bii {
  font-size: 45px;
  letter-spacing: 15px;
  color: #650000;
}

.method {
  background-color: #f9f9f9;
}

.bi-credit-card-2-front {
  font-size: 55px;
}


/* menu contact-box */


/* 📱 Contact Box as Bottom Navbar on Mobile */
@media (max-width: 768px) {
  #contactBox {
    position: fixed;
    bottom: 0;
    top: auto;
    right: 0;
    left: 0;
    width: 100%;
    background-color: #d3d1d1;
    /* نفس لون النّاف بار */
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    opacity: 1;
    transform: none;
  }

  #contactBox h6 {
    display: none;
  }

  .contact-item {
    background: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .contact-item a {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #ffffff;
    /* لمسة دهبية بسيطة للرموز */
    text-decoration: none;
    padding: 5px;
  }

  .contact-item a i {
    font-size: 1.4rem;
    margin-bottom: 3px;
    color: #ffffff;
  }

  .contact-item:hover a {
    color: #ffffff;
  }

  .contact-item:hover a i {
    color: #fdd835;
  }
}

/* opening hour */
.opening-hours {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px 30px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: "Poppins", sans-serif;
  font-size: larger;
}

.opening-hours p {
  display: flex;
  justify-content: space-between;
  /* يخلي اليوم في الشمال والوقت في اليمين */
  align-items: center;
  margin: 8px 0;
  padding: 6px 19;
  font-size: 18px;
  color: #333;
  border-bottom: 1px solid #d1cece;
  gap: 25px;
}



.opening-hours p span.day {
  font-weight: 600;
  color: #111;
}

/* تقليب الصور */
#multiCarousel {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  position: relative;
}

.carousel-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.carousel-img:hover {
  transform: scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}







/* Social Media */
.dropdown-item img {
  width: 35px;
  justify-content: center;
}

.btnn {
  border: 0;
}

.dropdown-menu a {
  font-size: 18px;
  font-weight: 400;
}

.btnn:hover {
  background-color: #c1121f;
  color: white;
}


/* Steel */

.head {
  background-color: #f2f2f2;
  height: 290px;
  background-image: url(img/ypca_cover_v2_desktop.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 0px;
  padding: 70px;
  padding-top: 130px;
  line-height: 90px;
  box-shadow: 10px 10px 5px #aaaaaa38;
}
/* ✅ Head & Links */
.head h2 {
  font-size: 2rem;
  color: #222;
  line-height: 15px;
}
.head .linkss a {
    display: flex;
    align-items: center;
    gap: 7px; /* المسافة بين الأيقونة والكلمة */
    text-decoration: none;
}

.linkss {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}
.linkss .link-item {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 14px;
  transition: all 0.3s ease;
}
.linkss .link-item:hover {
  background-color: #a11515;
  border-color:  #000;
  color: white;
}
/* ✅ تنسيق المحتوى الرئيسي */
.container {
  /* display: flex; */
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
/* ✅ القايمة الرئيسية */
.first-lists {
  flex: 1;
  background-color: #f4f4f4;
  margin-bottom: 25px;
  padding: 25px 60px;
  border-radius: 12px;
  box-shadow: 10px 10px 5px #aaaaaa38;
  animation-duration: 0.3s;
}

.scroll-animate {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.scroll-animate.animate__animated {
  opacity: 1;
}

.subtitle{
  /* color: #650000; */
  color: #590202;
}
/* 🔸 Sections */
.first-lists {
  background-color: #f6f5f5;
  border-radius: 10px;
  padding: 15px;
  
}
.first-lists a{
  text-decoration: none;
}

/* 🔗 Links */
.link-item {
  color: #0b0b0b;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.link-item:hover {
  background-color: #c1121f;
  color: white;
}
.links a {
  text-decoration: none;  
}
/* pagination */
.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: .9rem;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    color: #555;
    background: #fff;
    transition: background .2s, color .2s, border-color .2s;
}
.pagination .page-link i { font-size: .85rem; }
.pagination .page-link:hover {
    background: #f0f0f0;
    border-color: #ccc;
    color: #222;
}
.pagination .page-item.active .page-link {
    background: #c1121f;
    border-color: #c1121f;
    color: #fff;
    font-weight: 700;
}
.pagination .page-item.disabled .page-link {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #aaa;
}
.linkss {
    padding: 0 !important;
    margin: 0 !important;
}

.linkss li {
    padding: 0 !important;
    margin: 0 0 6px 0 !important;
}

.linkss li a {
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex;
    align-items: center;
}

.linkss i {
    margin-right: 5px !important;
}

/* تقليل المسافات بين السطور في كل first-list */
.first-lists h4 {
    margin-bottom: 4px !important;
}
  
.first-lists p {
    margin-bottom: 4px !important;
    line-height: 1.4;
}

.first-lists ul.linkss li {
    margin-bottom: 3px !important;
}

.first-lists ul.links a {
    display: flex;
    align-items: center;
    gap: 6px; /* مسافة بين الأيقونة والكلمة */
    line-height: 1.3;
}
/* 🧩 Icons */
.bi {
  color: #650000;
  font-size: 16px;
}
.link-item:hover .bi{
  color: rgb(255, 255, 255);
}
/* الحاوية اللي بترتب البوكسات */
.ads-container {
  display: flex;
  justify-content: center; /* يجيبهم ف النص */
  align-items: center;
  flex-wrap: wrap; /* يخليهم ينزلوا تحت لو الشاشة صغيرة */
  gap: 40px; /* المسافة بينهم */
  margin: 40px auto;
  text-align: center;
}
/* البوكسات نفسها */
.ads-google-square {
   width: 970px;
  height: 180px;
  background: linear-gradient(135deg, #ff9800, #f44336);
  border-radius: 16px;
  color: #fff;
  display: flex; /* عشان المحتوى جواها يبقى في النص */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background-image: url('/front/img/logom.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}













/* ── Front (blade) hero & layout classes ── */
.hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}
.hero-section h1 { color: #fff; }
.hero-section .hero-search { max-width: 700px; width: 100%; }
.hero-search .form-control {
    border: none;
    border-radius: 8px 0 0 8px;
    height: 54px;
    font-size: 1rem;
    box-shadow: none;
}
.hero-search .form-control:focus { box-shadow: none; }
.hero-search .btn-search {
    background: #f5c518;
    border: none;
    height: 54px;
    padding: 0 24px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: background .2s;
}
.hero-search .btn-search:hover { background: #e0b000; }
.hero-search .input-where { border-radius: 0; border-left: 1px solid #e5e7eb; }
.quick-cats a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.25);
    transition: all .2s;
}
.quick-cats a:hover { background: #f5c518; color: #1a1a2e; border-color: #f5c518; }

/* ── Logo Slider ── */
.logo-slider { background: #f8f9fa; overflow: hidden; padding: 30px 0; }

/* ── Discover Banner ── */
.discover-banner {
    background: linear-gradient(135deg, #0f3460, #533483);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.discover-banner h2 { font-size: 2rem; font-weight: 700; }
.discover-banner p { opacity: .85; max-width: 600px; margin: 0 auto 24px; }
.discover-banner .btn-cta {
    background: #f5c518;
    color: #1a1a2e;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .2s;
}
.discover-banner .btn-cta:hover { background: #e0b000; transform: translateY(-2px); }

/* ── Section Title ── */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 50px; height: 3px;
    background: #f5c518;
    border-radius: 2px;
}

/* ── Category Group Title ── */
.category-group-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #1a1a2e;
    padding: 10px 0 6px;
    border-bottom: 2px solid #f5c518;
    margin-bottom: 16px;
}

/* ── Biz Mini ── */
.biz-mini-img {
    width: 72px; height: 72px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.biz-mini-placeholder {
    width: 72px; height: 72px;
    border-radius: 8px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #aaa;
    font-size: 1.5rem;
}
.view-more-link { color: #0f3460; font-weight: 600; text-decoration: none; font-size: .9rem; }
.view-more-link:hover { color: #f5c518; }

/* ── Business Cards ── */
.biz-card {
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
    background: #fff;
}
.biz-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); transform: translateY(-3px); }
.biz-card .biz-cover {
    height: 140px;
    object-fit: cover;
    width: 100%;
    background: #e9ecef;
    display: block;
}
.biz-card .logo-wrap {
    width: 64px; height: 64px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    background: #f8f9fa;
    flex-shrink: 0;
}
.biz-card .logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.package-badge { font-size: .7rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; }
.package-badge.free { background: #e9ecef; color: #555; }
.package-badge.gold { background: #fff3cd; color: #856404; }
.package-badge.premium { background: #d1ecf1; color: #0c5460; }

/* ── Site Footer (blade) ── */
.site-footer { background: #837f7f; color: rgba(255,255,255,.9); }
.site-footer h5 { color: #fff; font-weight: 700; font-size: .95rem; letter-spacing: .5px; }
.site-footer .nav-link { color: rgba(255,255,255,.75); font-size: .88rem; padding: 3px 0; transition: color .2s; }
.site-footer .nav-link:hover { color: #fff; }
.footer-bottom { background: rgba(0,0,0,.2); font-size: .82rem; color: rgba(255,255,255,.55); }

/* ── Ads Slot ── */
.ads-slot {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: .85rem;
    min-height: 90px;
}

/* ── Responsive hero ── */
@media (max-width: 768px) {
    .hero-section { padding: 100px 16px 40px; min-height: auto; }
    .hero-section h1 { font-size: 1.9rem; }
    .hero-search .form-control, .hero-search .btn-search { height: 46px; }
    .hero-search .input-where { border-radius: 8px; }
    .hero-search .form-control:first-child { border-radius: 8px; }
    .hero-search .btn-search { border-radius: 8px; width: 100%; }
}

/* 🦶 Footer */
.footer-section footer {
  background-color: #837f7f;
  color: #e6e6e6;
  padding: 20px 0;
}

.footer-section footer h5 {
  color: #131212;
}

.footer-section footer a {
  color: whitesmoke;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-section footer a:hover {
  color: #ffffff;
  transform: translateX(3px);
}


/* Footer Accordion */

/* 📱 Footer Responsive Design */
@media (max-width: 768px) {
  .footer-section footer>div.d-flex {
    flex-direction: column !important;
    /* يخلي الأعمدة تحت بعض */
    align-items: center !important;
    text-align: center !important;
  }

  .footer-section .links {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-section .map-container {
    width: 90% !important;
    height: 200px !important;
    margin: 10px 0;
  }

  .footer-section .links h5 {
    cursor: pointer;
    position: relative;
  }

  /* إخفاء القوائم في الموبايل بشكل قابل للفتح */
  .footer-section .links ul {
    display: none;
    transition: all 0.3s ease;
  }

  .footer-section .links.active ul {
    display: block;
  }

  /* سهم صغير جنب العنوان */
  .footer-section .links h5::after {
    content: "▾";
    position: absolute;
    right: 10px;
    font-size: 1rem;
  }
}