* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
}

/* Skalowanie dla Full HD (80% z 18px = 14.4px) */
/* Laptop Notice */
.laptop-notice-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.laptop-notice {
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f5f5 100%);
    border-left: 4px solid #2196f3;
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.laptop-notice i {
    font-size: 1.8rem;
    color: #2196f3;
    flex-shrink: 0;
}

.laptop-notice p {
    color: #424242;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.laptop-notice strong {
    color: #1565c0;
}

@media (max-width: 768px) {
    .laptop-notice {
        flex-direction: column;
        padding: 18px 20px;
        gap: 10px;
    }
}

@media (max-width: 1920px) {
    html {
        font-size: 14.4px;
    }
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ffc107;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Lżejszy cień */
    --shadow-hover: 0 8px 25px rgba(255, 107, 53, 0.25);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.logo strong {
    color: var(--primary-color);
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    /* Przywrócono oryginalny gradient */
    overflow: hidden;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 80px;
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
        min-height: auto;
    }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.15);
    /* Białe ikonki na pomarańczowym tle */
    animation: float 15s infinite ease-in-out;
    will-change: transform;
}

/* Wyłączenie animacji dla urządzeń mobilnych - oszczędność CPU i baterii */
@media (max-width: 768px) {
    .floating-icons {
        display: none;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Przywrócono ciemniejszą nakładkę dla kontrastu */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    text-align: left;
    color: var(--white);
    /* Przywrócono biały tekst */
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    flex: 1.2;
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-box {
    background: #ffffff;
    width: 350px;
    /* Nieco większe */
    height: 350px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    /* Delikatna ramka żeby odcinało od białego tła */
    transition: transform 0.3s ease;
}

.hero-logo-box img {
    height: 240px;
    width: auto;
}

.hero-logo-box:hover {
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.title-accent {
    display: block;
    color: var(--accent-color);
    font-size: 3.5rem;
    font-weight: 600;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    /* Increased btn font size */
    padding: 18px 45px;
    /* Bigger buttons */
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    color: var(--white);
}

/* Responsywność dla układu z logo z boku */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-logo-box {
        width: 250px;
        height: 250px;
    }

    .hero-logo-box img {
        height: 170px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.why-us {
    padding: 100px 0;
    background: var(--light-color);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 480px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.offer-preview {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.services-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
    padding: 20px 0;
}

.services-slider-wrapper::before,
.services-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.services-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.services-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.services-slider {
    display: flex;
    gap: 30px;
    animation: slide 60s linear infinite;
    width: max-content;
}

.services-slider:hover {
    animation-play-state: paused;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

@media (prefers-reduced-motion: reduce) {

    .services-slider,
    .floating-icon,
    .hero-scroll,
    .btn {
        animation: none !important;
        transition: none !important;
    }
}

.service-slide {
    min-width: 280px;
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-slide:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.service-slide .offer-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.service-slide:hover .offer-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-slide .offer-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-slide h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 480px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

.offer-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.offer-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-icon {
    transform: scale(1.1) rotate(-5deg);
}

.offer-icon i {
    font-size: 2rem;
    color: var(--white);
}

.offer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.offer-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    min-height: 54px;
}

.offer-price {
    margin-bottom: 20px;
    text-align: center;
}

.price-regular {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.price-old {
    display: block;
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-new {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #28a745;
}

.offer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.offer-link:hover {
    gap: 12px;
}

.offer-cta {
    text-align: center;
}

.news {
    padding: 100px 0;
    background: var(--light-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 480px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.news-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.news-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 12px;
}

.visit-section {
    padding: 100px 0;
    background: var(--white);
}

.visit-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    margin-top: -10px;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.visit-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 45px 40px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.visit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.visit-card:hover::before {
    transform: scaleX(1);
}

.visit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.visit-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.visit-icon.home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.visit-icon.mobile {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.visit-card:hover .visit-icon {
    transform: scale(1.08) rotate(-5deg);
}

.visit-icon i {
    font-size: 3.5rem;
    color: #fff;
}

.visit-card h3 {
    font-size: 1.9rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.visit-card>p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.05rem;
}

.visit-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visit-benefits li {
    color: var(--dark-color);
    padding: 12px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.visit-benefits li:last-child {
    border-bottom: none;
}

.visit-benefits li i {
    color: #4CAF50;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-form {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: var(--gradient-primary);
    padding: 50px;
    border-radius: 15px;
    color: var(--white);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail {
    display: flex;
    gap: 15px;
    align-items: start;
}

.contact-detail i {
    font-size: 1.5rem;
    margin-top: 5px;
    color: var(--accent-color);
}

.contact-detail strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: start;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}





.social-links a:hover {
    transform: translateY(-5px);
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-accent {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .why-us,
    .offer-preview,
    .visit-section,
    .news,
    .contact-form {
        padding: 60px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .form {
        padding: 25px 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .visit-grid {
        grid-template-columns: 1fr;
    }

    .visit-card {
        padding: 30px 20px;
    }

    .visit-icon {
        width: 90px;
        height: 90px;
    }

    .visit-icon i {
        font-size: 2.5rem;
    }

    .visit-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        word-wrap: break-word;
    }

    .title-accent {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-logo-box {
        width: 160px;
        height: 160px;
    }

    .hero-logo-box img {
        height: 100px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .why-us,
    .offer-preview,
    .visit-section,
    .news,
    .contact-form {
        padding: 40px 0;
    }
}