/* ===== KONTAKT PAGE SPECIFIC STYLES ===== */

/* Hero Banner */
.kontakt-hero {
    position: relative;
    padding-top: 58px;
    height: 300px;
    background: var(--black);
    overflow: hidden;
}
@media (min-width: 768px) { 
    .kontakt-hero { 
        padding-top: 68px; 
        height: 593px; 
    } 
}

.kontakt-hero-image {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) { .kontakt-hero-image { top: 96px; } }

.kontakt-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kontakt-hero-title {
    position: absolute;
    bottom: 30px;
    left: 20px;
    font-family: var(--font-quicksand);
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
@media (min-width: 768px) {
    .kontakt-hero-title {
        bottom: 50px;
        left: 160px;
        font-size: 120px;
    }
}

/* Locations Section */
.locations-section {
    padding: 40px 0;
    background: var(--white);
}
@media (min-width: 768px) { .locations-section { padding: 60px 0; } }

.locations-section:nth-child(even) {
    background: #F8F8F8;
}

.location-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}
@media (min-width: 992px) {
    .location-row {
        grid-template-columns: 1fr 365px;
        gap: 60px;
    }
}

.location-info-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-name-large {
    font-family: var(--font-quicksand);
    font-size: 32px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.2;
}
@media (min-width: 768px) { .location-name-large { font-size: 50px; } }

.location-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-detail-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-detail-row svg {
    width: 32px;
    height: 32px;
    fill: var(--yellow);
    flex-shrink: 0;
}
@media (min-width: 768px) { .location-detail-row svg { width: 42px; height: 42px; } }

.location-detail-row span,
.location-detail-row a {
    font-family: var(--font-quicksand);
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
}
@media (min-width: 768px) { 
    .location-detail-row span,
    .location-detail-row a { font-size: 25px; } 
}

.location-detail-row a:hover {
    text-decoration: underline;
}

.location-order-btn {
    margin-top: 15px;
    align-self: flex-start;
}

.location-map-side {
    position: relative;
}

.location-map-image {
    position: relative;
    width: 100%;
    max-width: 365px;
    aspect-ratio: 365/347;
    border-radius: 28px;
    overflow: hidden;
    margin: 0 auto;
}
@media (min-width: 992px) {
    .location-map-image {
        margin: 0 0 0 auto;
    }
}

.location-map-image img,
.location-map-image iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 60px;
    padding: 8px 20px;
    font-family: var(--font-quicksand);
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    z-index: 10;
}
@media (min-width: 768px) { .location-badge { font-size: 16px; padding: 10px 25px; } }

/* Contact Form Section */
.contact-form-section {
    background: #363636;
    padding: 60px 0 80px;
}
@media (min-width: 768px) { .contact-form-section { padding: 80px 0 120px; } }

.contact-form-title {
    font-family: var(--font-quicksand);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}
@media (min-width: 768px) { .contact-form-title { font-size: 50px; margin-bottom: 60px; } }

.contact-form-wrapper {
    max-width: 772px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group--inline {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.math-input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.math-input-wrapper input {
    width: 130px;
}

.field-error {
    display: none;
    font-family: var(--font-quicksand);
    font-size: 13px;
    color: #ff6b6b;
    padding-left: 16px;
}

.field-error.visible {
    display: block;
}

.form-group input.invalid,
.form-group textarea.invalid {
    border: 2px solid #ff6b6b;
    outline: none;
}

.form-group input.valid,
.form-group textarea.valid {
    border: 2px solid #51cf66;
}

.form-group label {
    font-family: var(--font-quicksand);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}
@media (min-width: 768px) { .form-group label { font-size: 25px; } }

.form-group input,
.form-group textarea {
    background: var(--white);
    border-radius: 60px;
    border: none;
    padding: 20px 30px;
    font-family: var(--font-quicksand);
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    box-shadow: 0px 3px 13px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) { 
    .form-group input,
    .form-group textarea { font-size: 25px; padding: 22px 35px; } 
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B3B3B3;
}

.form-group textarea {
    border-radius: 40px;
    min-height: 200px;
    resize: vertical;
}
@media (min-width: 768px) { .form-group textarea { min-height: 380px; } }

.contact-submit-btn {
    background: var(--yellow);
    border-radius: 45px;
    border: none;
    padding: 18px 30px;
    font-family: var(--font-quicksand);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}
@media (min-width: 768px) { .contact-submit-btn { font-size: 24px; padding: 20px 40px; } }

.contact-submit-btn:hover {
    background: #e5a016;
}
