/* Dodatkowe style dla podstron */

/* Page Header */
.page-header {
    padding: 20px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header.blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.page-header.green {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2d7a2d 100%);
}

.page-header.orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e08e10 100%);
}

.page-header.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-header p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Page Content */
.page-content {
    padding: 60px 0;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.package-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.package-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.package-card.featured {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.2);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.package-speed {
    font-size: 1.6rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Speed Details */
.speed-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.speed-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.speed-item:first-child {
    border-bottom: 1px solid #e9ecef;
}

.speed-label {
    color: var(--text-light);
    font-size: 0.85rem;
}

.speed-value {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.speed-value.highlight {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.package-features {
    text-align: left;
    margin-bottom: 25px;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li.wifi6 {
    color: var(--primary-blue);
    font-weight: 600;
}

.package-features li.wifi6::before {
    content: '★';
    color: var(--primary-orange);
}

/* Sekcja dla graczy */
.gamer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 50px 40px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.gamer-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.2) 0%, transparent 70%);
}

.gamer-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(92, 184, 92, 0.15) 0%, transparent 70%);
}

.gamer-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.gamer-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066aa 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.gamer-text {
    flex: 1;
    color: white;
}

.gamer-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.gamer-text > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.gamer-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gamer-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.gamer-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.gamer-features li strong {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .gamer-content {
        flex-direction: column;
        text-align: center;
    }

    .gamer-icon {
        margin: 0 auto;
    }

    .gamer-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .gamer-section {
        padding: 30px 25px;
    }
}

/* Form Messages */
.form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
}

.form-message:not(:empty) {
    display: block;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Success Modal */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-modal-overlay.active .success-modal {
    transform: scale(1);
}

.success-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #3d8b3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    animation: success-pulse 0.5s ease;
}

@keyframes success-pulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-modal-icon svg {
    width: 40px;
    height: 40px;
}

