/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #ff882e;
  --black: #000000;
  --white: #ffffff;
  --light-beige: #f5f5f0;
  --dark-gray: #1a1a1a;
  --gray: #666666;
}

body {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  direction: ltr;
  overflow-x: hidden;
  color: var(--black);
  line-height: 1.6;
}

body * {
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Container */
.header-container {
  background-color: #121212;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 800px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .header-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("./assets/imgs/header-driver/pattern.png");
    background-size: 100% 100%;
    background-position: 0 0;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
  }
  .header-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("./assets/imgs/header-driver/elipse.png");
    background-size: 75%;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Navigation Bar */
.navbar {
  padding: 15px 0;
  position: relative;
  z-index: 10;
}

.nav-container {
  margin: 0 auto;
  padding: 0 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .icon-logo {
  font-size: 68px !important;
  padding: 10px 25px;
  border-left: 1px solid #ffffff2e !important;
  color: white;
}

.icon-logo {
    vertical-align: middle;
    display: inline-block;
    width: 1em;
    height: 1em;
    mask: url("./assets/imgs/logohemam.svg") no-repeat center / contain;
    background-color: currentColor;
    content: "";
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #ffffffcc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-orange);
}

.drawer-menu a.active {
  color: var(--primary-orange);
}

.nav-cta-btn {
  background: var(--primary-orange);
  color: var(--black);
  border: none;
  padding-block: 16px;
  padding-inline: 24px;
  border-radius: 96px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  display: inline-block;
}

.nav-cta-btn:hover {
  background: #e6771f;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s;
}

/* Drawer Menu */
.drawer-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 40;
}

.drawer-overlay.active {
  display: block;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: white;
  z-index: 50;
  transition: right 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.drawer-menu.active {
  right: 0;
}

/* Language button styles (also present in styles.css) */
.desktop-lang-btn {
  background: var(--white);
  color: var(--black);
  padding: 8px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.desktop-lang-btn i {
  color: var(--black);
}
.drawer-lang-btn {
  border: 1px solid #e6e6e6;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .desktop-lang-btn {
    display: none;
  }
}

.drawer-menu .bg-black {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 10;
}

.drawer-menu .icon-logo {
    vertical-align: middle;
    display: inline-block;
    width: 48px;
    height: 48px;
    mask: url("./assets/imgs/logohemam.svg") no-repeat center / contain;
    background-color: currentColor;
    content: "";
}

.drawer-menu #close-menu {
  background: transparent;
  border: none;
  font-size: 36px;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.drawer-menu #close-menu:hover {
  transform: rotate(90deg);
}

.drawer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.drawer-menu ul li a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  transition: color 0.3s;
  color: var(--black);
}

.drawer-menu ul li a:hover,
.drawer-menu ul li a.active {
  color: var(--primary-orange);
}

.drawer-menu .p-6 {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 100px);
}

.drawer-menu .border-t {
  border-top: 1px solid #e5e5e5;
  margin-top: auto;
}

.bg-orange-primary {
  background: var(--primary-orange);
}

.text-orange-primary {
  color: var(--primary-orange);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  height: 700px !important;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 768px) {
    padding: 0;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  @media screen and (min-width: 768px) {
    height: 700px;
  }
}

.hero-phone-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  @media screen and (min-width: 768px) {
    &::after {
      content: "";
      position: absolute;
      top: 60px;
      left: 95px;
      width: 48px;
      height: 48px;
      background-image: url("./assets/imgs/header-driver/user.png");
      background-size: cover;
    }
    bottom: -65px;
    left: 50px;
  }
}

.hero-phone {
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  z-index: 2;
  position: relative;
  @media screen and (max-width: 768px) {
    width: 100%;
    bottom: 10px;
  }
}

.hero-checkmark {
  position: absolute;
  bottom: 25%;
  left: -30px;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: start;
  padding: 0 20px;
}

.hero-service-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--primary-orange);
  margin-bottom: 15px;
  text-align: start;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: start;
}

.hero-text {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.8;
  text-align: start;
  display: block;
}

