
/* Custom Styles for PC-Wizard Full Theme */
body {
    background: #000 !important;
}

.footer-widgets {
    background: #1a1a1a !important;
}

/* Logo mobilne */
.site-logo {
    display: block;
    margin: 0 auto 10px auto;
    text-align: center;
    max-width: 120px;
    transition: max-width 0.3s;
}

.shrink-header .site-logo {
    max-width: 80px;
}

/* Statyczne przyciski desktop */
.desktop-static-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

/* Statyczne przyciski mobilne */
.mobile-static-buttons {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
    transition: opacity 0.3s, height 0.3s;
}

.desktop-static-buttons a,
.mobile-static-buttons a {
    background: #5bc0de;
    color: white;
    padding: 12px 20px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}

.desktop-static-buttons a:hover,
.mobile-static-buttons a:hover {
    background: #0073aa;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    background: #0073aa;
    color: white;
    padding: 12px 20px;
    border: none;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 1000;
    position: relative;
    margin: 10px auto;
}

/* Menu desktop */
.main-navigation {
    background: transparent !important;
    padding: 10px 0;
    position: relative;
    z-index: 999;
    transition: all 0.3s ease;
}

.main-navigation.shrink {
    padding: 5px 0;
    font-size: 90%;
}

/* Menu desktop layout */
.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 30px;
}

.main-navigation li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 10px;
    transition: background 0.3s, color 0.3s;
}

.main-navigation li a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Menu mobile layout */
@media (max-width: 768px) {
    .site-logo {
        margin: 10px auto;
    }

    .menu-toggle {
        display: block;
        margin: 10px auto 15px auto;
    }

    .mobile-static-buttons {
        display: flex;
        max-height: 500px;
        margin-bottom: 15px;
    }

    .mobile-static-buttons.hide {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
    }

    #primary-menu {
        display: none;
        flex-direction: column;
        background: #333;
        width: 100%;
        position: relative;
        z-index: 998;
        align-items: center;
        padding-bottom: 15px;
    }

    #primary-menu.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from { transform: translateY(-20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    .main-navigation ul {
        flex-direction: column;
        text-align: center;
    }

    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid #444;
    }

    .main-navigation li a {
        display: block;
        padding: 15px 0;
        color: white;
        font-size: 16px;
        min-height: 44px;
    }
}

/* Go to top button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #5bc0de;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 1002;
    transition: opacity 0.3s;
}

.go-to-top.show {
    display: block;
    opacity: 1;
}

.go-to-top.hide {
    opacity: 0;
}


/* Animacje kafelków */
.service-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 80px;
    margin-bottom: 15px;
}

/* Animacja sekcji pojawiania się przy przewijaniu */
.animated-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Wygląd hero banner */
.hero-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    min-height: 300px;
    color: white;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
}

/* Sekcje gridowe */
.services-grid, .why-us-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.why-us-section {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 20px;
}

.why-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    max-width: 250px;
    text-align: center;
}

.contact-cta {
    text-align: center;
    padding: 40px 20px;
}

.contact-cta a {
    background: #5bc0de;
    color: white;
    padding: 15px 25px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.contact-cta a:hover {
    background: #0073aa;
}

.infographic-section img {
    width: 80%;
    max-width: 700px;
    display: block;
    margin: 0 auto;
    padding: 40px 0;
}


/* Animacje i finalne style kafelków oraz sekcji */

.hero-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    min-height: 350px;
    color: white;
    animation: fadeIn 1s ease-in;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
    animation: slideDown 1s ease-in;
}

.hero-content p {
    font-size: 18px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.service-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    width: 260px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.service-card img {
    width: 80px;
    margin-bottom: 15px;
}

.infographic-section img {
    width: 80%;
    max-width: 700px;
    display: block;
    margin: 0 auto;
    padding: 40px 0;
    animation: fadeIn 1s ease-in;
}

.why-us-section {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 20px;
    animation: fadeIn 1s ease-in;
}

.why-us-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.why-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    max-width: 250px;
    animation: fadeInUp 0.8s ease forwards;
}

.contact-cta {
    text-align: center;
    padding: 40px 20px;
}

