/* Zmienne CSS dla motywów */
:root {
    --background-primary: #ffffff;
    --background-secondary: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #dddddd;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --primary-color: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #2563eb;
    --accent-1: #8b5cf6;
    --accent-2: #ec4899;
    --accent-3: #f59e0b;
    --alert-success-bg: #d4edda;
    --alert-success-border: #c3e6cb;
    --alert-success-text: #155724;
    --alert-danger-bg: #f8d7da;
    --alert-danger-border: #f5c6cb;
    --alert-danger-text: #721c24;
    --form-focus-shadow: rgba(59, 130, 246, 0.25);
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-primary: #111827;
        --background-secondary: #1f2937;
        --text-primary: #f9fafb;
        --text-secondary: #9ca3af;
        --border-color: #374151;
        --shadow-color: rgba(0, 0, 0, 0.3);
        --primary-color: #60a5fa;
        --primary-light: #93c5fd;
        --primary-dark: #3b82f6;
        --alert-success-bg: #064e3b;
        --alert-success-border: #065f46;
        --alert-success-text: #34d399;
        --alert-danger-bg: #7f1d1d;
        --alert-danger-border: #991b1b;
        --alert-danger-text: #fca5a5;
        --form-focus-shadow: rgba(96, 165, 250, 0.25);
        --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    }
}

/* Stylizacja sekcji kontaktowej */
.contact-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.contact-banner h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Sekcja ekskluzywności */
.exclusivity-section {
    /* background-color: var(--background-primary); */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.exclusivity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-1) 100%);
    opacity: 0.03;
    z-index: 1;
}

.exclusivity-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--background-secondary);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exclusivity-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px var(--shadow-color);
}

.exclusivity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-1) 100%);
    color: var(--background-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
}

.exclusivity-content h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.exclusivity-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    padding: 0 20px;
}

/* Sekcja jak rozpocząć */
.how-to-start-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.start-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.start-step {
    width: 100%;
    text-align: center;
    padding: 30px;
    background: var(--background-primary);
    color: var(--text-primary);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px var(--shadow-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--background-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Sekcja kontaktowa */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.2rem;
}

.contact-details h3 {
    margin-bottom: 5px;
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    border-radius: 15px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-form {
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-check {
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-radius: 12px;
}

.form-check-input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.alert {
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: none;
}

.alert-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.alert-content i {
    font-size: 2.5rem;
}

.alert-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.alert-content p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Light Mode */
@media (prefers-color-scheme: light) {
    .contact-section {
        background: linear-gradient(135deg, #f8f9ff 0%, #e9f0ff 100%);
    }

    .contact-info {
        background: white;
        color: var(--text-primary);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .contact-info:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .contact-item {
        background: #f8f9ff;
    }

    .contact-item:hover {
        transform: translateX(5px);
    }

    .contact-icon {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
        color: white;
        box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
    }

    .contact-details h3 {
        color: #2d3748;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .contact-details p {
        color: #4a5568;
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .social-links {
        background: #f8f9ff;
    }

    .social-link {
        background: white;
        color: var(--primary-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .social-link:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(59, 130, 246, 0.2);
    }

    .contact-form {
        background: white;
        color: var(--text-primary);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .contact-form:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .form-group label {
        color: #2d3748;
    }

    .form-control {
        background-color: #f8f9ff;
        border: 2px solid #e2e8f0;
        color: #2d3748;
    }

    .form-control:focus {
        border-color: var(--primary-color);
        background-color: white;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    }

    .form-control::placeholder {
        color: #a0aec0;
    }

    .form-check {
        background: #f8f9ff;
    }

    .form-check-input {
        background-color: white;
        border: 2px solid #e2e8f0;
    }

    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .form-check-label {
        color: #4a5568;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
        color: white;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(59, 130, 246, 0.2);
    }

    .alert-success {
        background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
        color: #166534;
    }

    .alert-danger {
        background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
        color: #991b1b;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    .contact-section {
        background: linear-gradient(135deg, #1a1f35 0%, #111827 100%);
    }

    .contact-info {
        background: #1f2937;
        color: #f3f4f6;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .contact-info:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .contact-item {
        background: #111827;
    }

    .contact-item:hover {
        background: #1f2937;
        transform: translateX(5px);
    }

    .contact-icon {
        background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
        box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
        color: #f3f4f6;
    }

    .contact-details h3 {
        color: #f3f4f6;
    }

    .contact-details p {
        color: #9ca3af;
    }

    .social-links {
        background: #111827;
    }

    .social-link {
        background: #1f2937;
        color: var(--primary-light);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    .social-link:hover {
        background: var(--primary-color);
        color: #f3f4f6;
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
    }

    .contact-form {
        background: #1f2937;
        color: #f3f4f6;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .contact-form:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .form-group label {
        color: #f3f4f6;
    }

    .form-control {
        background-color: #111827;
        border: 2px solid #374151;
        color: #f3f4f6;
    }

    .form-control:focus {
        border-color: var(--primary-light);
        background-color: #1f2937;
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    }

    .form-control::placeholder {
        color: #6b7280;
    }

    .form-check {
        background: #111827;
    }

    .form-check-input {
        background-color: #1f2937;
        border-color: #374151;
    }

    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .form-check-label {
        color: #9ca3af;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
        color: #f3f4f6;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(59, 130, 246, 0.3);
    }

    .alert-success {
        background: linear-gradient(135deg, #065f46 0%, #047857 100%);
        color: #a7f3d0;
    }

    .alert-danger {
        background: linear-gradient(135deg, #991b1b 0%, #b91c1c 100%);
        color: #fecaca;
    }
}

/* Responsywność */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .start-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-banner {
        padding: 60px 0;
    }
    
    .contact-banner h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .exclusivity-section {
        padding: 60px 0;
    }
    
    .exclusivity-content {
        padding: 30px 20px;
    }
    
    .exclusivity-content h3 {
        font-size: 1.5rem;
    }
    
    .exclusivity-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .exclusivity-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    .contact-item {
        padding: 15px;
    }

    .social-links {
        padding: 15px;
    }

    .form-group label {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 1rem;
    }
} 