:root {
   --primary: #3ac98c;
   --primary-dark: #2ea370;
   --secondary: #1f2933;
   --accent: #ffb347;
   --text-dark: #1f2933;
   --text-muted: #616e7c;
   --bg-light: #f5f7fa;
   --glass-bg: rgba(255, 255, 255, 0.85);
   --glass-border: rgba(255, 255, 255, 0.5);
}

body {
   font-family: 'Outfit', sans-serif;
   color: var(--text-dark);
   overflow-x: hidden;
   background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-weight: 700;
   letter-spacing: -0.02em;
}

a {
   text-decoration: none;
}

/* Utilities */
.text-primary-custom {
   color: var(--primary) !important;
}

.bg-primary-custom {
   background-color: var(--primary) !important;
}

.btn-primary {
   background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
   border: none;
   font-weight: 700;
   padding: 0.8rem 2rem;
   border-radius: 50px;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(58, 201, 140, 0.4);
}

.btn-primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(58, 201, 140, 0.5);
   background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-outline-secondary {
   color: var(--text-dark);
   border: 2px solid #cbd2d9;
   font-weight: 600;
   padding: 0.7rem 2rem;
   border-radius: 50px;
   background: transparent;
   transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
   background-color: var(--text-dark);
   color: #fff;
   border-color: var(--text-dark);
   transform: translateY(-2px);
}

section {
   padding: 100px 0;
   position: relative;
}

/* Navbar */
.navbar {
   padding: 1.5rem 0;
   transition: all 0.3s ease;
   background-color: transparent;
}

.navbar-brand {
   font-weight: 800;
   font-size: 1.8rem;
   color: var(--text-dark);
}

.navbar-brand span {
   color: var(--primary);
}

.nav-link {
   font-weight: 600;
   color: var(--text-dark);
   margin-left: 1.5rem;
   position: relative;
}

.nav-link::after {
   content: '';
   position: absolute;
   width: 0;
   height: 2px;
   bottom: 0;
   left: 0;
   background-color: var(--primary);
   transition: width 0.3s ease;
}

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

.nav-link:hover {
   color: var(--primary);
}

.navbar-scrolled {
   background-color: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
   padding: 1rem 0;
}

