/**
 * Public Homepage Stylesheet
 * File: assets/css/public.css
 */

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #2d3748;
}

/* ============================================
   Hero Section
   ============================================ */
/* =========================
   HERO SECTION STYLES
   ========================= */

/* Hero Section Container */
.hero-section {
  padding-top: 150px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  margin-right: 0;
  align-items: center;
  padding-left: 60px;
}

/* Left Section */
.hero-left {
  padding: 80px 0;
  z-index: 10;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 500px;
}

.hero-title {
  font-size: 50px;
  font-weight: 600;
  color: rgba(252, 252, 249, 1);
  margin: 0 0 24px 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 32px 0;
  line-height: 1.5;
  font-weight: 400;
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

/* Button */
.hero-button {
  display: inline-block;
  padding: 12px 32px;
  background: rgb(252, 252, 104);
  color: rgb(13, 32, 34);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 550;
  font-size: 16px;
  border: 2px solid rgba(252, 252, 249, 1);
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-button:hover {
  background: rgba(29, 116, 128, 1);
  color: rgba(252, 252, 249, 1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
              0 4px 6px -2px rgba(0, 0, 0, 0.02);
  transform: translateY(-2px);
}

.hero-button:active {
  background: rgba(26, 104, 115, 1);
  transform: translateY(0);
}

.hero-button:focus-visible {
  outline: 2px solid rgba(33, 128, 141, 1);
  outline-offset: 2px;
}

/* Right Section */
.hero-right {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================
   RESPONSIVE STYLES
   ========================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero-section {
    min-height: 550px;
  }

  .hero-left {
    padding: 32px 24px;
  }

  .hero-content {
    max-width: 450px;
  }

  .hero-title {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-button {
    padding: 10px 24px;
    font-size: 14px;
  }

  .hero-image {
    max-width: 90%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
    padding: 32px 20px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0;
  }

  .hero-left {
    padding: 24px 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-button {
    width: 100%;
    padding: 10px 24px;
    font-size: 14px;
    text-align: center;
  }

  .hero-right {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-section {
    min-height: 450px;
    padding: 24px 16px;
  }

  .hero-left {
    padding: 20px 0;
  }

  .hero-title {
    text-align: center;
    font-size: 35px;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
  }

  .hero-button {
    padding: 10px 20px;
    font-size: 16px;
  }
}

/* Extra Small */
@media (max-width: 360px) {
  .hero-section {
    min-height: 400px;
    padding: 20px 12px;
  }

  .hero-left {
    padding: 16px 0;
  }

  .hero-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 11px;
    margin-bottom: 16px;
  }

  .hero-button {
    padding: 8px 16px;
    font-size: 11px;
  }
}


/* ============================================
   Vehicles Section
   ============================================ */
.vehicles-section {
    background: #f7f7fb;
    padding: 50px 20px;
    padding-bottom: 0px;
}

.vehicles-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.vehicles-header {
    text-align: center;
    margin-bottom: 60px;
}

.vehicles-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.vehicles-header p {
    font-size: 18px;
    color: #191e27;
    margin: 0;
}

/* Each vehicle row */
.vehicle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.vehicle-row:last-child {
    margin-bottom: 0;
}

.vehicle-row.vehicle-row--reverse {
    flex-direction: row-reverse;
}

/* Text column */
.vehicle-text {
    flex: 1;
}

.vehicle-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.vehicle-text p {
    font-size: 16px;
    color: #323a45;
    margin-bottom: 16px;
}

.vehicle-text ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.vehicle-text ul li {
    font-size: 15px;
    color: #323a45;
    margin-bottom: 8px;
}

/* Image column */
.vehicle-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.vehicle-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .vehicle-row,
    .vehicle-row.vehicle-row--reverse {
        flex-direction: column;
    }

    .vehicles-section {
        padding: 60px 16px;
    }

    .vehicles-header {
        margin-bottom: 40px;
    }

    .vehicles-header h2 {
        font-size: 32px;
    }

    .vehicles-header p {
        font-size: 16px;
    }

    .vehicle-text h3 {
        font-size: 24px;
    }

    .vehicle-text p,
    .vehicle-text ul li {
        font-size: 14px;
    }
}


/* ============================================
   CTA styling
   ============================================ */

/* Modern Booking Process CTA */
.booking-process-modern {
    position: relative;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    padding: 100px 20px;
    overflow: hidden;
}

/* Animated background overlay */
.process-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Headline */
.process-headline {
    text-align: center;
    margin-bottom: 70px;
}

.headline-accent {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.15);
    padding: 8px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
}

.process-headline h2 {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin: 20px 0 0 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Animated Flow Path */
.flow-path {
    position: relative;
    width: 100%;
    height: 60px;
    margin-bottom: 40px;
    display: none; /* Show only on desktop */
}

.path-line {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Modern Step Card */
.modern-step {
    position: relative;
}

.step-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.step-card:hover::before {
    opacity: 1;
}

/* Step Badge */
.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

/* Icon Circle */
.step-visual {
    margin-bottom: 24px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255,255,255,0);
    }
}

/* Step Text */
.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
}

.step-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.5;
}

/* Bottom CTA */
.process-cta-wrapper {
    text-align: center;
}

.cta-content-box {
    display: inline-block;
}

.cta-subtext {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 20px 0;
    font-weight: 500;
}

.modern-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: white;
    color: #6366f1;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.modern-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    transition: left 0.5s ease;
}

.modern-cta-btn:hover::before {
    left: 100%;
}

.modern-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.modern-cta-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.modern-cta-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive: Desktop large */
@media (min-width: 1025px) {
    .flow-path {
        display: block;
    }
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .booking-process-modern {
        padding: 80px 20px;
    }

    .process-headline h2 {
        font-size: 48px;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .icon-circle svg {
        width: 44px;
        height: 44px;
    }

    .step-card h3 {
        font-size: 20px;
    }

    .step-card p {
        font-size: 14px;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .booking-process-modern {
        padding: 60px 20px;
    }

    .process-headline {
        margin-bottom: 50px;
    }

    .process-headline h2 {
        font-size: 36px;
    }

    .headline-accent {
        font-size: 12px;
        padding: 6px 18px;
        letter-spacing: 2px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .step-card {
        padding: 30px 24px;
    }

    .step-badge {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .icon-circle svg {
        width: 40px;
        height: 40px;
    }

    .modern-cta-btn {
        width: 100%;
        max-width: 400px;
        padding: 16px 32px;
        font-size: 16px;
        justify-content: center;
    }

    .cta-subtext {
        font-size: 13px;
    }
}

/* Responsive: Small Mobile */
@media (max-width: 480px) {
    .process-headline h2 {
        font-size: 28px;
    }

    .step-card h3 {
        font-size: 19px;
    }

    .step-card p {
        font-size: 13px;
    }

    .modern-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}




/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 80px 20px;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2d3748;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3748;
}

.feature-card p {
    color: #718096;
    font-size: 16px;
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
    background: #f7fafc;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    color: #718096;
    font-size: 16px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #2d3748;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer a {
    color: #667eea;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}