/* ===== TAKKE WEBSITE STYLES ===== */
/* Brand Colors:
   Primary: #009a4f
   Secondary: #a4ce00
   Accent: #8137c3
   Dark Green: #00583d
   Deep Green: #01764c
*/

/* ===== CSS RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #009a4f;
  --primary-dark: #00583d;
  --primary-deep: #01764c;
  --secondary: #a4ce00;
  --accent: #8137c3;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark: #1a1a2e;
  --gradient-primary: linear-gradient(135deg, #009a4f 0%, #01764c 100%);
  --gradient-hero: linear-gradient(135deg, #009a4f 0%, #00583d 50%, #01764c 100%);
  --gradient-secondary: linear-gradient(135deg, #a4ce00 0%, #009a4f 100%);
  --shadow-sm: 0 2px 8px rgba(0, 154, 79, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 154, 79, 0.15);
  --shadow-lg: 0 10px 40px rgba(0, 154, 79, 0.2);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: #b8e000;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 45px;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  position: relative;
  padding: 5px 0;
}

.navbar.scrolled .nav-link {
  color: var(--dark);
}

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

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

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.navbar.scrolled .btn-outline {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

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

.navbar.scrolled .nav-toggle span {
  background: var(--dark);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(164, 206, 0, 0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(129, 55, 195, 0.1) 0%, transparent 70%);
  animation: pulse 10s ease-in-out infinite reverse;
}

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

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-badge span {
  font-size: 1.2rem;
}

/* Pulse dot for live indicator */
.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-live 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(164, 206, 0, 0.7);
}

@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(164, 206, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(164, 206, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(164, 206, 0, 0); }
}

/* Hero Badges Row - Location + Instagram side by side */
.hero-badges-row {
  display: flex;
  align-items: stretch;
  gap: 15px;
  margin: 20px 0 25px;
  animation: fadeInUp 0.8s ease-out 0.15s both;
  flex-wrap: wrap;
}

/* Nabatieh Location Feature */
.location-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 15px 20px;
  flex: 0 0 auto;
}

.lebanon-map {
  flex-shrink: 0;
  width: 50px;
  height: 75px;
}

.map-svg {
  width: 100%;
  height: 100%;
}

.lebanon-outline {
  animation: map-glow 3s ease-in-out infinite;
}

@keyframes map-glow {
  0%, 100% { fill: rgba(255,255,255,0.08); }
  50% { fill: rgba(255,255,255,0.15); }
}

.nabatieh-highlight {
  animation: region-pulse 2s ease-in-out infinite;
}

@keyframes region-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.pin-pulse {
  animation: pin-beat 1.5s ease-in-out infinite;
}

@keyframes pin-beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.pin-pulse-ring {
  animation: pin-ring 1.5s ease-out infinite;
  transform-origin: center;
}

@keyframes pin-ring {
  0% { r: 8; opacity: 1; }
  100% { r: 20; opacity: 0; }
}

.location-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-city {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.location-soon {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-badges-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 15px 0 20px;
  }
  
  .location-feature {
    padding: 12px 18px;
    gap: 12px;
  }
  
  .lebanon-map {
    width: 50px;
    height: 75px;
  }
  
  .location-city {
    font-size: 1.2rem;
  }
}

/* Instagram CTA in Hero */
.instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.2) 0%, rgba(253, 29, 29, 0.2) 50%, rgba(252, 176, 69, 0.2) 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  padding: 15px 18px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  flex: 0 0 auto;
}

.instagram-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.instagram-cta:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.3) 0%, rgba(253, 29, 29, 0.3) 50%, rgba(252, 176, 69, 0.3) 100%);
  box-shadow: 0 10px 30px rgba(131, 58, 180, 0.3);
}

.instagram-icon-wrapper {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: instagram-glow 2s ease-in-out infinite;
}

@keyframes instagram-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(131, 58, 180, 0.4); }
  50% { box-shadow: 0 0 20px rgba(253, 29, 29, 0.6); }
}

.instagram-icon-wrapper svg {
  width: 26px;
  height: 26px;
  color: white;
}