/* Hero */
#hero {
   padding-top: 160px;
   padding-bottom: 100px;
   background: radial-gradient(circle at top right, rgba(58, 201, 140, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
   overflow: hidden;
}

.hero-blob {
   position: absolute;
   z-index: -1;
   filter: blur(80px);
   opacity: 0.6;
}

.blob-1 {
   top: -10%;
   right: -10%;
   width: 600px;
   height: 600px;
   background-color: rgba(58, 201, 140, 0.2);
   border-radius: 50%;
   animation: float 10s ease-in-out infinite;
}

.blob-2 {
   bottom: 10%;
   left: -5%;
   width: 400px;
   height: 400px;
   background-color: rgba(255, 179, 71, 0.15);
   border-radius: 50%;
   animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
   0% {
      transform: translate(0, 0);
   }

   50% {
      transform: translate(20px, 40px);
   }

   100% {
      transform: translate(0, 0);
   }
}

.hero-img-container {
   position: relative;
   z-index: 1;
   min-height: 380px;
}

.hero-img {
   border-radius: 30px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
   transform: rotate(2deg);
   transition: transform 0.5s ease;
   width: 100%;
   height: auto;
   object-fit: cover;
}

.hero-img:hover {
   transform: rotate(0deg) scale(1.02);
}

.hero-visual {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 20px;
}

.glass-card {
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
   border: 1px solid var(--glass-border);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.mock-card {
   width: 420px;
   border-radius: 28px;
   padding: 24px;
   backdrop-filter: blur(12px);
}

.mock-header {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 12px;
}

.mock-progress .progress-line {
   width: 100%;
   height: 8px;
   background: rgba(58, 201, 140, 0.15);
   border-radius: 999px;
   overflow: hidden;
   margin-bottom: 10px;
}

.mock-progress .progress-line span {
   display: block;
   height: 100%;
   background: linear-gradient(90deg, var(--primary), var(--primary-dark));
   border-radius: 999px;
}

.mock-rider {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 14px 0;
   border-top: 1px solid rgba(0, 0, 0, 0.05);
   border-bottom: 1px solid rgba(0, 0, 0, 0.05);
   margin: 12px 0;
}

.avatar {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: rgba(58, 201, 140, 0.12);
   color: var(--primary);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   letter-spacing: -0.02em;
}

.status-chip {
   padding: 6px 12px;
   border-radius: 999px;
   font-weight: 700;
   font-size: 0.85rem;
}

.status-chip.success {
   background: rgba(58, 201, 140, 0.14);
   color: var(--primary);
}

.mock-footer {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
}

.icon-circle.small {
   width: 40px;
   height: 40px;
   font-size: 1rem;
}

.hero-badge {
   position: absolute;
   background: rgba(255, 255, 255, 0.9);
   backdrop-filter: blur(10px);
   padding: 15px 25px;
   border-radius: 20px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   display: flex;
   align-items: center;
   gap: 15px;
   z-index: 2;
   animation: float 6s ease-in-out infinite;
}

.badge-1 {
   top: 10%;
   left: -30px;
}

.badge-2 {
   bottom: 15%;
   right: -20px;
   animation-delay: 1s;
}

.icon-circle {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background: var(--primary);
   color: white;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
}

/* Cards */
.feature-card {
   background: #fff;
   padding: 2.5rem;
   border-radius: 24px;
   border: 1px solid rgba(0, 0, 0, 0.05);
   height: 100%;
   transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   position: relative;
   overflow: hidden;
   z-index: 1;
}

.feature-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 0;
   background: linear-gradient(180deg, rgba(58, 201, 140, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
   transition: height 0.4s ease;
   z-index: -1;
}

.feature-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
   border-color: transparent;
}

.feature-card:hover::before {
   height: 100%;
}

.icon-box {
   width: 70px;
   height: 70px;
   background-color: rgba(58, 201, 140, 0.1);
   color: var(--primary);
   border-radius: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.8rem;
   margin-bottom: 1.5rem;
   transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
   background-color: var(--primary);
   color: white;
   transform: scale(1.1) rotate(5deg);
}

/* Image Cards */
.image-card {
   border-radius: 24px;
   overflow: hidden;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
   height: 100%;
   position: relative;
   group: hover;
}

.image-card img {
   width: 100%;
   height: 300px;
   object-fit: cover;
   transition: transform 0.6s ease;
}

.image-card:hover img {
   transform: scale(1.1);
}

.image-card-body {
   padding: 2rem;
   background: #fff;
   position: relative;
   z-index: 2;
}

/* Section Titles */
.section-title {
   margin-bottom: 4rem;
   text-align: center;
}

.section-title h2 {
   font-size: 2.8rem;
   margin-bottom: 1rem;
   background: linear-gradient(135deg, var(--text-dark) 0%, var(--text-muted) 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.section-title p {
   color: var(--text-muted);
   font-size: 1.2rem;
   max-width: 600px;
   margin: 0 auto;
}

/* Waitlist */
#waitlist {
   background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
}

.waitlist-card {
   background: rgba(255, 255, 255, 0.9);
   backdrop-filter: blur(20px);
   padding: 4rem;
   border-radius: 30px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-control,
.form-select {
   padding: 0.8rem 1.2rem;
   border-radius: 12px;
   border: 2px solid #e4e7eb;
   font-size: 1rem;
   transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
   border-color: var(--primary);
   box-shadow: 0 0 0 4px rgba(58, 201, 140, 0.1);
}

/* Interest Tabs */
.nav-tabs {
   border-bottom: none;
   margin-bottom: 2rem;
   gap: 1rem;
   justify-content: center;
}

.nav-tabs .nav-link {
   border: 2px solid #e4e7eb;
   border-radius: 50px;
   color: var(--text-muted);
   font-weight: 600;
   padding: 0.8rem 2rem;
   margin: 0;
   transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
   color: #fff;
   background-color: var(--primary);
   border-color: var(--primary);
   box-shadow: 0 4px 15px rgba(58, 201, 140, 0.3);
}

.nav-tabs .nav-link:hover:not(.active) {
   border-color: var(--primary);
   color: var(--primary);
}

/* FAQ */
.accordion-item {
   border: none;
   margin-bottom: 1.5rem;
   border-radius: 16px !important;
   overflow: hidden;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
   background: #fff;
}

.accordion-button {
   font-weight: 700;
   padding: 1.5rem;
   background-color: #fff;
   font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
   color: var(--primary);
   background-color: rgba(58, 201, 140, 0.05);
   box-shadow: none;
}

.accordion-button:focus {
   box-shadow: none;
}

/* Footer */
footer {
   background-color: #1f2933;
   padding: 4rem 0;
   color: #9aa5b1;
}

footer a {
   color: #9aa5b1;
   margin-left: 2rem;
   transition: color 0.3s ease;
}

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