* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}

.logo1 {
    width: 60px;
}

.logo2 {
    width: 100px;
    height: 100px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #c19a6b;
}

.phone {
    border: 1px solid #c19a6b;
    padding: 10px 16px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.phone:hover {
    background: #c19a6b;
    color: black;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.hero {
    height: 90vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.65)),
        url("tłog.png") center center/cover no-repeat;

    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 80px;
}

.hero-tag {
    display: inline-block;
    background: rgba(193, 154, 107, 0.8);
    color: black;
    font-weight: 700;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    ;
}

.hero h1 {
    font-size: 74px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 16px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.primary {
    background: #c19a6b;
    color: white;
}

.secondary {
    border: 1px solid white;
    color: white;
}

.primary:hover {
    transform: translateY(-2px);
}

.secondary:hover {
    background: white;
    color: black;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag,
.hero h1,
.hero p,
.hero-buttons {
    opacity: 0;
    animation: fadeIn 0.35s ease-out forwards;
}

.hero-tag {
    animation-delay: 0.1s;
}

.hero h1 {
    animation-delay: 0.1s;
}

.hero p {
    animation-delay: 0.1s;
}

.hero-buttons {
    animation-delay: 0.1s;
}

.faq-top {
    background: white;
}

.faq-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 50px 0;
}

.faq-feature {
    text-align: center;
    padding: 20px;
    border-right: 1px solid #eee;
}

.faq-feature:last-child {
    border-right: none;
}

.faq-feature i {
    font-size: 45px;
    color: #c19a6b;
    margin-bottom: 20px;
}

.faq-feature h4 {
    margin-bottom: 10px;
}

.faq-feature p {
    color: #666;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 52px;
}

.faq-search {
    position: relative;
}

.faq-search input {
    width: 300px;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.faq-search i {
    position: absolute;
    right: 18px;
    top: 18px;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-tab {
    background: white;
    border: 1px solid #eee;
    padding: 18px;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.faq-tab i {
    margin-right: 10px;
}

.faq-tab.active {
    background: #c19a6b;
    color: white;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    padding: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 28px;
    color: #777;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    padding: 0 24px;
    line-height: 1.8;
    color: #555;
}

.active-faq .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

.faq-contact {
    background: #111;
    padding: 80px 0;
}

.faq-contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.faq-contact-left {
    color: white;
}

.faq-contact-left span {
    color: #c19a6b;
    font-size: 14px;
}

.faq-contact-left h2 {
    font-size: 56px;
    margin: 20px 0;
}

.faq-contact-left p {
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ccc;
}

.contact-line {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-line i {
    color: #c19a6b;
}

.faq-contact-image img {
    width: 100%;
    border-radius: 15px;
}

.faq-contact-form {
    background: rgba(255, 255, 255, 0.06);
    padding: 25px;
    border-radius: 15px;
}

.faq-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-contact-form input,
.faq-contact-form textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 10px;
    color: white;
}

.faq-contact-form textarea {
    min-height: 140px;
    resize: none;
    overflow: auto;
}

.faq-contact-form button {
    background: #c19a6b;
    border: none;
    padding: 16px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.footer {
    background: #111;
    color: #aaa;
    padding: 60px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.footer-col a:hover {
    color: #c19a6b;
}

.socials {
    display: flex;
    gap: 10px;
}

.social-box {
    width: 40px;
    height: 40px;
    border: 1px solid #c19a6b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.social-box:hover {
    transform: translateY(-5px) scale(1.08);

    border-color: white;

    box-shadow:
        0 0 10px #c19a6b,
        0 0 20px rgba(193, 154, 107, 0.6);
}

.social-box img {
    margin-top: 12px;
    width: 30px;
    transition: 0.3s ease;
}

.social-box:hover img {
    transform: scale(1.15);
}

.copy {
    text-align: center;
    margin-top: 20px;
}

@media(max-width: 1100px) {

    .faq-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-contact-box {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 800px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.4);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .phone {
        display: none;
    }

    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        margin-left: 0;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .faq-features {
        grid-template-columns: 1fr;
    }

    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .faq-header h2 {
        font-size: 38px;
    }

    .faq-search input {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

}