/* EDEN TVK - Telewizja kablowa i Internet */
:root {
    --primary: #E91E8C;
    --primary-dark: #C4177A;
    --dark: #2d2d2d;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
}

.header-main {
    padding: 20px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    overflow: hidden;
    height: 70px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 180px;
    width: auto;
    margin: -55px 0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 100px 0;
    text-align: left;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: url('../img/hero.png') left center / contain no-repeat;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right,
        black 0%,
        black 50%,
        transparent 100%),
        linear-gradient(to bottom,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right,
        black 0%,
        black 50%,
        transparent 100%),
        linear-gradient(to bottom,
        transparent 0%,
        black 15%,
        black 85%,
        transparent 100%);
    mask-composite: intersect;
}

.hero .container {
    position: relative;
    z-index: 3;
    max-width: 500px;
    margin-left: auto;
    margin-right: 80px;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    opacity: 0.9;
}

.hero-feature-icon {
    fill: var(--primary);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .hero .container {
        margin-right: 40px;
    }

    .hero::before {
        width: 55%;
    }
}

@media (max-width: 768px) {
    .hero .container {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        align-items: center;
    }

    .hero {
        min-height: 400px;
        padding: 60px 15px;
    }

    .hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .hero::before {
        width: 100%;
        opacity: 0.25;
        background: url('../img/hero.png') center center / cover no-repeat;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .hero-feature {
        font-size: 13px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .info-bar .container {
        gap: 20px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin-bottom: 10px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .service-card {
        padding: 25px;
    }

    .price-card {
        padding: 25px;
    }

    .price {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 380px;
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .btn-outline {
        margin-left: 0;
    }

    .header-top {
        font-size: 11px;
        padding: 5px 0;
    }

    .header-top .container {
        flex-direction: column;
        gap: 3px;
    }

    .logo {
        height: 50px;
    }

    .logo img {
        height: 130px;
        margin: -40px 0;
    }

    .container {
        padding: 0 15px;
    }
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* Info Bar */
.info-bar {
    background: var(--light-gray);
    padding: 30px 0;
}

.info-bar .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.info-content h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.info-content p {
    font-size: 14px;
    color: var(--gray);
}

/* Services Section */
.services {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Why Us Section */
.why-us {
    background: var(--light-gray);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.price-card:hover {
    border-color: var(--primary);
}

.price-card.featured {
    border-color: var(--primary);
    position: relative;
}

.price-card.featured::before {
    content: 'POLECAMY';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    font-size: 16px;
    color: var(--gray);
}

.price-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.price-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

/* Documents Section */
.documents {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.doc-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: box-shadow 0.3s;
}

.doc-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.doc-icon {
    font-size: 30px;
    color: var(--primary);
}

/* SVG Icons */
.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.icon-large {
    width: 60px;
    height: 60px;
    fill: var(--primary);
}

.icon-doc {
    width: 30px;
    height: 30px;
    fill: var(--primary);
}

.icon-sm {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.info-icon .icon {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.service-icon {
    margin-bottom: 20px;
}

.icon-card {
    width: 50px;
    height: 50px;
    fill: var(--primary);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

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

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.maps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-box h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 18px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav ul.active {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }
}
