@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #7f9cf5;
  --secondary: #a78bfa;
  --dark-bg: #181c2a;
  --card-bg: #23263a;
  --text: #f5f6fa;
  --text-muted: #d1d5db;
  --text-light: #e0e7ff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--dark-bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: auto; /* Restore default cursor */
}

/* ======= Preloader ======= */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.logo-container {
  position: relative;
}

.logo.animated {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.logo-img-preloader {
  height: 70px;
  width: auto;
  filter: brightness(1.2);
  animation: pulse 2s infinite;
}

/* ======= Particles ======= */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ======= Hero Section ======= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 60px; /* Add padding to account for navbar height */
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('hero-bg.jpg') center/cover no-repeat;
  filter: blur(6px) brightness(0.5);
  z-index: 2;
}

/* ======= Navbar ======= */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(24, 28, 42, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 20;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ======= Hero Content ======= */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 6rem;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
}

/* Glitch Text Effect */
.glitch {
  position: relative;
  display: inline-block;
  animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--secondary);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 var(--primary);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip: rect(18px, 9999px, 75px, 0); transform: skew(0.58deg); }
  5% { clip: rect(97px, 9999px, 72px, 0); transform: skew(0.12deg); }
  10% { clip: rect(95px, 9999px, 1px, 0); transform: skew(0.1deg); }
  15% { clip: rect(5px, 9999px, 10px, 0); transform: skew(0.05deg); }
  20% { clip: rect(89px, 9999px, 73px, 0); transform: skew(0.4deg); }
  25% { clip: rect(18px, 9999px, 20px, 0); transform: skew(0.37deg); }
  30% { clip: rect(28px, 9999px, 19px, 0); transform: skew(0.18deg); }
  35% { clip: rect(79px, 9999px, 43px, 0); transform: skew(0.59deg); }
  40% { clip: rect(80px, 9999px, 13px, 0); transform: skew(0.65deg); }
  45% { clip: rect(75px, 9999px, 25px, 0); transform: skew(0.39deg); }
  50% { clip: rect(80px, 9999px, 29px, 0); transform: skew(0.7deg); }
  55% { clip: rect(74px, 9999px, 25px, 0); transform: skew(0.58deg); }
  60% { clip: rect(35px, 9999px, 4px, 0); transform: skew(0.53deg); }
  65% { clip: rect(44px, 9999px, 30px, 0); transform: skew(0.18deg); }
  70% { clip: rect(5px, 9999px, 33px, 0); transform: skew(0.32deg); }
  75% { clip: rect(82px, 9999px, 99px, 0); transform: skew(0.6deg); }
  80% { clip: rect(72px, 9999px, 39px, 0); transform: skew(0.29deg); }
  85% { clip: rect(21px, 9999px, 17px, 0); transform: skew(0.02deg); }
  90% { clip: rect(69px, 9999px, 32px, 0); transform: skew(0.25deg); }
  95% { clip: rect(76px, 9999px, 92px, 0); transform: skew(0.42deg); }
  100% { clip: rect(32px, 9999px, 49px, 0); transform: skew(0.08deg); }
}

@keyframes glitch-anim2 {
  0% { clip: rect(13px, 9999px, 76px, 0); transform: skew(0.79deg); }
  5% { clip: rect(64px, 9999px, 98px, 0); transform: skew(0.67deg); }
  10% { clip: rect(59px, 9999px, 76px, 0); transform: skew(0.09deg); }
  15% { clip: rect(2px, 9999px, 46px, 0); transform: skew(0.06deg); }
  20% { clip: rect(44px, 9999px, 46px, 0); transform: skew(0.47deg); }
  25% { clip: rect(59px, 9999px, 15px, 0); transform: skew(0.05deg); }
  30% { clip: rect(93px, 9999px, 84px, 0); transform: skew(0.02deg); }
  35% { clip: rect(37px, 9999px, 21px, 0); transform: skew(0.48deg); }
  40% { clip: rect(9px, 9999px, 38px, 0); transform: skew(0.03deg); }
  45% { clip: rect(79px, 9999px, 94px, 0); transform: skew(0.8deg); }
  50% { clip: rect(47px, 9999px, 59px, 0); transform: skew(0.31deg); }
  55% { clip: rect(5px, 9999px, 53px, 0); transform: skew(0.2deg); }
  60% { clip: rect(35px, 9999px, 64px, 0); transform: skew(0.7deg); }
  65% { clip: rect(74px, 9999px, 97px, 0); transform: skew(0.37deg); }
  70% { clip: rect(82px, 9999px, 88px, 0); transform: skew(0.18deg); }
  75% { clip: rect(22px, 9999px, 11px, 0); transform: skew(0.66deg); }
  80% { clip: rect(47px, 9999px, 4px, 0); transform: skew(0.01deg); }
  85% { clip: rect(54px, 9999px, 35px, 0); transform: skew(0.02deg); }
  90% { clip: rect(46px, 9999px, 65px, 0); transform: skew(0.55deg); }
  95% { clip: rect(33px, 9999px, 61px, 0); transform: skew(0.17deg); }
  100% { clip: rect(86px, 9999px, 94px, 0); transform: skew(0.99deg); }
}