.instagram-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.instagram-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.instagram-handle {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.instagram-arrow {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  margin-left: 5px;
}

.instagram-cta:hover .instagram-arrow {
  transform: translateX(5px);
  color: #fcb045;
}

@media (max-width: 1024px) {
  .hero-badges-row {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .instagram-cta {
    padding: 10px 14px;
    gap: 10px;
  }
  
  .instagram-icon-wrapper {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  
  .instagram-icon-wrapper svg {
    width: 18px;
    height: 18px;
  }
  
  .instagram-handle {
    font-size: 0.85rem;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title .highlight {
  color: var(--secondary);
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 500px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.store-btn svg {
  width: 28px;
  height: 28px;
}

.store-btn-content {
  text-align: left;
}

.store-btn-content span {
  display: block;
  font-size: 0.7rem;
  opacity: 0.8;
}

.store-btn-content strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

/* Hero Phone Mockup */
.hero-image {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.phone-mockup {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.phone-frame {
  background: var(--dark);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 25px;
  background: var(--dark);
  border-radius: 0 0 15px 15px;
  z-index: 10;
}

.phone-screen {
  background: var(--light-gray);
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9/19;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.phone-screen-placeholder {
  text-align: center;
  color: var(--gray);
  padding: 20px;
}

.phone-screen-placeholder svg {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  opacity: 0.5;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 15px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.floating-element.el-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.floating-element.el-2 {
  bottom: 20%;
  left: -30px;
  animation-delay: 1s;
}

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

.floating-element .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.floating-element .icon.green {
  background: rgba(0, 154, 79, 0.1);
}

.floating-element .icon.yellow {
  background: rgba(164, 206, 0, 0.2);
}

.floating-element .text {
  font-size: 0.85rem;
}

.floating-element .text strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
}

.floating-element .text span {
  color: var(--gray);
  font-size: 0.75rem;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--light-gray);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 154, 79, 0.1);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 154, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
}

.step-card:nth-child(2) .step-icon {
  background: rgba(164, 206, 0, 0.15);
}

.step-card:nth-child(3) .step-icon {
  background: rgba(129, 55, 195, 0.1);
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.step-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Connector Lines */
.steps-grid::before,
.steps-grid::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  z-index: 0;
}

/* ===== PARTNERS SECTION ===== */
.partners {
  padding: 100px 0;
  background: var(--white);
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.partner-logo {
  width: 150px;
  height: 80px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 15px;
}

.partner-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-logo-placeholder {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray);
}

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

.partners-cta p {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.partners-cta p strong {
  color: var(--primary);
}

/* ===== DRIVERS SECTION ===== */
.drivers {
  padding: 100px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.drivers::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(164, 206, 0, 0.1) 0%, transparent 70%);
}

.drivers .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.drivers-content {
  color: var(--white);
}

.drivers-content .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.drivers-content .section-title {
  color: var(--white);
}

.drivers-content .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.drivers-benefits {
  margin-bottom: 35px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: rgba(164, 206, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.benefit-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.benefit-text p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.drivers-image {
  position: relative;
}

.driver-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.driver-card-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 3rem;
}

.driver-card h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.driver-card p {
  color: var(--gray);
  margin-bottom: 25px;
}

.driver-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.stat-item {
  background: var(--light-gray);
  border-radius: var(--radius-md);
  padding: 15px;
}

.stat-item .number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-item .label {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 25px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom .heart {
  color: #e74c3c;
}

/* ===== PAGE HEADERS ===== */
.page-header {
  background: var(--gradient-hero);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(164, 206, 0, 0.1) 0%, transparent 70%);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BENEFITS GRID ===== */
.benefits-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.benefit-card-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 154, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.benefit-card:nth-child(even) .benefit-card-icon {
  background: rgba(164, 206, 0, 0.15);
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.benefit-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: var(--white);
}

.cta-box {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(164, 206, 0, 0.15) 0%, transparent 70%);
}

.cta-box .container {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 100px 0;
  background: var(--white);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.process-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.process-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 60px;
  width: 3px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  border-radius: 3px;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.process-content {
  flex: 1;
  padding-top: 5px;
}

.process-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.process-content p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== REQUIREMENTS SECTION ===== */
.requirements-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.requirement-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.requirement-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.requirement-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 154, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.requirement-item span {
  font-weight: 600;
  color: var(--dark);
}

/* ===== ABOUT PAGE ===== */
.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-content p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.about-image {
  position: relative;
}

.about-image-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
}

/* Mission Cards */
.mission-section {
  padding: 100px 0;
  background: var(--light-gray);
}

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

.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
}

.mission-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.mission-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Team Section */
.team-section {
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.team-photo {
  width: 120px;
  height: 120px;
  background: var(--light-gray);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

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

.team-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.team-card .role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
  }

  .hero-subtitle {
    margin: 0 auto 35px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .phone-mockup {
    max-width: 280px;
  }

  .floating-element {
    display: none;
  }

  .drivers .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .drivers-content {
    order: 1;
  }

  .drivers-image {
    order: 2;
  }

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

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

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

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

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

  .nav-menu .nav-link {
    color: var(--dark);
    font-size: 1.2rem;
  }

  .nav-menu .btn-outline {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

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

  .partners-logos {
    gap: 30px;
  }

  .partner-logo {
    width: 120px;
    height: 65px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto 25px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .cta-box {
    padding: 40px 25px;
  }

  .process-item {
    flex-direction: column;
    text-align: center;
  }

  .process-item:not(:last-child)::before {
    display: none;
  }

  .process-number {
    margin: 0 auto;
  }
}

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

  .section-title {
    font-size: 1.8rem;
  }

  .phone-mockup {
    max-width: 240px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* ===== ANIMATIONS ON SCROLL ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered animations */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