.hero-app-buttons {
  width: 100%;
  max-width: 500px;
  gap: 15px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Features Section */
.features-section {
  background: var(--white);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fafafa;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: start;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 15px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1px 20px #e6e5e5;
}

.feature-icon,
.section-icon {
  margin-bottom: 15px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  border-radius: 50%;
  border: 2px solid;
  border-image-source: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0) 100%
  );

  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  text-align: start;
  margin-bottom: 60px;
  color: var(--black);
}

.section-title {
  font-size: 48px;
  text-align: start !important;
  margin-bottom: 30px;
}

/* How Section */

.bg-how-section > div {
  padding: 10px;
  overflow: hidden !important;
  background-color: #fafafa !important;
  border: 1px solid var(--primary-orange) !important;
  border-right: transparent !important;
  border-radius: 40px;
  @media screen and (max-width: 768px) {
    background-color: linear-gradient(
      to bottom,
      var(--light-beige) 0%,
      #fff 80%
    );
  }
}

.how-intro {
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.step-card {
  padding: 40px 20px;

  border-radius: 16px;
  text-align: start;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--black);
}

.step-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  .steps-text {
    color: var(--primary-orange);
  }
}

.step-card p {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--white);
  padding: 80px 0;
}

.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 60px 20px;
  border-radius: 24px;
  margin: 0 15px;
  position: relative;
  display: flex;
  gap: 50px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 2px !important;
  }

  .testimonial-img {
    z-index: 10;
    position: relative;
    width: 33% !important;
    border-radius: 50%;
    @media screen and (max-width: 768px) {
      width: 100% !important;
    }
    img {
      position: relative;
      width: auto;
      width: 245px !important;
      height: 245px !important;
      border-radius: 50%;
      object-fit: cover;
      object-position: center;
      z-index: 3;
    }
    &::before {
      content: "";
      position: absolute;
      top: -30px;
      left: -31px;
      background-image: url("./assets/imgs/circles.png");
      background-size: cover;
      background-position: center;
      width: 300px;
      height: 300px;
      z-index: 2;
      @media screen and (max-width: 768px) {
        width: 100% !important;
        top: -30px;
        left: 12px;
      }
    }
  }
  .testimonial-content {
    width: 70% !important;
    @media screen and (max-width: 768px) {
      margin-top: 30px;
      width: 100% !important;
    }
  }
}

.testimonial-content {
  text-align: start;
  h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
  }
}

.testimonial-text {
  font-size: 20px;
  color: var(--black);
  quotes: "“" "”";
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 40px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.author-info h4 {
  font-size: 20px;
  font-weight: 500;
  @media screen and (min-width: 768px) {
    font-weight: 700;
  }
  color: var(--black);
  margin-bottom: 5px;
}

.author-info p {
  font-size: 16px;
  color: var(--gray);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Owl Carousel Custom Styles for Testimonials */
#testimonialsCarousel {
  position: relative;
}

#testimonialsCarousel .item {
  padding: 0 12px;
}

/* Owl Carousel Navigation Buttons */
.owl-nav {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.owl-nav button {
  background: white !important;
  border: 1px solid #d1d5db !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: var(--black) !important;
  font-size: 24px !important;
}

.owl-nav button:hover {
  background: var(--primary-orange) !important;
  border-color: var(--primary-orange) !important;
  transform: scale(1.05);
}

.owl-nav button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: static !important;
  margin-top: 15px !important;
}

/* FAQ Section */
.faq-section {
  background: #fafafa;
  padding: 80px 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  overflow: hidden;
  border-bottom: 1px solid #c4c4c4;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: start;
  font-size: 18px;
  font-weight: bold;
  color: var(--black);
  transition: background 0.3s;
  @media screen and (max-width: 768px) {
    padding: 20px 2px;
  }
}

.faq-question:hover {
  background: transparent;
}

.faq-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: transparent;
  color: var(--primary-orange);
  border: 2px solid var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 24px 20px;
  @media screen and (max-width: 768px) {
    padding: 20px 10px;
  }
}

.faq-answer p {
  font-size: 16px;
  color: #535862;
  line-height: 1.8;
  margin: 0;
}