@keyframes glitch-skew {
  0% { transform: skew(0deg); }
  10% { transform: skew(0deg); }
  20% { transform: skew(0deg); }
  30% { transform: skew(0deg); }
  40% { transform: skew(0deg); }
  50% { transform: skew(-0.5deg); }
  60% { transform: skew(0deg); }
  70% { transform: skew(0.2deg); }
  80% { transform: skew(-0.4deg); }
  90% { transform: skew(0.4deg); }
  100% { transform: skew(0deg); }
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Enhanced CTA Button */
.cta-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 16px 0 rgba(127,156,245,0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px 0 rgba(127,156,245,0.3);
}

.cta-btn:hover::before {
  opacity: 1;
}

.btn-arrow {
  stroke: white;
  stroke-width: 2;
  width: 18px;
  height: 18px;
  fill: none;
  transition: transform 0.3s ease;
}

.cta-btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Mouse Scroll Indicator */
.mouse-scroll-cont {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.8;
  z-index: 10;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouse-wheel 1.5s infinite;
}

@keyframes mouse-wheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ======= Fleety Showcase ======= */
.fleety-showcase {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: var(--card-bg);
  border-radius: 2rem;
  margin: -4rem auto 3rem auto;
  max-width: 1200px;
  box-shadow: 0 4px 32px 0 rgba(30,41,59,0.24);
  padding: 3rem 2rem;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.fleety-showcase::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(127,156,245,0.15) 0%, rgba(167,139,250,0) 70%);
  z-index: -1;
  border-radius: 50%;
}

.fleety-showcase::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(167,139,250,0.1) 0%, rgba(127,156,245,0) 70%);
  z-index: -1;
  border-radius: 50%;
}

.fleety-info {
  flex: 1 1 400px;
  min-width: 300px;
  position: relative;
  padding-right: 1rem;
}

.fleety-info h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  position: relative;
}

.fleety-info h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.fleety-info p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(127,156,245,0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.appstore-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary);
  z-index: -1;
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right;
}

.appstore-btn:hover {
  transform: scale(1.05);
}

.appstore-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.icon svg {
  fill: white;
}

.fleety-image {
  flex: 1 1 400px;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.phone-mockup {
  position: relative;
  width: 300px;
  padding: 15px;
  perspective: 1000px;
}

.phone-mockup img {
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.phone-mockup:hover img {
  transform: rotateY(-10deg) rotateX(5deg);
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.4);
}

/* ======= Why Choose Us ======= */
.why-choose-us {
  position: relative;
  max-width: 1000px;
  margin: 5rem auto 5rem auto;
  text-align: center;
  padding: 4rem 1rem;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('hero-bg.jpg') center/cover no-repeat;
  opacity: 0.1;
  filter: blur(8px);
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 2;
}

.why-choose-us h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.why-choose-us h2::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  bottom: -10px;
  left: 25%;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feature {
  background: var(--card-bg);
  border-radius: 1.2rem;
  padding: 2.5rem 1.5rem;
  min-width: 220px;
  max-width: 300px;
  box-shadow: 0 2px 12px 0 rgba(30,41,59,0.18);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(127,156,245,0.1) 0%, rgba(167,139,250,0.1) 100%);
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px 0 rgba(30,41,59,0.25);
}

.feature:hover::before {
  opacity: 1;
}

.feature-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(127,156,245,0.1);
  margin-bottom: 1.2rem;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
}

