/* --- GLOBAL VARIABLES --- */
:root {
  --orange: #F97316;
  --orange-hover: #EA580C;
  --black: #000000;
  --bg-gray: #F9FAFB; /* Modern Startup Gray */
  --white: #FFFFFF;
  --text-main: #111827;
  --text-muted: #4B5563;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, sans-serif;
}

body {
  background-color: var(--bg-gray);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
}

/* --- NAVIGATION --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 35px;
  height: 35px;
  background-color: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
}

.btn-header {
  background-color: var(--orange);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.btn-header:hover {
  background-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* --- HERO SECTION --- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 100px 8%;
  align-items: center;
  gap: 60px;
  background-color: var(--bg-gray);
}

.tagline {
  color: #d1b5a5;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  display: block;
}

h1 {
  font-size: 80px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3px;
  margin-bottom: 30px;
}

.h1-relax {
  color: var(--orange);
}

.hero-description {
  color: var(--text-muted);
  font-size: 19px;
  margin-bottom: 40px;
  max-width: 500px;
}

.cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.btn-main {
  background-color: var(--orange);
  color: white;
  padding: 18px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--black);
  padding: 18px 35px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #E5E7EB;
  transition: var(--transition);
}

.btn-main:hover { background-color: var(--orange-hover); transform: scale(1.02); }
.btn-secondary:hover { background-color: #f3f4f6; }

/* --- HERO IMAGE & FLOATING CARD --- */
.hero-right {
  position: relative;
}

.main-hero-image {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.floating-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.5);
}

/* --- SERVICES (BENTO GRID) --- */
.services-section {
  padding: 100px 8%;
  background-color: var(--bg-gray);
}

.sub-title {
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.main-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 60px;
  letter-spacing: -2px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 400px 350px;
  gap: 30px;
  grid-template-areas: 
    "parcel food"
    "business business";
}

.grid-item {
  position: relative;
  border-radius: 32px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: white;
  transition: var(--transition);
}

.grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.large-card { grid-area: parcel; }
.small-card { grid-area: food; }
.wide-card { grid-area: business; }

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.label-orange {
  background-color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  width: fit-content;
  margin-bottom: 20px;
}

.grid-item h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.grid-item p {
  font-size: 17px;
  opacity: 0.85;
  max-width: 500px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  h1 { font-size: 60px; }
  .main-title { font-size: 48px; }
}

@media (max-width: 900px) {
  header { padding: 15px 5%; }
  .nav-links { display: none; }
  .hero { 
    grid-template-columns: 1fr; 
    text-align: center; 
    padding: 60px 5%;
  }
  .hero-description { margin: 0 auto 40px; }
  .cta-group { justify-content: center; }
  .floating-card { left: 50%; transform: translateX(-50%); bottom: 20px; }
  
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "parcel" "food" "business";
  }
  .grid-item { height: 400px; }
}
.divider-fade {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.05), transparent);
  margin: 10px 0;
}

/* --- PROCESS SECTION --- */
.process-section {
  padding: 100px 8%;
  background-color: var(--white); /* White background to stand out from the gray sections */
  text-align: center;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.steps-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: 60px auto;
  gap: 40px;
}

/* The Connector Line */
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 40px; /* Aligns with the center of the circles */
  left: 10%;
  right: 10%;
  height: 1px;
  background-color: #E5E7EB;
  z-index: 1;
}

.step {
  flex: 1;
  position: relative;
  z-index: 2; /* Sits above the connector line */
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 30px;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

.step h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
}

.step p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 250px;
  margin: 0 auto;
}

.process-cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  
  .steps-wrapper::before {
    display: none; /* Hide the horizontal line on mobile */
  }
  
  .step p {
    max-width: 100%;
  }
}

/* --- REVIEWS SECTION --- */
.reviews-section {
  padding: 100px 8%;
  background-color: var(--bg-gray); /* Light gray background */
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.review-card {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.quote-icon {
  color: #FDBA74; /* Soft orange for the quotes */
  font-size: 60px;
  font-family: serif;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 900;
}

.review-text {
  font-size: 17px;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 40px;
  font-style: italic; /* Optional, matching the screenshot style */
}

.reviewer-name {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 4px;
}

.reviewer-title {
  font-size: 14px;
  color: var(--text-muted);
}

/* Mobile Tweak */
@media (max-width: 768px) {
  .review-card {
    padding: 30px;
  }
}

/* --- CTA BANNER --- */
.cta-section {
  padding: 100px 8%;
  background-color: var(--bg-gray);
}

.cta-banner {
  display: flex;
  background-color: var(--orange);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.cta-left {
  flex: 1.5;
  padding: 80px;
  color: white;
}

.cta-left h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.1;
}

.cta-left p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
}

.btn-white {
  background-color: white;
  color: var(--orange);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.cta-right {
  flex: 1;
  background-color: #1A1A1A; /* Dark side of the banner */
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.stat-item h4 {
  color: var(--orange);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-item p {
  color: #9CA3AF;
  font-size: 14px;
}

/* --- FOOTER STYLES --- */
.main-footer {
  background-color: #111111;
  color: white;
  padding: 100px 8% 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 80px;
}

.footer-brand p {
  color: #9CA3AF;
  margin-top: 25px;
  max-width: 350px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.footer-column h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #F3F4F6;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: #9CA3AF;
  text-decoration: none;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--orange);
}

.contact-info span {
  color: var(--orange);
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .cta-banner { flex-direction: column; }
  .cta-left, .cta-right { padding: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 50px; }
  .cta-left h2 { font-size: 36px; }
}

/* --- UPDATED CRITICAL MOBILE FIXES --- */
@media (max-width: 768px) {
    /* 1. Header Fix */
    header {
        padding: 10px 5%;
        flex-wrap: wrap;
    }
    
    .nav-links {
        display: none; 
    }

    /* 2. Hero Section Fix */
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 5% 40px;
        min-height: auto;
    }

    h1 {
        font-size: 48px; /* Slightly larger for impact */
        line-height: 1;
        letter-spacing: -1px;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-main, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px;
    }

    /* 3. Hero Image & Floating Card Fix */
    .hero-right {
        justify-content: center;
        margin-top: 30px;
    }

    .floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        width: 220px;
    }

    /* 4. Bento Grid Fix - SOLVES THE VANISHING IMAGE */
    .bento-grid {
        display: flex; /* Switch to flex for easier stacking */
        flex-direction: column;
        height: auto;
        gap: 20px;
        grid-template-areas: none; /* Clears desktop layout */
    }

    .grid-item {
        width: 100%;
        min-height: 380px; /* Forces the image to be visible */
        height: 380px;
        border-radius: 20px;
    }
    
    .card-overlay {
        padding: 30px 20px;
        /* Stronger gradient for mobile readability */
        background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, rgba(0,0,0,0.2) 100%);
    }

    .main-title {
        font-size: 42px;
        margin-bottom: 30px;
    }

    /* 5. Process & Reviews Fix */
    .steps-wrapper, .footer-grid, .reviews-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        display: flex;
    }
    
    .step p, .review-card {
        max-width: 100%;
    }

    /* 6. CTA Banner Fix */
    .cta-banner {
        flex-direction: column;
        border-radius: 24px;
    }
    
    .cta-left {
        padding: 50px 25px;
        text-align: center;
    }

    .cta-left h2 {
        font-size: 38px;
    }
    
    .cta-right {
        padding: 40px 25px;
        flex-direction: row; /* Stats look better side-by-side on mobile */
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}