/* TLC Drivers Meet Landing Page Styles */

/* CSS Variables for Brand Colors */
:root {
    --tlc-blue: #1E3A8A;
    --tlc-yellow: #FBBf24;
    --trust-blue: #1976D2;
    --trust-blue-light: #E3F2FD;
    --surface-grey: #F5F5F5;
    --text-secondary: #757575;
    --divider-grey: #E0E0E0;
    --success-green: #10B981;
    --warning-orange: #F59E0B;
    --error-red: #EF4444;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--tlc-blue) 0%, var(--trust-blue) 100%);
    --accent-gradient: linear-gradient(135deg, var(--tlc-yellow) 0%, #FFD700 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  /* Reset and Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--divider-grey);
    transition: all 0.3s ease;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: var(--shadow-md);
  }
  
  .logo-text {
    font-weight: 700;
    font-size: 20px;
  }
  
  .logo-tlc {
    color: var(--tlc-blue);
  }
  
  .logo-drivers {
    color: var(--tlc-yellow);
  }
  
  .nav-menu {
    display: flex;
    gap: 32px;
  }
  
  .nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
  }
  
  .nav-link:hover {
    color: var(--tlc-blue);
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tlc-blue);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  
  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--tlc-blue);
    transition: all 0.3s ease;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
    position: relative;
    overflow: hidden;
  }
  
  .btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  
  .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--tlc-blue);
    border: 2px solid rgba(30, 58, 138, 0.2);
    backdrop-filter: blur(10px);
  }
  
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--tlc-blue);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--tlc-blue);
    border: 2px solid var(--tlc-blue);
  }
  
  .btn-outline:hover {
    background: var(--tlc-blue);
    color: white;
  }
  
  .btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 16px;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }
  
  .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(30, 58, 138, 0.3) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(251, 191, 36, 0.2) 0%, transparent 60%);
  }
  
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--tlc-yellow);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
  }
  
  .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
  }
  
  .hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  
  .hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .stat {
    text-align: left;
  }
  
  .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--tlc-yellow);
  }
  
  .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
  }
  
  /* Phone Mockup */
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .phone-mockup {
    position: relative;
    z-index: 10;
  }
  
  .phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2d3748, #1a2332);
    border-radius: 40px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
  }
  
  .phone-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
  }
  
  .phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
  }
  
  .app-interface {
    padding: 20px;
    height: 100%;
  }
  
  .app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .app-logo {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .app-tlc {
    color: var(--tlc-blue);
    font-weight: 700;
    font-size: 16px;
  }
  
  .app-drivers {
    color: var(--tlc-yellow);
    font-weight: 700;
    font-size: 16px;
  }
  
  .app-notifications {
    position: relative;
  }
  
  .notification-badge {
    background: var(--error-red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .feature-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--divider-grey);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-2px);
  }
  
  .card-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
  }
  
  .card-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--tlc-blue);
    margin-bottom: 4px;
  }
  
  .card-content p {
    font-size: 12px;
    color: var(--text-secondary);
  }
  
  .phone-shadow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(20px);
  }
  
  .floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tlc-yellow);
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
  }
  
  .floating-element:nth-child(2) {
    animation-delay: -2s;
  }
  
  .floating-element:nth-child(3) {
    animation-delay: -4s;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  /* Features Section */
  .features {
    padding: 120px 0;
    background: var(--surface-grey);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 80px;
  }
  
  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--tlc-blue);
    margin-bottom: 16px;
  }
  
  .section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
  }
  
  .feature-item {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
  }
  
  .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
  
  .feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
  }
  
  .feature-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--tlc-blue);
    margin-bottom: 16px;
  }
  
  .feature-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .feature-highlight {
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    color: var(--warning-orange);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(251, 191, 36, 0.3);
  }
  
  /* Community Section */
  .community {
    padding: 120px 0;
    background: white;
  }
  
  .community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  
  .community-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--tlc-blue);
    margin-bottom: 24px;
  }
  
  .community-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
  }
  
  .community-features {
    margin-bottom: 40px;
  }
  
  .community-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .community-feature i {
    width: 40px;
    height: 40px;
    background: var(--trust-blue-light);
    color: var(--trust-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .community-feature h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--tlc-blue);
    margin-bottom: 4px;
  }
  
  .community-feature p {
    color: var(--text-secondary);
    margin: 0;
  }
  
  /* Chat Preview */
  .chat-preview {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 400px;
  }
  
  .chat-header {
    background: var(--primary-gradient);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .chat-header h4 {
    font-size: 18px;
    font-weight: 600;
  }
  
  .online-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
  }
  
  .chat-messages {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
  }
  
  .message {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .message-avatar {
    width: 36px;
    height: 36px;
    background: var(--tlc-yellow);
    color: var(--tlc-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
  }
  
  .message-author {
    font-size: 12px;
    color: var(--trust-blue);
    font-weight: 600;
    margin-bottom: 4px;
  }
  
  .message-text {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .chat-input {
    padding: 20px;
    border-top: 1px solid var(--divider-grey);
    display: flex;
    gap: 12px;
  }
  
  .chat-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--divider-grey);
    border-radius: 24px;
    font-size: 14px;
    outline: none;
  }
  
  .chat-input button {
    width: 40px;
    height: 40px;
    background: var(--trust-blue);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  /* Download Section */
  .download {
    padding: 120px 0;
    background: var(--surface-grey);
  }
  
  .download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  
  .download-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--tlc-blue);
    margin-bottom: 24px;
  }
  
  .download-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
  }
  
  .download-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  
  .store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--tlc-blue);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    box-shadow: var(--shadow-md);
  }
  
  .store-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  
  .store-button img {
    width: 32px;
    height: 32px;
  }
  
  .store-text {
    font-size: 12px;
    opacity: 0.8;
  }
  
  .store-name {
    font-size: 16px;
    font-weight: 600;
  }
  
  .download-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
  }
  
  .download-note i {
    color: var(--success-green);
  }
  
  /* Download Visual */
  .download-phones {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .phone {
    width: 160px;
    height: 320px;
    background: linear-gradient(145deg, #4a5568, #2d3748);
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
  }
  
  .phone-2 {
    transform: translateY(40px);
  }
  
  .phone-content {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .app-screenshot {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .calculator .calc-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--tlc-blue);
    margin-bottom: 20px;
  }
  
  .calculator .calc-result {
    font-size: 32px;
    font-weight: 800;
    color: var(--success-green);
    margin-bottom: 8px;
  }
  
  .calculator .calc-details {
    font-size: 12px;
    color: var(--text-secondary);
  }
  
  .community .comm-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--tlc-blue);
    margin-bottom: 16px;
  }
  
  .community .comm-stats {
    font-size: 24px;
    font-weight: 700;
    color: var(--trust-blue);
    margin-bottom: 8px;
  }
  
  .community .comm-activity {
    font-size: 12px;
    color: var(--text-secondary);
  }
  
  /* Footer */
  .footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
  }
  
  .footer-brand {
    max-width: 300px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .footer-brand p {
    color: #a0a0a0;
    line-height: 1.6;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--tlc-yellow);
  }
  
  .footer-section a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: white;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
  }
  
  .footer-copyright p {
    color: #a0a0a0;
    font-size: 14px;
  }
  
  .footer-social {
    display: flex;
    gap: 16px;
  }
  
  .footer-social a {
    width: 36px;
    height: 36px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    background: var(--tlc-blue);
    color: white;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-menu {
      position: fixed;
      top: 70px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background: white;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding: 40px 0;
      transition: left 0.3s ease;
      box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
      left: 0;
    }
    
    .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);
    }
    
    .hero-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
      padding: 100px 0 60px;
    }
    
    .hero-actions {
      justify-content: center;
    }
    
    .hero-stats {
      justify-content: center;
      gap: 20px;
      text-align: center;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
    }
    
    .community-content,
    .download-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
    
    .download-phones {
      flex-direction: row;
      justify-content: center;
    }
    
    .phone-2 {
      transform: translateY(20px);
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
    
    .footer-links {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 16px;
    }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-actions {
      flex-direction: column;
      align-items: center;
    }
    
    .hero-stats {
      flex-direction: column;
      gap: 20px;
    }
    
    .download-buttons {
      flex-direction: column;
    }
    
    .store-button {
      justify-content: center;
    }
    
    .download-phones {
      flex-direction: column;
      align-items: center;
    }
    
    .phone-2 {
      transform: translateY(0);
    }
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
  }
  
  /* Scroll animations will be handled by JavaScript */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
  }