/* ============================================
   FRESH CONTACT PAGE - Complete Styles
   Based on Stitch Design b1b2dc6c
   ============================================ */

/* ── Hero Section ── */
.fresh-technical-pattern {
    background-color: #004A99;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
}

.fresh-contact-hero-label {
    display: block;
    color: #E40712;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.fresh-contact-hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.fresh-contact-hero-title span {
    color: rgba(255, 255, 255, 0.7);
}

.fresh-contact-hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 400;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.fresh-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E40712;
    color: #fff !important;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.fresh-btn-hero:hover {
    background: #c50610;
    box-shadow: 0 12px 30px rgba(228, 7, 18, 0.3);
    transform: translateY(-2px);
    color: #fff !important;
}

.fresh-btn-hero svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.fresh-btn-hero:hover svg {
    transform: translateX(4px);
}

.fresh-hero-watermark {
    position: absolute;
    right: -5%;
    top: -5%;
    opacity: 0.06;
    pointer-events: none;
    font-size: 350px !important;
    color: #fff;
    z-index: 0;
}

/* ── Contact Cards (Left Column) ── */
.fresh-contact-card {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: box-shadow 0.3s ease;
    margin-bottom: 16px;
}

.fresh-contact-card:last-child {
    margin-bottom: 0;
}

.fresh-contact-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fresh-contact-card__icon {
    background: rgba(0, 74, 153, 0.08);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fresh-contact-card__icon svg {
    width: 24px;
    height: 24px;
    fill: #004A99;
}

.fresh-contact-card__content {
    flex: 1;
    min-width: 0;
}

.fresh-contact-card__title {
    color: #004A99;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.fresh-contact-card__text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.fresh-contact-card__text p {
    margin: 0 0 4px;
}

.fresh-contact-card__text .highlight {
    color: #E40712;
    font-weight: 700;
}

.fresh-contact-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #004A99;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.fresh-contact-card__link:hover {
    color: #E40712;
}

.fresh-icon-arrow {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.fresh-icon-arrow svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.fresh-contact-card__link:hover .fresh-icon-arrow {
    transform: translateX(4px);
}

/* ── Contact Map ── */
.fresh-contact-map {
    width: 100%;
    height: 200px;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    position: relative;
    margin-top: 16px;
}

.fresh-contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Form Container (Right Column) ── */
.fresh-form-container {
    background: #fff;
    padding: 40px 48px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.fresh-form-title {
    color: #004A99;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
}

.fresh-form-desc {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Form Inner & Grid */
.fresh-contact-form-inner {
    width: 100%;
}

.fresh-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form Fields */
.fresh-form-container .form-field {
    margin-bottom: 0;
}

.fresh-form-container label,
.fresh-contact-form-inner label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #004A99;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.fresh-form-container input[type="text"],
.fresh-form-container input[type="email"],
.fresh-form-container input[type="tel"],
.fresh-form-container select,
.fresh-form-container textarea,
.fresh-contact-form-inner input[type="text"],
.fresh-contact-form-inner input[type="email"],
.fresh-contact-form-inner input[type="tel"],
.fresh-contact-form-inner select,
.fresh-contact-form-inner textarea {
    width: 100%;
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.fresh-form-container input:focus,
.fresh-form-container select:focus,
.fresh-form-container textarea:focus,
.fresh-contact-form-inner input:focus,
.fresh-contact-form-inner select:focus,
.fresh-contact-form-inner textarea:focus {
    outline: none;
    border-color: #E40712;
    box-shadow: 0 0 0 3px rgba(228, 7, 18, 0.08);
    background: #fff;
}

.fresh-form-container textarea,
.fresh-contact-form-inner textarea {
    resize: vertical;
    min-height: 100px;
}

.fresh-form-container select,
.fresh-contact-form-inner 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='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* Submit Button */
.fresh-submit-btn,
.fresh-form-container input[type="submit"],
.fresh-contact-form-inner input[type="submit"] {
    width: 100%;
    background: #E40712 !important;
    color: #fff !important;
    font-weight: 900;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fresh-submit-btn:hover,
.fresh-form-container input[type="submit"]:hover,
.fresh-contact-form-inner input[type="submit"]:hover {
    background: #c50610 !important;
    box-shadow: 0 8px 20px rgba(228, 7, 18, 0.35);
    transform: translateY(-1px);
}

/* CF7 overrides for proper display */
.fresh-form-container .wpcf7-form p {
    margin: 0;
}

.fresh-form-container .wpcf7-form br {
    display: none;
}

.fresh-form-container .wpcf7-form-control-wrap {
    display: block;
}

.fresh-form-container .wpcf7-response-output {
    margin: 16px 0 0;
    border-radius: 6px;
    font-size: 14px;
}

.fresh-form-container .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #E40712;
    margin-top: 4px;
}

/* ── Partner Section fix ── */
.fresh-partner-section-title {
    color: #004A99;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.fresh-partner-divider {
    height: 4px;
    width: 80px;
    background: #E40712;
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .fresh-contact-hero-title {
        font-size: 36px;
    }

    .fresh-form-container {
        padding: 30px;
    }

    .fresh-form-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .fresh-contact-hero-title {
        font-size: 28px;
    }

    .fresh-contact-hero-desc {
        font-size: 16px;
    }

    .fresh-btn-hero {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .fresh-hero-watermark {
        display: none;
    }

    .fresh-form-container {
        padding: 24px 20px;
    }

    .fresh-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fresh-form-title {
        font-size: 22px;
    }

    .fresh-contact-card {
        padding: 18px;
        gap: 14px;
    }

    .fresh-contact-card__title {
        font-size: 15px;
    }

    .fresh-contact-card__text {
        font-size: 13px;
    }

    .fresh-contact-map {
        height: 160px;
    }
}