@keyframes floatBlob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-20px); }
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.25); opacity: 0.85; }
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .map-card iframe { height: 280px; }
}



    .text-gradient {
        background: linear-gradient(135deg, #34D399 0%, #059669 50%, #10b981 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .bg-gradient-mesh {
        background:
                radial-gradient(at 0% 0%, rgba(52, 211, 153, 0.12) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(16, 185, 129, 0.08) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(5, 150, 105, 0.08) 0px, transparent 50%),
                radial-gradient(at 0% 100%, rgba(110, 231, 183, 0.12) 0px, transparent 50%);
    }

    .blob {
        position: absolute;
        filter: blur(80px);
        opacity: 0.35;
        z-index: 0;
        animation: floatBlob 8s ease-in-out infinite;
    }

    @keyframes floatBlob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-20px); }
}

    .glass-card {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: saturate(180%) blur(14px);
        -webkit-backdrop-filter: saturate(180%) blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.6);
    }

    .field {
        position: relative;
    }

    .field input,
    .field textarea {
        width: 100%;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        padding: 1rem 1rem 1rem 3rem;
        font-size: 0.95rem;
        color: #0f172a;
        transition: all 0.2s ease;
    }

    .field textarea {
        min-height: 130px;
        resize: vertical;
    }

    .field input::placeholder,
    .field textarea::placeholder {
        color: #94a3b8;
    }

    .field input:focus,
    .field textarea:focus {
        outline: none;
        border-color: #10b981;
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
    }

    .field .ico {
        position: absolute;
        top: 45px;
        left: 1rem;
        width: 18px;
        height: 18px;
        color: #94a3b8;
        pointer-events: none;
    }

    .field textarea ~ .ico {
        top: 1.15rem;
    }

    .field label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        color: #475569;
        margin-bottom: 0.4rem;
        letter-spacing: 0.01em;
    }

    .submit-btn {
        background: linear-gradient(135deg, #34d399 0%, #059669 100%);
        color: #fff;
        padding: 1rem 1.75rem;
        border-radius: 9999px;
        font-weight: 700;
        font-size: 1rem;
        box-shadow: 0 10px 28px rgba(16, 185, 129, 0.28);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        border: 0;
        cursor: pointer;
    }



    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 36px rgba(16, 185, 129, 0.35);
    }

    .info-card {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        padding: 1.25rem 1.25rem;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .info-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px -16px rgba(16, 185, 129, 0.25);
        border-color: #a7f3d0;
    }

    .info-card .icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
        color: #059669;
        font-size: 1.05rem;
        flex-shrink: 0;
    }

    .info-card .label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 700;
        color: #94a3b8;
        margin-bottom: 0.15rem;
    }

    .info-card .value {
        font-size: 0.98rem;
        font-weight: 600;
        color: #0f172a;
        line-height: 1.35;
        word-break: break-word;
    }

    .info-card .value a {
        color: #0f172a;
        text-decoration: none;
    }

    .info-card .value a:hover { color: #059669; }

    .floating-badge {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 0.85rem 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.15);
    }

    .floating-badge .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #10b981;
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
        animation: pulseDot 1.8s ease-in-out infinite;
    }

    @keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.25); opacity: 0.85; }
}

    .map-card {
        border-radius: 22px;
        overflow: hidden;
        border: 1px solid #e2e8f0;
        background: #fff;
        box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.18);
    }

    .map-card iframe {
        display: block;
        width: 100%;
        height: 380px;
        border: 0;
    }

    .faq-item {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        padding: 1.25rem 1.5rem;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .faq-item:hover {
        border-color: #a7f3d0;
        box-shadow: 0 12px 30px -16px rgba(16, 185, 129, 0.18);
    }

    .faq-item summary {
        list-style: none;
        cursor: pointer;
        font-weight: 600;
        color: #0f172a;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary .chev {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #ecfdf5;
        color: #059669;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.25s ease;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .faq-item[open] summary .chev { transform: rotate(180deg); }

    .faq-item p {
        color: #475569;
        margin-top: 0.85rem;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    @media (max-width: 768px) {
    .map-card iframe { height: 280px; }
}


.submit-btn:disabled,
.submit-btn[aria-busy="true"] {
    opacity: 0.65;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.15);
}