* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.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;
}

.phone {
    border: 1px solid #c19a6b;
    padding: 8px 14px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.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;
}

.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);
}

.model-section {
    margin-top: 120px;
}

.model-breadcrumbs {
    font-size: 14px;
    margin-bottom: 20px;
    color: #777;
}

.model-breadcrumbs a {
    color: #999;
    text-decoration: none;
}

.model-breadcrumbs span {
    margin: 0 8px;
}

.model-main {
    display: flex;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    color: white;
    width: 100%;
    max-width: 100%;
}

.model-gallery {
    width: 55%;
    background: #000;
}

.model-info {
    width: 45%;
    padding: 40px;
    display: block;

    min-width: 0;
    max-width: 100%;

    overflow-wrap: break-word;
    word-break: break-word;
}

.main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.model-thumbs {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #111;
    overflow-x: auto;
}

.model-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border-radius: 5px;
    flex-shrink: 0;
}

.model-thumbs img.active {
    opacity: 1;
    border: 2px solid #c19a6b;
}

.model-info small {
    color: #c19a6b;
    text-transform: uppercase;
}

.model-info h2 {
    font-size: 34px;
    margin: 10px 0;
    line-height: 1.3;

    white-space: normal;
    overflow-wrap: break-word;
}

.model-desc {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;

    white-space: normal;
    overflow-wrap: break-word;
}

.model-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    width: 100%;
    max-width: 100%;
    min-width: 0;

    font-size: 14px;
    color: #ddd;
    line-height: 1.5;

    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    stroke: #c19a6b;
    fill: none;
    flex-shrink: 0;
}

.model-price {
    font-size: 32px;
    font-weight: bold;
    color: #c19a6b;
}

.model-price-note {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
}

.model-buttons {
    display: flex;
    gap: 15px;
}

.btn-gold {
    background: #c19a6b;
    color: black;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.btn-outline {
    border: 1px solid #c19a6b;
    color: #c19a6b;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.model-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.benefit-card svg {
    width: 30px;
    height: 30px;
    stroke: #c19a6b;
    fill: none;
    margin-bottom: 10px;
}

.plan-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
}

.plan-image img {
    width: 100%;
    border-radius: 10px;
}

.plan-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.standard-section {
    margin: 40px 0;
}

.standard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.standard-tab {
    padding: 10px 20px;
    background: #ddd;
    cursor: pointer;
    border-radius: 5px;
}

.standard-tab.active {
    background: #c19a6b;
    color: black;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #c19a6b;
}

.contact-section {
    padding: 80px 5%;
    background: #f8f8f8;
}

.contact-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-grid>div:first-child {
    width: 50%;
}

.contact-form {
    width: 50%;
}

.contact-form form {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: #c49a6c;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

@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;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    /* MODEL */

    .model-main {
        flex-direction: column;
    }

    .model-gallery,
    .model-info {
        width: 100%;
        max-width: 100%;
    }

    .model-info {
        padding: 20px;
    }

    .main-img {
        height: auto;
    }

    .model-buttons {
        flex-direction: column;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
    }

    .model-benefits {
        grid-template-columns: 1fr;
    }

    .plan-section {
        grid-template-columns: 1fr;
    }

    .plan-specs {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        flex-direction: column;
    }

    .contact-grid>div:first-child,
    .contact-form {
        width: 100%;
    }
}
.copy {
    text-align: center;
}