/* Kontakt Page Specific Styles */

.hero {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #99f6e4;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
    padding: 0;
    background: none;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.contact-info-card {
    background: none;
    padding: 28px 24px;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    border-right: 1px solid #e5e7eb;
}

.contact-info-card:last-child {
    border-right: none;
}

.contact-info-card:hover {
    transform: none;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 12px;
}

.contact-icon i {
    font-size: 20px;
    color: #0f766e;
}

.contact-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.contact-content {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.contact-content a {
    color: inherit;
    text-decoration: none;
}

.contact-content a:hover {
    text-decoration: underline;
}

.contact-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-description {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    gap: 8px;
    margin-top: 16px;
}

/* Map Section */
.map-placeholder {
    background: #e5e7eb;
    height: 500px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.map-content {
    text-align: center;
    color: #6b7280;
}

.map-content i {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
}

.map-content p {
    font-weight: 600;
    margin-bottom: 4px;
}

.map-content span {
    font-size: 0.9rem;
}

.location-info {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.location-section {
    margin-bottom: 20px;
}

.location-section:last-child {
    margin-bottom: 0;
}

.location-section h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.location-section p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Emergency Section */
.emergency-section {
    padding: 60px 0;
    background: #fef2f2;
    text-align: center;
}

.emergency-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.emergency-description {
    color: #6b7280;
    margin-bottom: 24px;
}

.btn-emergency {
    background: #dc2626;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Success Message */
.success-message {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: none;
}

.success-message.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-info-card {
        padding: 20px 16px;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .contact-info-card:nth-child(odd) {
        border-right: 1px solid #e5e7eb;
    }

    .contact-info-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .emergency-title {
        font-size: 1.5rem;
    }
}
