:root {
    --primary-color: #003049;
    --accent-color: #B00000;
    --surface-color: #ffffff;
    --text-main: #333333;
    --text-muted: #6c757d;
    --border-radius-card: 16px;
}

/* --- Sekce --- */
.contact-section {
    background-color: #fcfcfc;
    padding: 80px 0;
}

/* --- Nadpisy --- */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.section-title-main {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title-main::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 20px auto 0;
}

/* --- Info Karty (Levý sloupec) --- */
.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius-card);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center; /* Nebo left, podle preference */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 0; /* Margin řeší Bootstrap grid (gy-4) */
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 48, 73, 0.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(0, 48, 73, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.contact-info-card:hover .icon-circle {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-muted);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-info-card a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--accent-color);
}

/* --- Formulář (Pravý sloupec) --- */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: var(--border-radius-card);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* ZDE ODSTRANĚN BORDER-TOP */
    height: 100%;
}

.contact-form-wrapper h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

/* Úprava inputů */
.input-group-text {
    background-color: #f8f9fa;
    border-color: #eee;
    color: var(--primary-color);
    border-right: none;
    min-width: 45px;
    justify-content: center;
}

.form-control, 
input[type="text"], 
input[type="email"], 
textarea {
    border: 1px solid #eee;
    border-left: none;
    padding: 12px 15px;
    background-color: #fcfcfc;
    border-radius: 0 8px 8px 0 !important;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.form-control:focus,
input:focus,
textarea:focus {
    background-color: #fff;
    box-shadow: none;
    border-color: var(--primary-color);
    outline: none;
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary-color);
    background-color: #fff;
}

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

/* Tlačítko */
.btn-submit-contact {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 48, 73, 0.3);
    width: 100%;
    margin-top: 10px;
}

.btn-submit-contact:hover {
    background-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(176, 0, 0, 0.4);
    transform: translateY(-2px);
    color: #fff;
}