.contact-cta a {
    background: #5bc0de;
    color: white;
    padding: 15px 25px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.contact-cta a:hover {
    background: #0073aa;
}

/* Animacje */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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


/* Dopracowane style i responsywność */

.hero-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    min-height: 350px;
    color: white;
    animation: fadeIn 1s ease-in;
    padding: 20px;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
    animation: slideDown 1s ease-in;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.service-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.8s ease forwards;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.service-card img {
    width: 80px;
    margin-bottom: 15px;
}

.infographic-section img {
    width: 80%;
    max-width: 700px;
    display: block;
    margin: 0 auto;
    padding: 40px 0;
    animation: fadeIn 1s ease-in;
}

.why-us-section {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 20px;
    animation: fadeIn 1s ease-in;
}

.why-us-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.why-item {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    max-width: 260px;
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
}

.contact-cta {
    text-align: center;
    padding: 40px 20px;
}

.contact-cta a {
    background: #5bc0de;
    color: white;
    padding: 15px 25px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.contact-cta a:hover {
    background: #0073aa;
}

/* Responsywność */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .why-us-grid {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .service-card {
        width: 90%;
    }
}

/* Animacje */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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


/* Dodatkowe poprawki kolorów i stylów tekstu */

.hero-content h1,
.hero-content p,
.hero-content a {
    color: white !important;
}

.services-section h2,
.infographic-section h2,
.why-us-section h2,
.contact-cta h2 {
    color: white !important;
    text-align: center;
    margin-bottom: 30px;
}

.service-card h3,
.service-card p {
    color: #333 !important;
}

.service-card:hover h3,
.service-card:hover p {
    color: #333 !important;
}

.contact-cta a {
    color: white !important;
    background: #5bc0de !important;
}

.contact-cta a:hover {
    background: #0073aa !important;
}


/* Zaawansowane efekty dla przycisków i animacji */

.btn-cta {
    background: linear-gradient(45deg, #5bc0de, #0073aa);
    color: white !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #0073aa, #005377);
}

/* Dodanie animacji przy przewijaniu (fade-up) */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Styl hero banner z dodatkowym cieniem */
.hero-banner {
    position: relative;
}

.hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}



/* Poprawiony przycisk w estetyce całej strony */

.btn-cta {
    background: #5bc0de !important;
    color: white !important;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 20px; /* Dodanie odstępu od tekstu */
}

.btn-cta:hover {
    transform: scale(1.05);
    background: #0073aa !important;
}

/* Zapewniam prawidłowy odstęp w hero */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}


/* Style dla kafelków w sekcji Jak działamy? */

.infographic-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.infographic-tile {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infographic-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.infographic-tile img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.infographic-tile h3 {
    margin-bottom: 10px;
    color: #0073aa;
}

.infographic-tile p {
    color: #333;
}

/* Responsywność */
@media (max-width: 768px) {
    .infographic-tiles {
        flex-direction: column;
        align-items: center;
    }
}


/* Ciemniejsze kafelki w odcieniach szarości */

.infographic-tile {
    background: #e0e0e0; /* Ciemniejszy odcień szarości */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infographic-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.infographic-tile h3 {
    margin-bottom: 10px;
    color: #0073aa;
}

.infographic-tile p {
    color: #333;
}



/* Sekcja kroków zamówienia */
.order-steps {
    padding: 40px 20px;
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.step-card {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Formularz zamówienia */
.order-form-section {
    padding: 40px 20px;
    text-align: center;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-form label {
    text-align: left;
    font-weight: bold;
}

.order-form input,
.order-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    resize: vertical;
}

.order-form button {
    padding: 15px 30px;
    background: #5bc0de;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.order-form button:hover {
    background: #0073aa;
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
}


/* Uzupełniające style dla nagłówków i tekstów */

.hero-banner h1,
.hero-banner p {
    color: white !important;
}

.order-steps h2,
.order-form-section h2 {
    color: #333;
    margin-bottom: 30px;
}

.step-card h3 {
    color: #0073aa;
    margin-bottom: 10px;
}

.step-card p {
    color: #333;
}

/* Formularz - poprawki odstępów i marginesów */

.order-form input,
.order-form textarea {
    margin-bottom: 10px;
}

.order-form label {
    margin-top: 10px;
}

.order-form button {
    font-size: 16px;
}

/* Przycisk w formularzu */

.order-form button:hover {
    background: #005377;
}

/* Poprawka responsywności */

@media (max-width: 768px) {
    .order-form {
        padding: 0 15px;
    }
}


/* Poprawki kolorów dla wszystkich kluczowych nagłówków */

.hero-banner h1,
.hero-banner p,
.order-steps h2,
.order-form-section h2,
.step-card h3,
.step-card p {
    color: white !important;
}

/* Poprawa czytelności tekstu w kafelkach */

.step-card {
    background: #4a4a4a; /* Ciemniejsze, bardziej czytelne tło */
    color: white !important;
}

/* Upewnienie się, że nagłówki wewnątrz kafelków są czytelne */

.step-card h3 {
    color: #f2f2f2 !important;
}

/* Uzupełnienie stylu formularza */

.order-form-section h2 {
    color: white !important;
}

.order-form label {
    color: white !important;
}

/* Tło formularza dla kontrastu */

.order-form-section {
    background: #0073aa;
    padding: 40px 20px;
}

/* Przycisk - bez zmian, pozostaje czytelny */

.order-form button {
    background: #5bc0de;
    color: white;
}

.order-form button:hover {
    background: #005377;
}


/* Dedykowane style Contact Form 7 dla podstrony Zamów Serwis */

.order-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wpcf7 form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background: white;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: #5bc0de;
    box-shadow: 0 0 5px rgba(91, 192, 222, 0.5);
}

.wpcf7 label {
    font-weight: bold;
    margin-bottom: 5px;
}

.wpcf7-submit {
    background: #5bc0de;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.wpcf7-submit:hover {
    background: #0073aa;
    transform: scale(1.02);
}

.wpcf7-response-output {
    margin-top: 15px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .order-form-container {
        padding: 20px 15px;
    }
}


/* Dodanie ikon do pól formularza */

.order-form-container {
    position: relative;
    background: url('<?php echo get_template_directory_uri(); ?>/assets/images/form_background.png') no-repeat center center;
    background-size: cover;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.9);
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    padding-left: 40px;
}

.wpcf7-form-control-wrap::before {
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #5bc0de;
    font-size: 16px;
}

/* Specyficzne ikony dla poszczególnych pól */

.wpcf7-form-control-wrap[name*="email"]::before {
    content: "\f0e0";
}

.wpcf7-form-control-wrap[name*="phone"]::before {
    content: "\f095";
}

.wpcf7-form-control-wrap[name*="device"]::before {
    content: "\f109";
}

.wpcf7-form-control-wrap[name*="pickup"]::before {
    content: "\f015";
}

.wpcf7-form-control-wrap[name*="description"]::before {
    content: "\f044";
}

/* Tło ozdobne jest półprzezroczyste dla zachowania czytelności */

.order-form-section {
    background: linear-gradient(to right, #5bc0de, #0073aa);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}


/* Poprawiony, ciemniejszy styl formularza */

.order-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #333;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.wpcf7 form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 1px solid #555;
    border-radius: 5px;
    font-size: 16px;
    background: #222;
    color: white;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.wpcf7 input[type="file"],
.wpcf7 input[type="checkbox"] {
    padding-left: 14px !important;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    border-color: #5bc0de;
    box-shadow: 0 0 5px rgba(91, 192, 222, 0.7);
}

.wpcf7 label {
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.wpcf7-submit {
    background: #5bc0de;
    color: white;
    padding: 18px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.wpcf7-submit:hover {
    background: #0073aa;
    transform: scale(1.02);
}

/* Ikony tylko dla podstawowych pól */

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7 input[type="file"],
.wpcf7 input[type="checkbox"] {
    padding-left: 14px !important;
}

.wpcf7-form-control-wrap::before {
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #5bc0de;
    font-size: 16px;
}

/* Przypisuję ikony tylko do podstawowych pól */
.wpcf7-form-control-wrap input[type="text"]:not([type="file"]) + .wpcf7-form-control-wrap::before,
.wpcf7-form-control-wrap input[type="email"] + .wpcf7-form-control-wrap::before,
.wpcf7-form-control-wrap input[type="tel"] + .wpcf7-form-control-wrap::before,
.wpcf7-form-control-wrap textarea + .wpcf7-form-control-wrap::before {
    content: "\f007";
}

.wpcf7-form-control-wrap[name*="email"]::before {
    content: "\f0e0";
}

.wpcf7-form-control-wrap[name*="phone"]::before {
    content: "\f095";
}

.wpcf7-form-control-wrap[name*="device"]::before {
    content: "\f109";
}

.wpcf7-form-control-wrap[name*="description"]::before {
    content: "\f044";
}

/* Wyłączenie ikon przy plikach i checkboxach */
.wpcf7-form-control-wrap input[type="file"]::before,
.wpcf7-form-control-wrap input[type="checkbox"]::before {
    content: none !important;
}


/* Ustawiam jaśniejsze tło formularza */
.order-form-container {
    background: #444;
}

/* Poprawiam widoczność opisów pod formularzem */
.wpcf7 span.wpcf7-form-control-description {
    color: white !important;
    font-size: 14px;
}

/* Interaktywne efekty focus */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    transition: all 0.3s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    background: #555;
    border-color: #5bc0de;
    box-shadow: 0 0 8px rgba(91, 192, 222, 0.7);
}

/* Interaktywne podświetlanie pól formularza */
.wpcf7-form-control:hover {
    background: #555;
    border-color: #5bc0de;
}

/* Animacja pojawiania się formularza */
.order-form-container {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

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

/* Responsywność i komfort */
@media (max-width: 768px) {
    .order-form-container {
        padding: 30px 15px;
    }
}


/* Poprawa widoczności wszystkich etykiet i opisów formularza */

.wpcf7 label,
.wpcf7 legend,
.wpcf7 span.wpcf7-form-control-description,
.wpcf7-form-control.wpcf7-radio label,
.wpcf7-form-control.wpcf7-checkbox label {
    color: white !important;
    font-size: 15px !important;
}

/* Upewniam się, że tytuły pól typu radio (np. rodzaj kontaktu) są w pełni czytelne */

.wpcf7-field-group legend {
    color: white !important;
}

/* Styl opisów i pól wyboru */

.wpcf7-form-control.wpcf7-radio label,
.wpcf7-form-control.wpcf7-checkbox label {
    display: block;
    margin-bottom: 8px;
    font-weight: normal;
}

/* Delikatne podświetlenie opcji przy hover */

.wpcf7-form-control.wpcf7-radio label:hover,
.wpcf7-form-control.wpcf7-checkbox label:hover {
    color: #5bc0de !important;
    cursor: pointer;
}

/* Dopasowanie responsywności */

@media (max-width: 768px) {
    .wpcf7-form-control.wpcf7-radio label,
    .wpcf7-form-control.wpcf7-checkbox label {
        font-size: 14px !important;
    }
}


/* Jaśniejsze etykiety pól typu radio (Rodzaj kontaktu, TELEFON, EMAIL) */

.wpcf7 legend,
.wpcf7-form-control.wpcf7-radio label {
    color: #f2f2f2 !important;
    font-size: 16px !important;
}

/* Opis formatu plików - wyraźny i jaśniejszy */
.wpcf7 span.wpcf7-form-control-description {
    color: #f2f2f2 !important;
    font-size: 14px !important;
}

/* Etykieta: "Nie wybrano pliku" - jaśniejszy kolor */
.wpcf7 input[type="file"]::file-selector-button {
    background: #5bc0de;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.wpcf7 input[type="file"] {
    color: #f2f2f2 !important;
}

/* Checkboxy - zgody w delikatnie ciemniejszym odcieniu szarości */

.wpcf7-form-control.wpcf7-checkbox label {
    color: #cccccc !important;
    font-size: 14px !important;
}

.wpcf7-form-control.wpcf7-checkbox label:hover {
    color: #5bc0de !important;
    cursor: pointer;
}

/* Poprawa przycisku wyboru pliku */
.wpcf7 input[type="file"]:hover::file-selector-button {
    background: #0073aa;
}

/* Responsywność pozostaje bez zmian */


/* FINALNE ROZWIĄZANIE: Globalne wymuszenie białego koloru dla wszystkich etykiet i nagłówków formularza */

.wpcf7 label,
.wpcf7 legend,
.wpcf7-form-control.wpcf7-radio label,
.wpcf7-form-control.wpcf7-checkbox label,
.wpcf7 span.wpcf7-form-control-description,
.wpcf7 form p,
.wpcf7 .wpcf7-list-item-label {
    color: #ffffff !important;
    font-size: 16px !important;
}

/* Dodatkowe: poprawiam widoczność komunikatów pod formularzem */

.wpcf7-response-output {
    color: white !important;
}

/* Zgody - pozostają delikatnie ciemniejsze, ale czytelne */

.wpcf7-form-control.wpcf7-checkbox label {
    color: #dddddd !important;
}

/* Etykieta pliku - jaśniejszy kolor */
.wpcf7 input[type="file"] {
    color: #f2f2f2 !important;
}

/* Przycisk wyboru pliku - pozostaje niebieski i czytelny */
.wpcf7 input[type="file"]::file-selector-button {
    background: #5bc0de;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.wpcf7 input[type="file"]:hover::file-selector-button {
    background: #0073aa;
}


/* Przesunięcie opisu formatu pliku wyżej (zwiększenie marginesu dolnego) */

.wpcf7 span.wpcf7-form-control-description {
    display: block;
    margin-bottom: 10px;
    margin-top: -5px;
    color: #ffffff !important;
    font-size: 14px !important;
}


/* Poprawa widoczności napisu "Jak zgłosić laptopa?" */
.report-steps h2 {
    color: #ffffff !important;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

/* Poprawa widoczności wszystkich nagłówków sekcji */
.order-form-section h2 {
    color: #ffffff !important;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

/* Poprawa koloru tła formularza - ciemniejsze */
.order-form-container {
    background: #2b2b2b !important;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Dodatkowa poprawa widoczności tekstów w całym formularzu */
.wpcf7 label,
.wpcf7 legend,
.wpcf7-form-control.wpcf7-radio label,
.wpcf7-form-control.wpcf7-checkbox label,
.wpcf7 span.wpcf7-form-control-description,
.wpcf7 form p,
.wpcf7 .wpcf7-list-item-label {
    color: #ffffff !important;
    font-size: 16px !important;
}

/* Styl responsywny formularza */
@media (max-width: 768px) {
    .order-form-container {
        padding: 20px 15px;
    }
}


/* Odstęp między kafelkami a formularzem */
.report-steps {
    margin-bottom: 60px;
}

/* Dodajemy większy odstęp od formularza do kolejnych sekcji */
.order-form-section {
    padding-top: 20px;
    padding-bottom: 40px;
}

/* Poprawa odstępów między kafelkami */
.steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step-card {
    background: #444;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


/* Styl sekcji kontaktowej */
.contact-details {
    padding: 40px 20px;
    text-align: center;
    background: #2b2b2b;
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: #444;
    border-radius: 10px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.contact-card a {
    color: #5bc0de;
    text-decoration: none;
}

.contact-card a:hover {
    color: #0073aa;
}

.contact-card h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
}

.contact-icons i {
    font-size: 24px;
    margin: 10px;
    color: #5bc0de;
}

/* Formularz kontaktowy - styl jak w poprzednich stronach */
.order-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #2b2b2b;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #555;
    border-radius: 5px;
    font-size: 16px;
    background: #222;
    color: white;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.wpcf7 input[type="text"]:hover,
.wpcf7 input[type="email"]:hover,
.wpcf7 textarea:hover {
    border-color: #5bc0de;
    box-shadow: 0 0 6px rgba(91, 192, 222, 0.7);
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
    background: #333;
    border-color: #5bc0de;
    box-shadow: 0 0 8px rgba(91, 192, 222, 0.9);
}

.wpcf7 label,
.wpcf7 form p {
    color: white !important;
    font-size: 16px !important;
}

.wpcf7-submit {
    background: #5bc0de;
    color: white;
    padding: 18px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.wpcf7-submit:hover {
    background: #0073aa;
    transform: scale(1.02);
}

.wpcf7-response-output {
    color: white !important;
    font-weight: bold;
}

@media (max-width: 768px) {
    .order-form-container {
        padding: 20px 15px;
    }
}


/* Ikony komunikatorów */
.contact-icons i.fa-facebook-messenger { color: #0084FF; }
.contact-icons i.fa-whatsapp { color: #25D366; }
.contact-icons i.fa-commenting { color: #5bc0de; } /* Symboliczna ikona dla Signala */


/* Styl bardziej charakterystycznych ikon komunikatorów */

.contact-icons i.fa-facebook-messenger,
.contact-icons i.fa-whatsapp,
.contact-icons i.fa-commenting {
    font-size: 32px;
    background: white;
    padding: 12px;
    border-radius: 50%;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Kolory dla każdej ikony */

.contact-icons i.fa-facebook-messenger {
    color: #0084FF;
}

.contact-icons i.fa-whatsapp {
    color: #25D366;
}

.contact-icons i.fa-commenting {
    color: #039BE5; /* Odcień niebieskiego dla Signala */
}

/* Efekt hover */
.contact-icons i:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}


/* Proste i czytelne ikony komunikatorów bez tła */

.contact-icons i.fa-facebook-messenger,
.contact-icons i.fa-whatsapp,
.contact-icons i.fa-commenting {
    font-size: 30px;
    margin: 10px;
    transition: color 0.3s ease;
}

/* Kolory dla komunikatorów */

.contact-icons i.fa-facebook-messenger {
    color: #0084FF;
}

.contact-icons i.fa-whatsapp {
    color: #25D366;
}

.contact-icons i.fa-commenting {
    color: #039BE5; /* Odcień dla Signala */
}

/* Efekt hover: delikatne przyciemnienie koloru */

.contact-icons i:hover {
    color: #005bb5;
}


/* Proste infografiki SVG komunikatorów */
.contact-icons img.contact-icon {
    width: 40px;
    height: 40px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-icons img.contact-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}


/* Finalne ujednolicone style dla ikon komunikatorów w stylu telefon/koperta/pinezka */

.contact-icons img.contact-icon {
    width: 32px;
    height: 32px;
    margin: 10px;
    cursor: pointer;
    filter: grayscale(100%) brightness(2);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-icons img.contact-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}


/* Poprawa szerokości pola numer telefonu w formularzu kontaktowym */

.wpcf7 input[type="tel"] {
    width: 100% !important;
    padding: 14px 16px;
    border: 1px solid #555;
    border-radius: 5px;
    font-size: 16px;
    background: #222;
    color: white;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Spójny wygląd przy hover i focus */

.wpcf7 input[type="tel"]:hover {
    border-color: #5bc0de;
    box-shadow: 0 0 6px rgba(91, 192, 222, 0.7);
}

.wpcf7 input[type="tel"]:focus {
    background: #333;
    border-color: #5bc0de;
    box-shadow: 0 0 8px rgba(91, 192, 222, 0.9);
}


/* Sekcja z kodem QR */
.qr-code-section {
    padding: 40px 20px;
    text-align: center;
    background: #2b2b2b;
    margin-top: 40px;
}

.qr-code-section h2 {
    color: white;
    margin-bottom: 20px;
}

.qr-code-container {
    max-width: 300px;
    margin: 0 auto;
}

.qr-code-container img.qr-code {
    width: 100%;
    height: auto;
    border: 4px solid white;
    border-radius: 10px;
    margin-bottom: 15px;
}

.qr-code-container p {
    color: white;
}


/* Efekt zmniejszania się top menu podczas scrolla */

.site-header.shrink {
    background: none !important;
    transition: all 0.3s ease-in-out;
}

.site-header.shrink .site-logo img {
    max-height: 50px;
    transition: max-height 0.3s ease-in-out;
}

.site-header .site-logo img {
    max-height: 100px;
    transition: max-height 0.3s ease-in-out;
}

.top-menu.shrink .top-menu-button {
    display: flex;
    align-items: center;
    font-size: 0 !important;
}

.top-menu.shrink .top-menu-button i {
    font-size: 20px !important;
}

.top-menu-button {
    transition: all 0.3s ease-in-out;
}

/* Mobilne menu - pełna responsywność */

@media (max-width: 768px) {
    .site-header .site-logo img {
        max-height: 80px;
    }

    .top-menu {
        flex-direction: column;
        align-items: center;
    }

    .top-menu-button {
        margin: 10px 0;
        font-size: 16px;
    }
}


/* Dodatkowe animacje i efekty wizualne top menu */

.site-header.shrink {
    animation: fadeShrink 0.5s forwards;
}

@keyframes fadeShrink {
    from { background: rgba(0, 0, 0, 0.7); }
    to { background: none; }
}

.top-menu.shrink .top-menu-button {
    animation: slideLeft 0.5s forwards;
}

@keyframes slideLeft {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Dodajemy animację hover dla uproszczonych ikon */

.top-menu.shrink .top-menu-button i:hover {
    color: #5bc0de;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Logo z animacją zmniejszania */

.site-header.shrink .site-logo img {
    animation: shrinkLogo 0.5s forwards;
}

@keyframes shrinkLogo {
    from { max-height: 100px; }
    to { max-height: 50px; }
}


/* Finalne: menu zwarte, wycentrowane, bez ikon po scrollu */

.site-header.compact {
    background: #000 !important;
    transition: all 0.5s ease-in-out;
}

.site-header.compact .site-logo img {
    max-height: 70px !important;
    transition: max-height 0.5s ease-in-out;
}

.top-menu.compact {
    justify-content: center !important;
    text-align: center;
    transition: all 0.5s ease-in-out;
    transform: translateY(-15px);
}

.top-menu.compact .top-menu-button i {
    display: none !important;
}

.top-menu.compact .top-menu-button {
    font-size: 14px !important;
    color: white !important;
    padding: 6px 10px;
    margin: 0 4px;
    animation: fadeInCompactMenu 0.4s ease-in-out forwards;
}

@keyframes fadeInCompactMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.top-menu.compact .top-menu-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}


/* Finalna wersja: zwężone top menu i główne menu */

.site-header.compact {
    background: #000 !important;
    transition: all 0.5s ease-in-out;
    padding: 5px 0 !important;
}

.site-header.compact .site-logo img {
    max-height: 60px !important;
    transition: max-height 0.4s ease-in-out;
}

.top-menu.compact {
    justify-content: center !important;
    text-align: center;
    transition: all 0.5s ease-in-out;
    transform: translateY(-15px);
}

.top-menu.compact .top-menu-button,
.main-menu.compact a {
    font-size: 14px !important;
    padding: 6px 10px;
    margin: 0 4px;
    animation: fadeInCompactMenu 0.4s ease-in-out forwards;
}

.top-menu.compact .top-menu-button:hover,
.main-menu.compact a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

@keyframes fadeInCompactMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Finalne zwężone style dla top menu i głównego menu */

.site-header.compact {
    background: #000 !important;
    transition: all 0.4s ease-in-out;
    padding: 5px 0 !important;
}

.site-header.compact .site-logo img {
    max-height: 60px !important;
    transition: max-height 0.4s ease-in-out;
}

.top-menu.compact, .main-menu.compact {
    justify-content: center !important;
    text-align: center;
    transition: all 0.4s ease-in-out;
    transform: translateY(-15px);
}

.top-menu.compact .top-menu-button, .main-menu.compact li a {
    font-size: 14px !important;
    padding: 6px 10px;
    margin: 0 4px;
    animation: fadeInCompactMenu 0.4s ease-in-out forwards;
}

.top-menu.compact .top-menu-button:hover, .main-menu.compact li a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

@keyframes fadeInCompactMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Poprawa top menu w wysokich rozdzielczościach */
@media (max-width: 1650px) {
    .main-navigation ul {
        gap: 12px;
    }
    .main-navigation li a {
        font-size: 14px;
        padding: 10px 12px;
    }
    .main-navigation li i {
        display: none !important;
    }
}

/* Środkowy próg - menu bardziej zwarte */
@media (max-width: 1050px) {
    .main-navigation ul {
        gap: 8px;
    }
    .main-navigation li a {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* Menu mobilne - pełna responsywność */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
        margin-right: 20px;
        z-index: 10001;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        background: #333;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 9999;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        padding-bottom: 20px;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu li {
        border-bottom: 1px solid #444;
    }

    .mobile-menu li a {
        padding: 15px 0;
        display: block;
        color: white;
        text-decoration: none;
        font-size: 16px;
    }

    .mobile-menu li a:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .top-menu {
        flex-direction: column;
        align-items: center;
    }

    .top-menu-button {
        margin: 10px 0;
        font-size: 14px;
    }
}


/* Poprawka: menu główne nie może nachodzić na menu statyczne poniżej 1485px */
@media (max-width: 1485px) {
    .main-navigation ul {
        gap: 8px;
    }
    .main-navigation li a {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* Poprawka: menu zaczyna się rozpadać przy 829px, więc dodatkowe zwężenie */
@media (max-width: 829px) {
    .main-navigation ul {
        gap: 6px;
    }
    .main-navigation li a {
        font-size: 12px;
        padding: 6px 8px;
    }
}

/* Poprawka: pozycjonowanie menu mobilnego i menu statycznego */
@media (max-width: 768px) {
    .mobile-menu {
        top: 60px !important; /* Menu zaczyna się bezpośrednio pod przyciskiem */
        position: fixed !important;
        background: #333;
        z-index: 10000;
        padding-bottom: 20px;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .top-menu {
        position: relative !important;
        z-index: 10001;
        background: #001f3f;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    .top-menu-button {
        margin: 8px 0;
        font-size: 14px;
        padding: 8px 12px;
    }

    /* Zapewniamy miejsce pod menu, żeby nie nachodziło na hero */
    .hero-container {
        margin-top: 60px;
    }
}


/* --- Mobile Image Fix for Laptopy and Remote Support Pages --- */
@media (max-width: 578px) {
    .laptop-service-page img,
    .page-remote-support img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
        margin: 10px 0 !important;
    }

    .laptop-service-page ul, 
    .laptop-service-page ol, 
    .page-remote-support ul, 
    .page-remote-support ol {
        padding-left: 20px !important;
    }

    .laptop-service-page h1, 
    .laptop-service-page h2, 
    .page-remote-support h1, 
    .page-remote-support h2 {
        font-size: 1.4em !important;
    }

    .laptop-service-page.container, 
    .page-remote-support.container {
        padding: 15px !important;
    }
}


/* Styles for Recovery Page */

.recovery-page .hero-section {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.recovery-page .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.recovery-page .info-box, .process-steps .step {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.recovery-page .info-box:hover, .process-steps .step:hover {
    transform: translateY(-10px);
}

.recovery-page .process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.recovery-page .step-number {
    display: inline-block;
    background: #007bff;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.recovery-page .cta-section {
    text-align: center;
    background: #007bff;
    color: #fff;
    padding: 60px 20px;
}



/* Styles for secondary button on recovery page */
.btn-secondary {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.btn-secondary.animated.pulse {
    animation: pulse 2s infinite;
}

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



/* Hero section full styling */
.recovery-page .hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 150px 20px;
    position: relative;
}

.recovery-page .hero-section .container {
    position: relative;
    z-index: 2;
}

.recovery-page .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.recovery-page .hero-section p {
    font-size: 20px;
    margin-bottom: 30px;
}



/* Primary button styles for hero section */
.btn-primary {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.btn-primary.animated.zoomIn {
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}



/* Styles for primary button on hero section */
.btn-primary {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.btn-primary.animated.zoomIn {
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}



/* Gradient background for CTA section */
.recovery-page .cta-section {
    text-align: center;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 60px 20px;
}

.recovery-page .cta-section .btn-secondary {
    margin-top: 20px;
}
