/* ============================================================
   GoalLord Contact  –  Frontend Styles
   ============================================================ */

.goallord-contact {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    box-sizing: border-box;
    line-height: 1.6;
}
.goallord-contact *, .goallord-contact *::before, .goallord-contact *::after {
    box-sizing: inherit;
}

/* ── Two-column layout ────────────────────────────── */
.glct-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.glct-col-left {
    flex: 0 0 55%;
    max-width: 55%;
}

.glct-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ══════════════════════════════════════════════════════
   FORM CARD
   ══════════════════════════════════════════════════════ */
.glct-form-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 40px 36px;
}

.glct-form-heading {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 28px 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    line-height: 1.3;
}

/* ── Form fields ──────────────────────────────────── */
.glct-form {
    position: relative;
}

.glct-field {
    margin-bottom: 20px;
}

.glct-row {
    display: flex;
    gap: 16px;
}

.glct-row-2 > .glct-field {
    flex: 1;
}

.glct-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}

.glct-input,
.glct-textarea,
.glct-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background-color: #f5f5f5;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.glct-input::placeholder,
.glct-textarea::placeholder {
    color: #999;
}

.glct-input:focus,
.glct-textarea:focus,
.glct-select:focus {
    border-color: #2a7f7f;
    background-color: #ffffff;
}

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

/* ── Select wrapper ───────────────────────────────── */
.glct-select-wrap {
    position: relative;
}

.glct-select {
    padding-right: 40px;
    cursor: pointer;
}

.glct-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #999;
}

/* ── Submit button ────────────────────────────────── */
.glct-submit {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    background-color: #1a1a2e;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.glct-submit:hover {
    background-color: #2d2d4a;
}

.glct-submit:active {
    transform: scale(0.99);
}

.glct-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.glct-submit-loading svg {
    animation: glct-spin 1s linear infinite;
}

@keyframes glct-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Form message (success / error) ───────────────── */
.glct-form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.glct-form-message.glct-success {
    background-color: #edf7ed;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.glct-form-message.glct-error {
    background-color: #fdecea;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* ── Validation ───────────────────────────────────── */
.glct-input.glct-invalid,
.glct-textarea.glct-invalid,
.glct-select.glct-invalid {
    border-color: #e74c3c;
}

/* ══════════════════════════════════════════════════════
   LOCATION CARD
   ══════════════════════════════════════════════════════ */
.glct-location-card {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 28px 24px;
}

.glct-location-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    line-height: 1.3;
}

.glct-location-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}

.glct-location-pin {
    flex-shrink: 0;
    margin-top: 2px;
    color: #2a7f7f;
}

.glct-location-pin svg {
    display: block;
}

.glct-location-city {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.3;
}

.glct-location-sub {
    display: block;
    font-size: 14px;
    color: #5a8a7a;
    margin-top: 2px;
    line-height: 1.4;
}

.glct-location-image {
    border-radius: 10px;
    overflow: hidden;
}

.glct-location-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.glct-location-image.glct-grayscale img {
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.glct-location-image.glct-grayscale:hover img {
    filter: grayscale(0%);
}

/* ══════════════════════════════════════════════════════
   CTA / SPEAKING CARD
   ══════════════════════════════════════════════════════ */
.glct-cta-card {
    background-color: #2a7f7f;
    border-radius: 16px;
    padding: 28px 24px;
}

.glct-cta-heading {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    line-height: 1.3;
}

.glct-cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 18px 0;
    line-height: 1.6;
}

.glct-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.glct-cta-link:hover {
    opacity: 0.85;
    color: #ffffff;
}

.glct-cta-link svg {
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   DIGITAL PRESENCE / SOCIAL
   ══════════════════════════════════════════════════════ */
.glct-social {
    padding-top: 8px;
}

.glct-social-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    line-height: 1.3;
}

.glct-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.glct-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
}

.glct-social-icon:hover {
    border-color: #2a7f7f;
    color: #2a7f7f;
    transform: translateY(-2px);
}

.glct-social-icon svg {
    display: block;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .glct-layout {
        flex-direction: column;
    }

    .glct-col-left,
    .glct-col-right {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 540px) {
    .glct-form-card {
        padding: 28px 22px;
    }

    .glct-row {
        flex-direction: column;
        gap: 0;
    }

    .glct-form-heading {
        font-size: 22px;
    }

    .glct-location-card,
    .glct-cta-card {
        padding: 24px 20px;
    }
}