.success-modal-title {
    color: var(--dark-blue);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.success-modal-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.success-modal-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.success-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

/* Form Row Inline (for coverage form) */
.form-row-inline {
    display: flex;
    gap: 10px;
}

.form-row-inline input {
    flex: 1;
}

/* Kreator Banner */
.kreator-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.kreator-banner .kreator-text {
    color: white;
    font-size: 1.1rem;
}

.kreator-banner .btn {
    white-space: nowrap;
    background: white;
    color: var(--primary-blue);
}

.kreator-banner .btn:hover {
    background: #f0f0f0;
}

@media (max-width: 600px) {
    .kreator-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* Channels Banner */
.channels-banner {
    background: linear-gradient(135deg, var(--primary-green) 0%, #3d8b3d 100%);
    border-radius: 8px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.channels-banner-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.channels-banner-text {
    flex: 1;
    color: white;
}

.channels-banner-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.channels-banner-text span {
    opacity: 0.9;
    font-size: 0.95rem;
}

.channels-banner .btn {
    white-space: nowrap;
    background: white;
    color: var(--primary-green);
}

.channels-banner .btn:hover {
    background: #f0f0f0;
}

@media (max-width: 700px) {
    .channels-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* Documents Page */
.documents-section {
    margin-bottom: 50px;
}

.documents-section h2 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.2s;
}

.document-card:hover {
    border-color: var(--primary-blue);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.document-icon {
    width: 50px;
    height: 50px;
    background: #dc2626;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.document-icon.blue {
    background: var(--primary-blue);
}

.document-info {
    flex: 1;
    min-width: 0;
}

.document-title {
    display: block;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 5px;
    line-height: 1.3;
}

.document-type {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }
}

/* Info Section */
.info-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 50px;
}

.info-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-item h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* TV Packages */
.tv-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.tv-package-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.tv-package-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.tv-package-card.featured {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(92, 184, 92, 0.2);
}

.tv-package-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.tv-package-channels {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
}

.tv-package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.tv-package-price .price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.tv-package-price span:not(.price-value) {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Decoder Items in TV packages */
.decoder-item {
    padding-left: 0 !important;
}

.decoder-item::before {
    display: none !important;
}

.decoder-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 100%;
}

.decoder-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-green);
    cursor: pointer;
    margin: 0;
}

.decoder-option span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.decoder-option input[type="radio"]:checked ~ span {
    color: var(--dark-blue);
}

.decoder-price {
    margin-left: auto;
    color: var(--primary-green) !important;
    font-weight: 600;
}

/* Order Modal */
.order-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.order-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.order-modal {
    background: white;
    border-radius: 16px;
    padding: 35px;
    max-width: 450px;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.order-modal-overlay.active .order-modal {
    transform: scale(1);
}

.order-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.order-modal-close:hover {
    color: #333;
}

.order-modal h2 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
    padding-right: 30px;
}

.order-modal h2 span {
    color: var(--primary-green);
}

.order-modal-info {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.order-modal .form-group {
    margin-bottom: 18px;
}

.order-modal .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.order-modal .form-group input,
.order-modal .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.order-modal .form-group input:focus,
.order-modal .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.order-modal .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-full {
    width: 100%;
    padding: 14px 20px;
    font-size: 1.05rem;
}

.order-modal-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* About Page */
.about-intro {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.about-intro-content {
    flex: 1;
}

.about-intro-content h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.about-intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.about-intro-image {
    flex: 0 0 300px;
    text-align: center;
}

.about-intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.about-intro-image .image-caption {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Polski Kapitał Section */
.polski-kapital-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
}

.polski-kapital-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.polski-kapital-logo {
    width: 180px;
    flex-shrink: 0;
}

.polski-kapital-text h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.polski-kapital-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.polski-kapital-text .highlight-text {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* Why Us Section */
.why-us-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.why-us-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
}

.why-us-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.why-us-item h3 {
    font-size: 1.15rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.why-us-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* About Summary */
.about-summary {
    background: var(--dark-blue);
    color: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
    text-align: center;
}

.about-summary p {
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-summary .local-message {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.timeline {
    margin-top: 60px;
}

.timeline h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-blue);
}

.timeline-item {
    text-align: center;
    position: relative;
    flex: 1;
}

.timeline-year {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
}

.timeline-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

/* Contact Boxes */
.contact-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 4px solid var(--primary-green);
}

.contact-box.blue {
    border-left-color: var(--primary-blue);
}

.contact-box.alarm {
    border-left-color: #e74c3c;
    background: #fef5f5;
}

.contact-box-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-box.blue .contact-box-icon {
    background: var(--primary-blue);
}

.contact-box.alarm .contact-box-icon {
    background: #e74c3c;
}

.contact-box-content h3 {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.contact-box-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-box-content p:last-child {
    margin-bottom: 0;
}

.contact-box-content a {
    color: var(--primary-blue);
    font-weight: 500;
}

.contact-box-content a:hover {
    text-decoration: underline;
}

.contact-box-content .contact-hours {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.contact-box-content .small {
    font-size: 0.85rem;
    color: #888;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-info-text h3 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.contact-info-text p {
    color: var(--text-light);
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-form h2 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Map */
.map-section {
    margin-top: 60px;
}

.map-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.map-container {
    background: #e9ecef;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* Responsywność */
@media (max-width: 1000px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tv-packages-grid {
        grid-template-columns: 1fr;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .timeline-items {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-items::before {
        display: none;
    }

    .about-intro {
        flex-direction: column;
    }

    .about-intro-image {
        flex: 0 0 auto;
        max-width: 350px;
        margin: 0 auto;
    }

    .polski-kapital-content {
        flex-direction: column;
        text-align: center;
    }

    .polski-kapital-logo {
        width: 150px;
    }

    .why-us-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .info-section {
        padding: 30px 20px;
    }

    /* Contact page mobile */
    .contact-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .contact-box-icon {
        width: 50px;
        height: 50px;
    }

    .contact-box-content h3 {
        font-size: 1.1rem;
    }

    .contact-box-content p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-form h2 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

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

/* Offer Tiles Grid */
.offer-tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.offer-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 40px 25px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.offer-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.3s;
}

.offer-tile.blue::before {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0066aa 100%);
}

.offer-tile.green::before {
    background: linear-gradient(135deg, var(--primary-green) 0%, #3d8b3d 100%);
}

.offer-tile.orange::before {
    background: linear-gradient(135deg, #f5a623 0%, #e08e10 100%);
}

.offer-tile.purple::before {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.offer-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.offer-tile:hover::before {
    height: 6px;
}

.offer-tile.blue:hover {
    border-color: var(--primary-blue);
}

.offer-tile.green:hover {
    border-color: var(--primary-green);
}

.offer-tile.orange:hover {
    border-color: #f5a623;
}

.offer-tile.purple:hover {
    border-color: #8b5cf6;
}

.offer-tile-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.offer-tile:hover .offer-tile-icon {
    transform: scale(1.1);
}

.offer-tile.blue .offer-tile-icon {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 136, 204, 0.2) 100%);
    color: var(--primary-blue);
}

.offer-tile.green .offer-tile-icon {
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.1) 0%, rgba(92, 184, 92, 0.2) 100%);
    color: var(--primary-green);
}

.offer-tile.orange .offer-tile-icon {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(245, 166, 35, 0.2) 100%);
    color: #f5a623;
}

.offer-tile.purple .offer-tile-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: #8b5cf6;
}

.offer-tile-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.offer-tile-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.offer-tile-price {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
}

.offer-tile.green .offer-tile-price {
    background: linear-gradient(135deg, var(--primary-green) 0%, #3d8b3d 100%);
}

.offer-tile-badge {
    display: inline-block;
    background: #f0f0f0;
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
}

.offer-tile.orange:hover .offer-tile-badge {
    background: linear-gradient(135deg, #f5a623 0%, #e08e10 100%);
    color: white;
}

.offer-tile.purple:hover .offer-tile-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
}

@media (max-width: 1000px) {
    .offer-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .offer-tiles-grid {
        grid-template-columns: 1fr;
    }

    .offer-tile {
        padding: 30px 20px;
    }
}

/* Fiber/Swiatlowody Page */
.fiber-intro {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(245, 166, 35, 0.05) 100%);
    border-left: 4px solid #f5a623;
    padding: 25px 30px;
    margin-bottom: 40px;
    border-radius: 0 8px 8px 0;
}

.fiber-intro p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.fiber-cta {
    background: linear-gradient(135deg, #f5a623 0%, #e08e10 100%);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.fiber-cta-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.fiber-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.fiber-cta .btn {
    background: white;
    color: #e08e10;
    white-space: nowrap;
    padding: 14px 30px;
    font-weight: 600;
}

.fiber-cta .btn:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .fiber-cta {
        flex-direction: column;
        text-align: center;
    }
}

/* Business/Dla-firm Page */
.business-intro {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-left: 4px solid #8b5cf6;
    padding: 25px 30px;
    margin-bottom: 40px;
    border-radius: 0 8px 8px 0;
}

.business-intro p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* IX Section (Internet Exchange Points) */
.ix-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
}

.ix-section h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.ix-intro {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.ix-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.ix-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.ix-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

.ix-logo {
    max-width: 200px;
    max-height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
}

.ix-logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff7900;
    margin-bottom: 5px;
}

.ix-provider {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.ix-location {
    display: inline-block;
    background: rgba(139, 92, 246, 0.3);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 600px) {
    .ix-grid {
        grid-template-columns: 1fr;
    }

    .ix-section {
        padding: 30px 20px;
    }
}

/* Business CTA */
.business-cta {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.business-cta-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.business-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.business-cta .btn {
    background: white;
    color: #6d28d9;
    white-space: nowrap;
    padding: 14px 30px;
    font-weight: 600;
}

.business-cta .btn:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .business-cta {
        flex-direction: column;
        text-align: center;
    }
}
