/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Header */
  .header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
  }
  
  .logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
  }
  
  .nav {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #2563eb;
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .mobile-menu {
    display: none;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem;
  }
  
  .mobile-nav-link {
    display: block;
    padding: 0.5rem 0;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
  }
  
  .mobile-nav-link:hover {
    color: #2563eb;
  }
  
  /* Hero Section */
  .hero {
    padding: 5rem 1rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 4xl;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-title-accent {
    color: #2563eb;
    display: block;
  }
  
  .hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
  }
  
  .btn-primary {
    background: #2563eb;
    color: white;
  }
  
  .btn-primary:hover {
    background: #1d4ed8;
  }
  
  .btn-outline {
    background: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
  }
  
  .btn-outline:hover {
    background: #2563eb;
    color: white;
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
  
  .btn-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  /* Sections */
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
  }
  
  .section-title.white {
    color: white;
  }
  
  .section-description {
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
  }
  
  .section-description.white {
    color: #d1d5db;
  }
  
  /* About Section */
  .about {
    padding: 4rem 1rem;
    background: white;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .feature-card {
    text-align: center;
  }
  
  .feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  
  .feature-icon.blue {
    background: #dbeafe;
    color: #2563eb;
  }
  
  .feature-icon.green {
    background: #dcfce7;
    color: #16a34a;
  }
  
  .feature-icon.purple {
    background: #f3e8ff;
    color: #9333ea;
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
  }
  
  .feature-description {
    color: #6b7280;
  }
  
  /* Security Section */
  .security {
    padding: 4rem 1rem;
    background: #f8fafc;
  }
  
  .security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .security-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }
  
  .security-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .security-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
  }
  
  .security-icon.red {
    background: #fee2e2;
    color: #dc2626;
  }
  
  .security-icon.blue {
    background: #dbeafe;
    color: #2563eb;
  }
  
  .security-icon.green {
    background: #dcfce7;
    color: #16a34a;
  }
  
  .security-icon.purple {
    background: #f3e8ff;
    color: #9333ea;
  }
  
  .security-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
  }
  
  .security-description {
    color: #6b7280;
    margin-top: 0.5rem;
  }
  
  /* What We Carry Section */
  .what-we-carry {
    padding: 4rem 0;
    background: #f8fafc;
  }
  
  .carry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .carry-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
  }
  
  .carry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .carry-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
  }
  
  .carry-icon.pink {
    background: linear-gradient(135deg, #ec4899, #be185d);
  }
  
  .carry-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
  }
  
  .carry-icon.gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
  }
  
  .carry-icon.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
  }
  
  .carry-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
  }
  
  .carry-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
  }
  
  .carry-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
  }
  
  .carry-description {
    color: #6b7280;
    line-height: 1.6;
  }
  
  /* How We Transport Section */
  .how-we-transport {
    padding: 4rem 0;
    background: white;
  }
  
  .transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .transport-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .transport-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .transport-card-featured {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border: 2px solid #8b5cf6;
    transform: scale(1.02);
    position: relative;
  }
  
  .transport-card-featured::before {
    content: "★ ÖZEL";
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
  }
  
  .transport-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
  }
  
  .transport-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.25rem;
  }
  
  .transport-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
  }
  
  .transport-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
  }
  
  .transport-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
  }
  
  .transport-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  }
  
  .transport-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
  }
  
  .transport-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .transport-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
  }
  
  .transport-list li {
    color: #6b7280;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
  }
  
  .transport-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
  }
  
  /* Services Section */
  .services {
    padding: 4rem 1rem;
    background: white;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
  }
  
  .service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
  }
  
  .service-list {
    list-style: none;
  }
  
  .service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
    flex-shrink: 0;
  }
  
  /* SEO Content Section */
  .seo-content {
    padding: 4rem 1rem;
    background: #dbeafe;
  }
  
  .seo-content-inner {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
  }
  
  .seo-paragraph {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.7;
  }
  
  /* Contact Section */
  .contact {
    padding: 4rem 1rem;
    background: #1f2937;
    color: white;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
  }
  
  .contact-card {
    text-align: center;
  }
  
  .contact-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
  }
  
  .contact-icon.blue {
    background: #2563eb;
  }
  
  .contact-icon.green {
    background: #16a34a;
  }
  
  .contact-icon.red {
    background: #dc2626;
  }
  
  .contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
  }
  
  .contact-info {
    color: #d1d5db;
    margin-bottom: 0.25rem;
  }
  
  .contact-cta {
    text-align: center;
    margin-top: 3rem;
  }
  
  /* Footer */
  .footer {
    background: #000;
    color: white;
    padding: 2rem 1rem;
  }
  
  .footer-content {
    text-align: center;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .footer-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #60a5fa;
  }
  
  .footer-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
  }
  
  .footer-text {
    color: #9ca3af;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: stretch;
    }
  
    .btn {
      justify-content: center;
    }
  
    .features-grid,
    .security-grid,
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .carry-grid {
      grid-template-columns: 1fr;
    }
  
    .transport-grid {
      grid-template-columns: 1fr;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (min-width: 640px) {
    .hero-buttons {
      flex-direction: row;
      justify-content: center;
    }
  }
  
  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Animation classes */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Mobile Fixed Buttons */
  .mobile-fixed-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    gap: 0.5rem;
  }
  
  .mobile-fixed-buttons {
    display: flex;
  }
  
  .mobile-fixed-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
  }
  
  .mobile-call-btn {
    background: #2563eb;
  }
  
  .mobile-call-btn:hover {
    background: #1d4ed8;
  }
  
  .mobile-whatsapp-btn {
    background: #25d366;
    color: white;
  }
  
  .mobile-whatsapp-btn:hover {
    background: #128c7e;
  }
  
  .mobile-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  /* Hide mobile buttons on desktop */
  @media (min-width: 769px) {
    .mobile-fixed-buttons {
      display: none;
    }
  }
  
  /* Add bottom padding to body to prevent content from being hidden behind fixed buttons */
  @media (max-width: 768px) {
    body {
      padding-bottom: 5rem;
    }
  }
  
  .contact-info a {
    color: white;
    text-decoration: none;
  }