/* Contact Us Premium Redesign CSS */

:root {
    --brand-blue: #013f8c;
    --dark-surface: #121212;
    --premium-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.contact-section-premium {
    padding: 100px 0;
    background-color: #f6f8fb;
}

.master-card-container {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    display: flex;
    flex-wrap: wrap;
    min-height: 700px;
    margin-bottom: 40px;
}

/* Left Side: Dark Info Panel */
.info-panel-dark {
    flex: 1 1 45%;
    background: var(--dark-surface);
    padding: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.panel-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.panel-subtitle {
    font-size: 16px;
    opacity: 0.6;
    margin-bottom: 60px;
    font-weight: 400;
}

.office-block {
    margin-bottom: 50px;
}

.office-title-mini {
    color: #00e5ff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
    opacity: 0.9;
}

.info-item-refined {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-item-refined i {
    color: #74b9ff;
    font-size: 18px;
    margin-top: 4px;
}

.info-item-refined .value {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    flex: 1;
}

/* Right Side: White Form Panel */
.form-panel-white {
    flex: 1 1 55%;
    background: #fff;
    padding: 60px;
}

.form-title-refined {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 48px;
    letter-spacing: -1px;
}

.underlined-input-group {
    position: relative;
    margin-bottom: 45px;
}

.underlined-input {
    width: 100%;
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    padding: 12px 0 !important;
    font-size: 16px !important;
    background: transparent !important;
    color: #111 !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
}

.underlined-input:focus {
    border-bottom-color: var(--brand-blue) !important;
    outline: none !important;
    box-shadow: none !important;
}

.input-label-refined {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
    display: block;
}

.input-label-refined span {
    color: #ff5252;
    margin-left: 4px;
}

.btn-send-dark {
    background: var(--brand-blue) !important;
    color: #fff !important;
    padding: 16px 60px !important;
    border-radius: 48px !important;
    font-weight: 700 !important;
    border: none !important;
    transition: all 0.3s ease !important;
    float: right;
}

.btn-send-dark:hover {
    background: #002d66 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Co-Founders Card */
.founders-card-refined {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 40px;
    border: 1px solid #f2f2f2;
}

.founders-title-mini {
    color: #00e5ff;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
    text-align: left;
}

.founder-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.founder-icon {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    font-size: 24px;
    border: 1px solid #f1f5f9;
}

.founder-info .name {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    display: block;
}

.founder-info .email {
    font-size: 14px;
    color: #64748b;
}

.map-section-refined {
    margin-top: 80px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    height: 500px;
}

@media (max-width: 991px) {
    .master-card-container {
        flex-direction: column;
    }

    .info-panel-dark,
    .form-panel-white {
        padding: 40px;
    }

    .info-panel-dark {
        flex: 1 1 100%;
    }

    .form-panel-white {
        flex: 1 1 100%;
    }
}