:root {
  --primary: #D1933C; /* softer premium gold/orange */
  --bg-page: #f2f3f1; /* beige/grey background */
  --bg-card: #ffffff;
  --text-dark: #161a1d;
  --text-light: #6b7280;
  --bg-dark: #1b2126; /* dark sections */
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 8px;
  --font-main: 'Roboto', sans-serif;
  --font-title: 'canada-type-gibson', sans-serif;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, 
.hero-title, .about-content h2, .services-title, .trusted-left h2, .dark-banner h2, .media-header h2, .c-left h2, .c-right h3, .b-info h3 {
  font-family: var(--font-title);
  font-weight: 500;
}

a { text-decoration: none; color: inherit; }
.text-orange { color: var(--primary); }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography elements */
.badge-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

/* Utilities */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card-white {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 60px;
}

.img-block {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  min-height: 350px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #e7a141;
  color: #fff;
}
.btn-primary:hover {
  background-color: #000;
}
.btn-dark {
  background-color: var(--bg-dark);
  color: #fff;
}
.btn-dark:hover {
  background-color: #000;
}

/* ------------- TOP BAR ------------- */
.absolute-header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.tb-left span { margin-right: 25px; color: #fff; }
.tb-left i { margin-right: 5px; }
.tb-right i { margin-left: 20px; cursor: pointer; transition: color 0.3s; }
.tb-right i:hover { color: var(--primary); }

/* ------------- NAVBAR ------------- */
.navbar-wrapper {
  margin-bottom: 40px;
}
.nav-pill {
  background-color: var(--bg-card);
  border-radius: 8px;
  padding: 10px 20px 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-circle {
  background-color: #000;
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
}
.logo-text-block { line-height: 1.2; }
.logo-text-block .ar { font-size: 0.8rem; font-weight: 700; display: block;}
.logo-text-block .en { font-size: 0.8rem; font-weight: 800; }

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #444;
}
.nav-links a:hover { color: var(--primary); }

/* ------------- HERO STACKS ------------- */
/* Slider Wrapper */
.hero-stacks-wrapper {
  width: 100%;
  height: 100vh; /* Full screen */
  position: relative;
  overflow: hidden;
  background-color: #111; /* Solid background to prevent see-through overlap */
}

.hero-stacks-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  background-color: #111; /* Extremely important: blocks underlying slides if image fails to load */
}

.hero-unified {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 120px;
  background-color: #111;
}
/* No more reverse class needed for full bg */

.hu-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hu-img::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%);
}
.hero-unified.reverse .hu-img {
  grid-column: 2;
  grid-row: 1;
}

.hu-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Swiper custom arrows/pagination */
.hero-stacks-wrapper .swiper-button-next,
.hero-stacks-wrapper .swiper-button-prev {
  color: #fff;
  background: rgba(255,255,255,0.1);
  width: 50px; height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}
.hero-stacks-wrapper .swiper-button-next::after,
.hero-stacks-wrapper .swiper-button-prev::after {
  font-size: 1.2rem;
}
.hero-stacks-wrapper .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.5;
}
.hero-stacks-wrapper .swiper-pagination-bullet-active {
  background-color: var(--primary);
  opacity: 1;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-family: var(--font-title);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 25px;
  color: #fff;
  white-space: nowrap;
}

.hero-desc {
  color: #f1f1f1;
  font-size: 20px;
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 900px;
}

.hu-link {
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 3px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}
.hu-link i { margin-left: 8px; font-size: 0.8rem; transition: transform 0.3s;}
.hu-link:hover { color: var(--primary); border-color: var(--primary); }
.hu-link:hover i { transform: translate(3px, -3px); }

/* ------------- ABOUT WASEL ------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 90px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-box {
  width: 100%;
  min-height: 480px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-tag-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--primary);
  color: #000;
  padding: 30px 40px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  text-align: center;
}
.about-tag-float h3 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.about-tag-float p {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 5px;
}
.about-content h2 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 25px;
  letter-spacing: -1px;
}
.about-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.6;
}
.divider {
  border-top: 1px solid #e5e7eb;
  margin: 40px 0;
}
.about-internal-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.about-internal-stats .a-stat h4 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.about-internal-stats .a-stat p {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin: 0;
}
.mt-4 { margin-top: 1.5rem; }

/* ------------- SERVICES GRID ------------- */
.services-section {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}
.services-title, .section-title {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: -1px;
  color: var(--text-dark);
}
.services-subtitle {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 50px auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.s-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 0.3s;
}
.s-card:hover { transform: translateY(-5px); }
.s-icon {
  width: 55px;
  height: 55px;
  background-color: transparent;
  color: #908B8A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.s-card:hover .s-icon {
  transform: scale(1.1);
  color: #d1933c;
}

@keyframes driveCar {
  0% { transform: scale(1.1) translateX(0); }
  25% { transform: scale(1.1) translateX(-4px); }
  50% { transform: scale(1.1) translateX(4px); }
  75% { transform: scale(1.1) translateX(-2px); }
  100% { transform: scale(1.1) translateX(0); }
}

@keyframes turnWrench {
  0% { transform: scale(1.1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-15deg); }
  75% { transform: scale(1.1) rotate(15deg); }
  100% { transform: scale(1.1) rotate(0deg); }
}

.s-card:hover .s-icon.anim-car {
  animation: driveCar 0.6s ease-in-out forwards;
}

.s-card:hover .s-icon.anim-wrench {
  animation: turnWrench 0.6s ease-in-out forwards;
}
.s-card h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 25px;
}
.s-link {
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: auto;
}
.s-link i { margin-left: 5px; font-size: 0.7rem; }