.feature h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* ======= CTA Section ======= */
.cta-section {
  background: linear-gradient(135deg, rgba(35,38,58,0.95) 0%, rgba(24,28,42,0.95) 100%);
  padding: 5rem 1rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('hero-bg.jpg') center/cover no-repeat;
  opacity: 0.1;
  filter: blur(5px);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ======= Form Styles (for support page) ======= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form label {
  font-weight: 500;
  color: var(--text-light);
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(127,156,245,0.3);
  background: rgba(35,38,58,0.6);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(127,156,245,0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ======= Footer ======= */
footer {
  background: var(--dark-bg);
  padding: 3rem 0 2rem 0;
  text-align: center;
  color: var(--primary);
  font-size: 1rem;
  position: relative;
  z-index: 5;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  color: var(--secondary);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover::after {
  width: 100%;
}

/* ======= Privacy Policy Page Styles ======= */
.privacy-policy h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.privacy-policy h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin: 2rem 0 1rem 0;
}

.privacy-policy p,
.privacy-policy li {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy-policy ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* ======= Privacy Policy Styles ======= */
.policy-section {
  margin: 3rem 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.section-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(127,156,245,0.1);
  margin-bottom: 1.5rem;
}

.section-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary);
  stroke-width: 1.5;
  fill: none;
}

.effective-date {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(127,156,245,0.2);
}

.effective-date p {
  color: var(--secondary);
  font-style: italic;
}

.privacy-policy a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.privacy-policy a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

.privacy-policy a:hover {
  color: var(--secondary);
}

.privacy-policy a:hover::after {
  width: 100%;
}

/* ======= Responsive Styles ======= */
@media (max-width: 900px) {
  .fleety-showcase {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  
  .features {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(35,38,58,0.95);
    backdrop-filter: blur(10px);
    transition: right 0.5s ease;
    z-index: 1001; /* Above navbar */
    padding-top: 4rem;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .feature {
    width: 100%;
    max-width: 100%;
  }
  
  .navbar {
    padding: 1rem 2vw;
  }
  
  .logo-img {
    height: 34px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .services-section {
    padding: 4rem 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .about-section {
    padding: 4rem 1.5rem;
  }
  
  .about-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-image {
    order: -1; /* Move image above text on mobile */
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-section h2,
  .team-section h3 {
    font-size: 2rem;
  }
  
  .about-text .lead {
    font-size: 1.3rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 1.5rem 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.1rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .fleety-info h2 {
    font-size: 1.5rem;
  }
  
  .fleety-info p {
    font-size: 1rem;
  }
  
  .why-choose-us h2 {
    font-size: 1.8rem;
  }
  
  .about-section h2,
  .services-section h2,
  .team-section h3 {
    font-size: 1.8rem;
  }
  
  .about-text .lead {
    font-size: 1.2rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .about-section, 
  .services-section {
    padding: 3rem 1rem;
    margin: 2rem 0;
  }
  
  .member-photo {
    width: 160px;
    height: 160px;
  }
  
  body {
    cursor: auto; /* Restore default cursor on mobile */
  }
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(35, 38, 58, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  display: block;
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text);
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(127, 156, 245, 0.1);
  color: var(--primary);
}

/* Phone Carousel Styles */
.phone-carousel {
  position: relative;
  margin: 0 auto;
  max-width: 360px;
  width: 100%;
}

.carousel-container {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  background: #23263a;
  position: relative;
  width: 100%;
}

.carousel-track {
  position: relative;
  height: 640px;
  width: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.phone-mockup {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  padding: 12px;
}

.app-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-muted);
  margin: 0 6px;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.app-badges {
  display: flex;
  margin: 20px 0;
  gap: 15px;
}

.app-store-badge {
  display: inline-block;
  transition: transform 0.3s ease;
}

.app-store-badge:hover {
  transform: scale(1.05);
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.feature-tag {
  background: rgba(127, 156, 245, 0.1);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: rgba(127, 156, 245, 0.2);
  transform: translateY(-2px);
}

/* About Section Styles */
.about-section {
  padding: 5rem 2rem;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(127,156,245,0.08) 0%, rgba(167,139,250,0) 70%);
  z-index: 1;
  border-radius: 50%;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(167,139,250,0.05) 0%, rgba(127,156,245,0) 70%);
  z-index: 1;
  border-radius: 50%;
}

.about-section h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  text-align: center;
}

.about-section h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.about-text {
  flex: 1 1 500px;
}

.about-text .lead {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.about-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.team-image {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: transform 0.5s ease;
}

.team-image:hover {
  transform: scale(1.02);
}

.team-section {
  margin-top: 5rem;
}

.team-section h3 {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.team-section h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

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

.member-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  position: relative;
  background: var(--card-bg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.member-photo:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.member-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(127,156,245,0.2) 0%, rgba(167,139,250,0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.member-photo:hover::before {
  opacity: 1;
}

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

.team-member h4 {
  color: var(--text);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.member-title {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
}

/* Services Section Styles */
.services-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--card-bg) 100%);
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(127,156,245,0.05) 0%, rgba(127,156,245,0) 100%);
  z-index: 1;
}

.services-section h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
  z-index: 2;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.6;
  z-index: 2;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(35, 38, 58, 0.6);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(127, 156, 245, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: rgba(127, 156, 245, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(127, 156, 245, 0.2);
  transform: scale(1.1);
}

.service-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(127, 156, 245, 0.1);
  padding-top: 1.2rem;
}

.service-features li {
  margin-bottom: 0.7rem;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

@media (max-width: 992px) {
  .phone-carousel {
    max-width: 320px;
  }
  
  .carousel-track {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .fleety-showcase {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  
  .fleety-info {
    padding-right: 0;
    text-align: center;
  }
  
  .fleety-info h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .app-features {
    justify-content: center;
  }
  
  .phone-carousel {
    max-width: 280px;
  }
  
  .carousel-track {
    height: 540px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .services-section {
    padding: 4rem 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .about-section {
    padding: 4rem 1.5rem;
  }
  
  .about-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-image {
    order: -1; /* Move image above text on mobile */
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-section h2,
  .team-section h3 {
    font-size: 2rem;
  }
  
  .about-text .lead {
    font-size: 1.3rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .phone-carousel {
    max-width: 240px;
  }
  
  .carousel-track {
    height: 480px;
  }
} 