* {
    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.4);
    backdrop-filter: blur(6px);
}

.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;
    text-shadow: 0 0 8px #c19a6b;
}

.phone {
    border: 1px solid #c19a6b;
    padding: 8px 14px;
    border-radius: 5px;
    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;
    z-index: 1100;
}

.hero {
    height: 70vh;
    width: 100%;
    background: url("tłog.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    position: relative;
    margin-bottom: 20px;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 80px;
    animation: fadeIn 1.2s ease;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.primary {
    background: #c19a6b;
    color: black;
}

.primary:hover {
    box-shadow: 0 0 15px #c19a6b;
    transform: translateY(-2px);
}

.secondary {
    border: 1px solid white;
    color: white;
}

.secondary:hover {
    background: white;
    color: black;
}

.models-section,
.about-section,
.gallery-section,
.contact-section {
    padding: 100px 0;
}

.footer {
    background: #111;
    color: #aaa;
    padding: 60px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 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 {
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    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 {
    width: 30px;
    transition: 0.3s ease;
}

.social-box:hover img {
    transform: scale(1.15);
}

@media (max-width: 900px) {

    .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;
        display: none;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .phone {
        display: none;
    }

    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        margin-left: 0;
        padding: 0 20px;
    }

    .models-grid,
    .gallery-row,
    .about-section .container,
    .contact-section .container {
        grid-template-columns: 1fr;
    }

    .features-bar {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.copy {
    margin-top: 5px;
    text-align: center;
}


.container {
    max-width: 1100px !important;
    padding: 0 15px !important;
}

.models-section,
.about-section,
.gallery-section,
.contact-section {
    padding: 30px 0 !important;
}

.hero h1 {
    font-size: 48px !important;
}

.hero p {
    font-size: 18px;
}

@media (max-width: 900px) {
    .hero-features-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 30px;
        font-size: 14px;
    }

    .hero-features-bar>div:not(:nth-child(2n))::after {
        content: "";
    }

    .hero-features-bar>div:nth-child(2n)::after {
        content: none;
    }

    .hero-buttons {
        margin-left: 15%;
        margin-right: 15%;
    }
}

@media (max-width: 500px) {
    .hero-features-bar {
        grid-template-columns: 1fr;
        padding: 15px 20px;
        font-size: 13px;
    }

    .hero-features-bar>div::after {
        content: none;
    }
}

.contact-hero {
    height: 90vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("tłog.png") center center/cover no-repeat;
}

.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;
}

.contact-hero h1 {
    font-size: 72px;
    max-width: 700px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-hero p {
    font-size: 24px;
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 40px;
}

.contact-page {
    padding: 70px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 370px 1fr;
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

.contact-info-card {
    background: white;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.contact-info-card h2 {
    font-size: 34px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.icon-box {
    width: 42px;
    height: 42px;
    background: #c19a6b;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.contact-hours h3,
.fast-contact h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-hours p {
    margin-bottom: 10px;
}

.fast-contact div {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fast-contact i {
    color: #c19a6b;
}

.contact-form-card {
    background: white;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.contact-form-card h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 18px;
    font-size: 16px;
    transition: 0.3s;
    resize: none;
    overflow: auto;
}

.contact-form-card textarea {
    min-height: 180px;
    resize: none;
    overflow: auto;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: #c19a6b;
    box-shadow: 0 0 10px rgba(193, 154, 107, 0.2);
}

.contact-form-card button {
    background: #c19a6b;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.contact-form-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(193, 154, 107, 0.4);
}

.contact-features {
    background: #111;
    color: white;
    margin-top: 35px;
    border-radius: 18px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.feature-box {
    text-align: center;
}

.feature-icon {
    width: 90px;
    height: 90px;
    border: 1px solid #d5b18b;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c19a6b;
    font-size: 34px;
}

.feature-box h4 {
    margin-bottom: 15px;
    font-size: 22px;
}

.feature-box p {
    color: #555;
    line-height: 1.7;
}

.poland-box {
    margin-top: 35px;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.poland-text {
    padding: 60px;
}

.poland-text h2 {
    font-size: 52px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.poland-text p {
    margin-bottom: 35px;
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

.poland-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta {
    margin-top: 35px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url("tłog.png") center center/cover no-repeat;

    border-radius: 18px;
    padding: 70px;
    position: relative;
    overflow: hidden;
}

.cta-left {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: white;
}

.cta-left h2 {
    font-size: 58px;
    margin-bottom: 20px;
}

.cta-left p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 35px;
}

@media (max-width: 1100px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .poland-box {
        grid-template-columns: 1fr;
    }

    .poland-text {
        padding: 40px;
    }
}

@media (max-width: 700px) {

    .contact-hero h1 {
        font-size: 44px;
    }

    .contact-hero p {
        font-size: 18px;
    }

    .contact-features {
        grid-template-columns: 1fr;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 25px;
    }

    .contact-form-card h2,
    .contact-info-card h2 {
        font-size: 28px;
    }

    .poland-text h2 {
        font-size: 36px;
    }

    .cta-left h2 {
        font-size: 40px;
    }

    .cta-left p {
        font-size: 18px;
    }

    .contact-cta {
        padding: 40px 25px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}