html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

p {
    margin: 0 0 1rem;
}

h1, h2, h3 {
    line-height: 1.15;
}

.booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #163751;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-row-3col {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.form-group {
    margin-bottom: 18px;
}

.form-group-header {
    margin: 10px 0 18px;
    padding-top: 10px;
}

.form-group-header h3 {
    margin-bottom: 0;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border: 1px solid rgba(19, 58, 90, 0.18);
    border-radius: 14px;
    padding: 14px 14px;
    font: inherit;
    color: #243746;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #5db8cf;
    box-shadow: 0 0 0 4px rgba(93, 184, 207, 0.16);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(19, 58, 90, 0.12);
    border-radius: 14px;
    background: rgba(93, 184, 207, 0.05);
    cursor: pointer;
    margin-bottom: 0 !important;
    font-weight: 500 !important;
}

.checkbox-label input {
    width: auto;
    margin: 0;
    accent-color: #5cc5bd;
}

.form-submit {
    padding-top: 8px;
}

.footer-new {
    padding: 32px 0;
}

.footer-new .container {
    display: grid;
    grid-template-columns: auto 1fr 1fr auto;
    gap: 24px;
    align-items: center;
}

.footer-photo-new {
    border-radius: 50%;
    object-fit: cover;
    width: 140px;
    height: 140px;
    box-shadow: 0 12px 26px rgba(19, 58, 90, 0.12);
}

.footer-logo-new {
    border-radius: 0;
    object-fit: contain;
    width: 260px;
    height: auto;
}

.footer-name-new h3 {
    margin: 0 0 6px;
}

.footer-name-new p,
.footer-contact-new p,
.footer-logo-text {
    margin: 0;
}

.footer-contact-new {
    display: grid;
    gap: 6px;
}

.footer-logo-wrapper-new {
    text-align: right;
}

.footer-logo-text {
    margin-top: 8px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.copyright {
    opacity: 0.82;
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .form-row,
    .form-row-3col,
    .checkbox-group,
    .footer-new .container {
        grid-template-columns: 1fr;
    }

    .footer-logo-wrapper-new {
        text-align: left;
    }
}
