:root {
    --brand-gold: #ba8d33;
    --header-bg: #29473D;
    --text-dark: white;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: var(--text-dark);
    background: #fff;
}

.site-header {
    background: var(--header-bg);
    border-bottom: 1px solid #dbdbdb;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-block {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.logo-block img {
    width: 100px;
    height: auto;
    display: block;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    padding: 8px 7px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: clamp(14px, 1vw, 30px);
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.main-nav a.active {
    color: var(--brand-gold);
}

.dot {
    color: var(--brand-gold);
    line-height: 1;
    font-size: 10px;
    margin: 0 2px;
}

.page-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 118px 24px 24px;
    min-height: 55vh;
}

.page-content.with-hero {
    padding-top: 24px;
}

.hero-slider {
    position: relative;
    margin-top: 93px;
    min-height: 680px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    padding: 90px 60px 80px;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.hero-copy {
    color: #fff;
    max-width: 470px;
}

.hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.06;
}

.hero-copy p {
    margin: 0;
    font-size: clamp(20px, 2vw, 35px);
}

.hero-form-card {
    width: min(100%, 450px);
    background: #f1f1f1;
    padding: 30px;
}

.hero-slider > .hero-form-card {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: min(92vw, 450px);
}

.hero-form-card h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 2.2vw, 46px);
    font-weight: 500;
    color: #111;
}

.hero-form-card form {
    display: grid;
    gap: 12px;
}

.hero-form-card label {
    color: #2f2f2f;
    font-size: clamp(17px, 1vw, 23px);
}

.hero-form-card input {
    height: 42px;
    border: 0;
    background: #e3e3e3;
    padding: 10px 12px;
    font-size: 14px;
}

.hero-form-card textarea {
    min-height: 72px;
    border: 0;
    background: #e3e3e3;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}

.hero-form-card button {
    margin: 16px auto 0;
    background: var(--brand-gold);
    color: #fff;
    border: 0;
    padding: 14px 42px;
    font-size: clamp(19px, 1.2vw, 26px);
    cursor: pointer;
    box-shadow: 0 14px 20px rgba(161, 183, 87, 0.35);
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #fff;
}

@media (max-width: 1200px) {
    .hero-inner {
        padding: 70px 24px 80px;
    }

    .hero-copy {
        max-width: min(520px, calc(100% - 410px));
    }

    .hero-slider > .hero-form-card {
        right: 24px;
        width: min(40vw, 380px);
    }
}

.site-footer {
    background: #234f44;
    color: #fff;
    font-family: "Trebuchet MS", Arial, sans-serif;
}

.footer-main {
    max-width: 1240px;
    margin: 0 auto;
    padding: 54px 24px 34px;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.2fr;
    gap: 34px;
    align-items: start;
}

.footer-col h3 {
    margin: 0 0 18px;
    font-size: clamp(24px, 1.55vw, 40px);
    color: #bcc42f;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 14px;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 112px;
    height: 3px;
    background: #fff;
    opacity: 0.85;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 132px;
    height: auto;
    display: block;
}

.footer-brand-col p {
    margin: 0;
    max-width: 340px;
    line-height: 1.48;
    font-size: clamp(16px, 1.05vw, 34px);
}

.footer-price-btn {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
    background: #20cf65;
    border-radius: 999px;
    padding: 12px 30px;
    font-size: clamp(15px, 1vw, 32px);
    white-space: nowrap;
}

.footer-price-icon {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.footer-links-list,
.footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links-list li,
.footer-contact-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: clamp(17px, 1vw, 34px);
}

.footer-links-list li::before {
    content: "\203A";
    color: #bcc42f;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    margin-top: -1px;
}

.footer-links-list a,
.footer-contact-list a {
    color: #fff;
    text-decoration: none;
}

.footer-links-list a:hover,
.footer-contact-list a:hover {
    color: #bcc42f;
}

.footer-contact-icon {
    color: #bcc42f;
    width: 20px;
    text-align: center;
    line-height: 1.1;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-map-col iframe {
    width: 100%;
    min-height: 334px;
    border: 0;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    padding: 14px 20px;
}

@media (max-width: 1100px) {
    .header-wrap {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        padding: 12px 16px;
        gap: 12px;
    }

    .logo-block {
        min-width: 0;
    }

    .logo-block img {
        width: 84px;
    }

    .nav-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 8px;
    }

    .site-header.nav-open .main-nav {
        display: flex;
    }

    .site-header.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav a {
        width: 100%;
        padding: 9px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .dot {
        display: none;
    }
}

@media (max-width: 980px) {
    .page-content {
        padding-top: 96px;
    }

    .page-content.with-hero {
        padding-top: 24px;
    }

    .hero-slider {
        margin-top: 69px;
        min-height: 980px;
    }

    .hero-inner {
        padding: 48px 20px 360px;
        min-height: 980px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-form-card {
        width: 100%;
        padding: 22px 16px 18px;
    }

    .hero-form-card h2 {
        font-size: clamp(22px, 6vw, 30px);
    }

    .hero-form-card label {
        font-size: 14px;
    }

    .hero-form-card input,
    .hero-form-card textarea {
        font-size: 14px;
    }

    .hero-slider > .hero-form-card {
        position: absolute;
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 56px;
        transform: none;
        width: auto;
    }

    .hero-form-card button {
        width: 100%;
        margin-top: 10px;
        padding: 12px 16px;
        font-size: 16px;
    }

    .footer-main {
        padding: 40px 16px 28px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-map-col iframe {
        min-height: 250px;
    }
}

@media (max-width: 640px) {
    .header-wrap {
        padding: 10px 12px;
    }

    .logo-block img {
        width: 74px;
    }

    .nav-toggle {
        width: 38px;
        height: 38px;
        padding: 7px 6px;
    }

    .main-nav {
        max-height: calc(100vh - 74px);
        overflow-y: auto;
    }

    .main-nav a {
        font-size: 13px;
        padding: 8px 0;
    }

    .hero-slider {
        min-height: 1080px;
    }

    .hero-inner {
        min-height: 1080px;
        padding-bottom: 420px;
    }

    .hero-slider > .hero-form-card {
        left: 12px;
        right: 12px;
        bottom: 52px;
    }
}

.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
}

.wa-float i {
    color: #fff;
    font-size: 26px;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}