/* ------------- CLIENT REVIEWS ------------- */
.reviews-section {
  margin-bottom: 100px;
}
.myReviewsSwiper .swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.r-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 45px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}
.r-card .stars {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.r-card p {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 30px;
}
.r-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.r-avatar {
  width: 50px;
  height: 50px;
  background-color: #f2f3f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.2rem;
}
.r-author h4 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 3px;
}
.r-author span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ------------- TRUSTED PARTNERS ------------- */
.trusted-section {
  margin-bottom: 80px;
}
.trusted-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: flex;
  gap: 50px;
  align-items: center;
}
.trusted-left h2 {
  font-size: 3rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
}
.trusted-left p {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}
.trusted-right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
  flex-grow: 1;
}
.trusted-right div {
  color: #ccc;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* ------------- DARK BANNER ------------- */
.dark-banner {
  background-color: #1a1f2c;
  background-image: linear-gradient(135deg, #1a1f2c 0%, #0d121c 100%);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  color: #fff;
  margin-bottom: 80px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.dark-banner h2 {
  font-size: 2.8rem;
  font-weight: 500;
  max-width: 100%;
  line-height: 1.1;
  margin-bottom: 20px;
}
.dark-banner p {
  color: #a0aab2;
  font-size: 0.95rem;
  max-width: 500px;
  margin-bottom: 30px;
}

/* ------------- MEDIA SECTION ------------- */
.media-section {
  margin-bottom: 80px;
}
.media-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
.media-header h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.m-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
}
.m-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}
.m-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.m-tag {
  background-color: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
}
.m-date {
  font-size: 0.8rem;
  color: var(--text-light);
}
.m-title {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.3;
}

/* ------------- CONTACT SPLIT ------------- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 80px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.c-left {
  background-color: var(--bg-dark);
  color: #fff;
  padding: 60px;
}
.c-left h2 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 30px;
}
.c-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.c-icon {
  color: var(--primary);
  font-size: 1.2rem;
}
.c-text h4 {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 3px;
}
.c-text p {
  font-weight: 600;
  font-size: 1rem;
}

.c-right {
  background-color: var(--bg-card);
  padding: 60px;
}
.c-right h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 15px;
}
.form-input {
  width: 100%;
  padding: 15px 20px;
  background-color: #f8f9f9;
  border: 1px solid #eee;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
}
textarea.form-input {
  height: 120px;
  resize: vertical;
}

/* ------------- BRANCHES ------------- */
.branches-section {
  margin-bottom: 80px;
}
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.b-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}
.b-info {
  padding: 30px;
  flex-grow: 1;
}
.b-info h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
}
.b-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.score {
  font-weight: 700;
  color: var(--text-dark);
}
.b-rating .stars {
  color: var(--primary);
  font-size: 0.9rem;
}
.count {
  color: #777;
  font-size: 0.9rem;
}
.b-info p {
  color: var(--text-light);
  font-size: 0.95rem;
}
.b-map iframe {
  display: block;
}

/* ------------- FOOTER ------------- */
.full-footer {
  background-color: var(--bg-dark);
  padding: 80px 0;
  margin-top: 60px;
}
.footer-card {
  color: #fff;
  display: flex;
  justify-content: space-between;
}
.f-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.f-links {
  display: flex;
  gap: 100px;
}
.f-col h5 {
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.f-col ul li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #ffffff;
}

@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .hu-content { padding: 0 5%; }
  
  .top-bar { display: none; }
  .navbar-wrapper { margin-top: 10px; }
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem!important;
    }
.hero-desc { font-size: 16.8px!important; }
}

  .nav-pill { position: relative; flex-direction: row; justify-content: space-between; padding: 10px 20px; align-items: center;}
  .nav-cta { display: none; }
  .nav-toggle { display: block !important; }
  .nav-links {
    display: none !important;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .nav-links.active { display: flex !important; }
  
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.2rem); margin-bottom: 15px; white-space: normal; }
  .hero-desc { font-size: 20px; }
  
  .about-split { grid-template-columns: 1fr; gap: 40px; margin-top: 50px; }
  .about-img-box { min-height: 300px; }
  .about-tag-float { bottom: -20px; right: 20px; padding: 15px 20px; }
  .about-content h2 { font-size: 2rem; }
  .about-internal-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  
  .services-section { margin-top: 60px; margin-bottom: 60px; }
  .services-title, .section-title { font-size: 1.8rem; }
  .c-left h2 { font-size: 1.6rem; margin-bottom: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px;}
  
  .branches-grid { grid-template-columns: 1fr; }

  .trusted-card { flex-direction: column; padding: 30px; text-align: center; gap: 30px;}
  .trusted-right { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  
  .dark-banner { padding: 40px 25px; }
  .dark-banner h2 { font-size: 1.6rem; }
  
  .media-grid { grid-template-columns: 1fr; }
  
  .contact-split { grid-template-columns: 1fr; }
  .c-left, .c-right { padding: 30px 20px; }
  .split-grid { grid-template-columns: 1fr; }
  
  .full-footer { padding: 40px 0; margin-top: 40px; }
  .footer-card { flex-direction: column; gap: 40px; padding: 0; text-align: center; }
  .f-logo { justify-content: center; }
  .footer-card p { margin: 0 auto; }
  .f-links { flex-direction: column; gap: 30px; align-items: center; }
  .f-col { display: flex; flex-direction: column; align-items: center; }
  .f-col ul { padding-left: 0; display: flex; flex-direction: column; align-items: center; }
  
  .nav-links { display: none; }
  
  .hero-stacks-wrapper .swiper-button-next,
  .hero-stacks-wrapper .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .s-card { text-align: center; align-items: center; }
}

/* Hero Slider Animation */
@keyframes heroZoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.swiper-slide-active .hu-img {
  animation: heroZoomIn 8s ease-out forwards;
}
