/* =========================
   VARIABLES
========================= */
:root {
    --green-dark: #4a7a14;
    --green-main: #82d225;
    --green-mid: #a0e040;
    --green-light: #c2f07a;
    --green-pale: #eefad0;
    --green-mist: #f6fde8;

    --beige: #f8f5f0;
    --cream: #fdfbf8;
    --anthracite: #1e2a25;
    --gray-mid: #6b7c74;
    --gray-light: #e8ede9;
    --white: #ffffff;

    --shadow-sm: 0 2px 8px rgba(29, 58, 40, 0.08);
    --shadow-md: 0 8px 32px rgba(29, 58, 40, 0.12);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;

    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =========================
   GLOBAL LAYOUT + UTILITIES
========================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 96px 0;
}

.text-center {
    text-align: center;
}

.bg-white {
    background: var(--white);
}

/* =========================
   TYPOGRAPHY
========================= */
body {
    font-family: var(--font-body);
    color: var(--anthracite);
    background: var(--cream);
    font-size: 16px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h4 {
    font-size: 1.1rem;
}

p {
    color: var(--gray-mid);
    line-height: 1.75;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-mid);
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* =========================
   BUTTONS
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--green-main);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(45, 106, 79, 0.35);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 106, 79, 0.4);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}


/* =========================
   Kontakt page sections
========================= */
.page-hero {
    padding: 140px 0 72px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    color: white;
    position: relative;
    margin: 16px 0px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: start;
}

.contact-sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
}

.contact-info-box {
    background: var(--green-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: white;
}

.contact-info-box h3 {
    color: white;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    color: var(--green-light);
}

.contact-item h5 {
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-item-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.contact-item-link:hover {
  background: rgba(45, 106, 79, 0.08);
  transform: translateX(4px);
  padding-left: 8px;
  padding-right: 8px;
}

.contact-item-link:hover .contact-item-icon {
  background: var(--green-main);
  color: var(--white);
}

.contact-item-link:hover h5 {
  color: var(--green-main);
}

.pricing-note {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-note p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
}

.contact-phone-note {
    color: rgba(255, 255, 255, 0.5);
}

.contact-pricing-note-title {
    color: white;
}

.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
}

.contact-form-box h3 {
    color: var(--green-dark);
    margin-bottom: 8px;
}

.contact-form-box>p {
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--anthracite);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-family: var(--font-body);
    color: var(--anthracite);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-main);
    background: white;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7c74' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-success {
    display: none;
    background: #f4fbf4;
    border: 1px solid rgba(34, 197, 94, 0.18);

    border-radius: 24px;

    padding: 40px 32px;

    text-align: center;

    flex-direction: column;
    align-items: center;

    gap: 18px;
}

.success-icon {
    width: 72px;
    height: 72px;

    border-radius: 50%;

    background: rgba(34, 197, 94, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green-main);
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.form-success h4 {
    margin: 0;
    font-size: 1.4rem;
}

.form-success p {
    max-width: 420px;
    color: var(--text-light);
    line-height: 1.7;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--green-main);
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--gray-mid);
}

.form-checkbox a {
    color: var(--green-main);
    font-weight: 500;
    text-decoration: underline;
}

.form-checkbox a:hover {
    color: var(--green-dark);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-error {
    display: none;
    margin-top: 6px;
    font-size: 0.78rem;
    color: #b42318;
    line-height: 1.4;
}

.form-error.visible {
    display: block;
}

.form-message {
    display: none;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.form-message.visible {
    display: block;
}

.form-message-error {
    background: #fff1f0;
    color: #b42318;
    border: 1px solid #ffccc7;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #b42318;
    background: #fffafa;
}

.form-checkbox.has-error input[type="checkbox"] {
    outline: 2px solid #b42318;
    outline-offset: 2px;
}

.contact-submit-btn {
    width: 100%;
    justify-content: center;
}

.contact-form-note {
    font-size: 0.78rem;
    text-align: center;
    margin-top: 12px;
    color: var(--gray-mid);
}

.area-section {
    background: var(--green-mist);
    border-top: 1px solid var(--gray-light);
}

.area-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.contact-area-cities {
    justify-content: center;
    margin-top: 24px;
}

.city-tag {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--green-dark);
}

.contact-area-description {
    max-width: 560px;
    margin: 0 auto;
}

.kontakt-grid,
.contact-sidebar,
.contact-info-box,
.contact-form-box,
.contact-form {
    width: 100%;
    min-width: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    max-width: 100%;
    box-sizing: border-box;
}

.whatsapp-fixed {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--green-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-fixed:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    color: var(--green-light);
}

.whatsapp-fixed svg {
    width: 30px;
    height: 30px;
    display: block;
}

/* =========================
   RESPONSIVE MEDIA QUERIES
========================= */
@media(max-width:1024px) {
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media(max-width:768px) {
    section {
        padding: 64px 0;
    }

    .contact-sidebar {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-fixed {
        display: none;
    }
}

@media(max-width:480px) {
    .contact-info-box {
        padding: 28px 24px;
    }

    .contact-form-box {
        padding: 28px 20px;
    }
}