/* Dark Theme Styling */
:root {
    --primary-color: #2ecc71;
    --secondary-color: #1abc9c;
    --background-color: #0d1117;
    --card-color: #161b22;
    --text-color: #e6edf3;
    --muted-text: #8b949e;
    --white-color: #ffffff;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Containers */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.section-title p {
    font-size: 1.1rem;
    color: var(--muted-text);
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* Header */
header {
    background: var(--card-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.6);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}
.logo i {
    color: var(--secondary-color);
}
.nav-links {
    list-style: none;
    display: flex;
}
.nav-links li {
    margin-left: 25px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--primary-color);
}
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1604014237800-1c9102c219da?q=80&w=1770&auto=format&fit=crop') no-repeat center center/cover;
    color: var(--white-color);
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.7);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* About Us Section */
.about-us {
    padding: 6rem 0;
}
.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.about-text { flex: 1; }
.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.about-image { flex: 1; }
.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}
.benefits {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}
.benefit-item {
    font-weight: 600;
    color: var(--text-color);
}
.benefit-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Offer Section */
.offer-section {
    padding: 6rem 0;
    background: var(--card-color);
}
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.offer-card {
    background: var(--background-color);
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.7);
}
.offer-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.offer-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* How It Works */
.how-it-works-section {
    padding: 6rem 0;
}
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    text-align: center;
}
.step {
    flex: 1;
    background: var(--card-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.step h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--card-color);
}
.contact-wrapper {
    display: flex;
    gap: 3rem;
    background: var(--background-color);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.contact-info { flex: 1; }
.contact-info h3, .contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}
.contact-info i {
    color: var(--secondary-color);
    margin-right: 1rem;
    width: 20px;
}
.contact-form { flex: 1.5; }
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #30363d;
    background: var(--card-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: 1px solid var(--primary-color);
}
.contact-form button {
    width: 100%;
}

/* Custom Select Arrow */
.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--card-color) url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 10px center;
    background-size: 16px;
    cursor: pointer;
}

/* Budget Radio Options */
.budget-options label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
}
.budget-options input {
    margin-right: 8px;
    accent-color: var(--primary-color);
}

/* Budget Slider */
.budget-slider-container {
    margin: 15px 0;
}
.budget-slider-container input[type="range"] {
    width: 100%;
    -webkit-appearance: none; /* dla Chrome/Safari */
    -moz-appearance: none;    /* dla Firefox */
    appearance: none;         /* standard */
    height: 8px;              /* wysokość suwaka */
    border-radius: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    outline: none;
    cursor: pointer;
}

/* HERO wersja mniejsza */
.small-hero {
    height: 40vh;
  }
  
  .brands-section {
    padding: 6rem 0;
    background: var(--background-color);
  }
  
  .brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .brand-card {
    background: var(--card-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
  }
  
  .brand-card img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
    
  }
  
  .brand-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .brand-card p {
    color: var(--muted-text);
    font-size: 0.95rem;
  }
  
  .footer-links {
    margin-top: 1rem;
  }
  
  .footer-links a {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }

  /* ==================== */
/* RESPONSYWNOŚĆ */
/* ==================== */

@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .steps-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--card-color);
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

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

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about-text h3, 
    .offer-card h3, 
    .step h3 {
        font-size: 1.3rem;
    }

    .contact-info h3, 
    .contact-form h3 {
        font-size: 1.5rem;
    }

    .contact-wrapper {
        padding: 2rem;
    }
}

/* Dodane style dla sekcji statusu */

.status-p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.tracking-p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: var(--muted-text);
}

.not-found-p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    color: #e74c3c; /* Kolor czerwony, pasujący do motywu */
}

.contact-form .btn {
    margin-top: 20px;
    display: inline-block;
}