/* Video Container Styles */
.video-container {
  position: relative;
  min-height: 300px;
  background: #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

/* Desktop Video Animations */
.video-container.video-hiding {
  opacity: 0;
  transform: scale(0.95);
}

.video-container.video-hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.video-container.video-showing {
  opacity: 1;
  transform: scale(1);
}

.video-container.video-loading {
  opacity: 0.7;
  transform: scale(0.98);
}

.video-container.video-loaded {
  opacity: 1;
  transform: scale(1);
}

/* Mobile Video Container */
.mobile-video-container {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
}

.faq-item.active .mobile-video-container {
  opacity: 1;
  max-height: 300px;
}

.mobile-video-container video {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Responsive Video Display */
@media (max-width: 767px) {
  .desktop-video {
    display: none;
  }

  .faq-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-item {
    margin-bottom: 16px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 20px;
  }
}

@media (min-width: 768px) {
  .mobile-video-container {
    display: none;
  }
}

/* Enhanced FAQ Item Transitions */
.faq-item {
  border-radius: 0;
}

.faq-item.active {
  margin-bottom: 16px;
}

/* Video Container Enhanced Animations */
.video-container {
  position: relative;
  min-height: 300px;
  background: #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Enhanced Desktop Video Animations */
.video-container.video-hiding {
  opacity: 0;
  transform: scale(0.95);
}

.video-container.video-hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.video-container.video-showing {
  opacity: 1;
  transform: scale(1);
}

.video-container.video-loading {
  opacity: 0.7;
  transform: scale(0.98);
}

/* FAQ Question Enhanced Styling */
.faq-question {
  position: relative;
  overflow: visible;
}

/* FAQ Icon Enhanced Animation */
.faq-icon {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Footer */
.footer {
  position: relative;
  background: var(--white);
  color: var(--black);
  padding: 60px 0 30px;
  margin-top: 0;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  height: 120px;
  background-color: var(--white);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
  transform: rotate(180deg);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.footer-main {
  display: flex;
  gap: 60px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.footer-download-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.footer-download-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  max-width: 300px;
}

.footer-download-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.footer-app-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: start;
}

.footer-logo-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center !important;
  gap: 10px;
  background: var(--primary-orange);
  width: 160px !important;
  @media screen and (min-width: 768px) {
    width: 73px !important;
  }

  height: 73px !important;
  border-radius: 17px !important;
  box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);

  box-shadow: 0px -2px 0px 0px rgba(10, 13, 18, 0.05) inset;

  box-shadow: 0px 0px 0px 1px rgba(10, 13, 18, 0.05) inset;

  span {
    width: 41px !important;
    height: 51px !important;
  }
}

.icon-logo {
    width: 48px;
    height: 75px;
    mask: url("./assets/imgs/logohemam.svg") no-repeat center / contain;
    background-color: white;
    display: block;
}

.footer-description {
  font-size: 16px;
  color: var(--black);
  text-align: start;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.social-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
  border: none;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-icon:hover {
  opacity: 0.7;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  padding-top: 0px;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 768px) {
    padding: 0 20px;
  }
}

.footer-links {
  color: var(--black);
  font-size: 14px;
  margin: 0;
}

.footer-links a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.copyright {
  font-size: 14px;
  color: var(--black);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-cta-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-section {
    padding: 40px 20px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-visual {
    order: 2;
  }

  .hero-content {
    order: 1;
    text-align: right;
    height: 75%;
    padding: 20px 0;
  }

  .hero-checkmark {
    left: -20px;
    bottom: 20%;
  }

  .hero-service-title {
    text-align: right;
  }

  .hero-title {
    text-align: right;
  }

  .hero-text {
    text-align: right;
  }

  .hero-app-buttons {
    justify-content: center;
    margin: 0 auto;
  }

  .section-title {
    font-size: 36px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-right {
    text-align: right;
  }

  .footer-logo-wrapper {
    justify-content: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .social-icons {
    justify-content: flex-end;
  }
}

/* Hide drawer on desktop */
@media (min-width: 768px) {
  .drawer-menu {
    display: none !important;
  }
  .drawer-overlay {
    display: none !important;
  }
}

/* Ensure navigation buttons are visible on desktop */
@media (min-width: 1025px) {
  .nav-links {
    display: flex !important;
    visibility: visible !important;
  }

  .nav-cta-btn {
    display: block !important;
    visibility: visible !important;
  }

  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }

  .nav-logo .icon-logo {
    border-left: none;
    font-size: 48px !important;
  }

  .hero-section {
    padding: 30px 20px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: right;
  }

  .hero-checkmark {
    bottom: 15%;
    left: -15px;
    width: 50px;
    height: 50px;
  }

  .hero-checkmark svg {
    width: 50px;
    height: 50px;
  }
  .hero-service-title {
    display: none;
  }
  .hero-title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .hero-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-app-buttons {
    width: 100%;
  }

  .hero-app-buttons div {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .download-section {
    padding: 60px 0;
  }

  .download-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .download-buttons {
    flex-direction: column;
    width: 100%;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
  }

  .footer-download-buttons {
    align-items: center;
  }

  .footer-download-btn {
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }

  .footer-right {
    text-align: right;
  }

  .footer-logo-wrapper {
    justify-content: center;
  }

  .footer-logo {
    margin: 0 auto;
  }

  .social-icons {
    justify-content: flex-end;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: right;
    gap: 15px;
  }

  .drawer-menu {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-section {
    padding: 20px 15px;
  }

  .hero-checkmark {
    width: 40px;
    height: 40px;
    bottom: 10%;
    left: -10px;
  }
  .footer-main {
    flex-direction: column;
    .footer-download-buttons {
      justify-content: center;
      width: 100%;
    }
  }
  .hero-checkmark svg {
    width: 40px;
    height: 40px;
  }

  .hero-app-buttons {
    width: 100%;
  }

  .hero-app-buttons div {
    width: 100%;
  }

  .section-title {
    font-size: 24px;
  }

  .feature-card,
  .step-card {
    padding: 30px 20px;
  }
  .start {
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 15px;
    .section-title {
      font-size: 28px !important;
    }
  }
  .step-card {
    h3 {
      font-size: 20px;
    }
    p {
      font-size: 16px;
    }
  }
  .testimonial-card {
    padding: 30px 20px;
  }

  .footer-download-btn {
    padding: 12px 15px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Utility Classes */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.text-right {
  text-align: start;
}

.text-center {
  text-align: center;
}

.text-black {
  color: var(--black);
}

.text-white {
  color: var(--white);
}

.bg-black {
  background: var(--black);
}

.p-6 {
  padding: 24px;
}

.px-10 {
  padding-left: 40px;
  padding-right: 40px;
}

.py-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mt-8 {
  margin-top: 32px;
}

.pt-8 {
  padding-top: 32px;
}

.space-y-6 > * + * {
  margin-top: 24px;
}

.text-16px {
  font-size: 16px;
}

.text-12px {
  font-size: 12px;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.block {
  display: block;
}

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.rounded-lg {
  border-radius: 8px;
}

.rounded-full {
  border-radius: 9999px;
}

.px-5 {
  padding-left: 20px;
  padding-right: 20px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.flex-1 {
  flex: 1;
}

.flex-col {
  flex-direction: column;
}

.w-8 {
  width: 32px;
}

.h-8 {
  height: 32px;
}

.w-full {
  width: 100%;
}

.hover\:bg-gray-800:hover {
  background: #1f1f1f;
}

.transition {
  transition: all 0.3s;
}

.text-68px {
  font-size: 68px;
}

.text-2xl {
  font-size: 24px;
}

.border-t {
  border-top: 1px solid;
}

.border-gray-200 {
  border-color: #e5e5e5;
}

.mb-6 {
  margin-bottom: 24px;
}

.bg-orange-primary {
  background: var(--primary-orange);
}

.text-orange-primary {
  color: var(--primary-orange);
}

.hover-bg-orange-dark:hover {
  background: #e6771f;
}

.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
