
/* --- 1. PAGE TITLE & BANNER --- */
.cu-page-title {
    font-size: 20px;
    font-weight: 700;
    color: #4A4A4A;
    margin: 0 0 12px 0;
}

.cu-banner {
    position: relative;
    background: linear-gradient(90deg, #20707F 0%, #2B7C8C 40%, #6BA5B1 80%, #DAE7EE 100%);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 140px;
}

.cu-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cu-circle-1 {
    width: 180px;
    height: 180px;
    top: -90px;
    left: 8%;
}

.cu-circle-2 {
    width: 220px;
    height: 220px;
    top: -110px;
    left: 38%;
}

.cu-circle-3 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 52%;
}

.cu-banner-content {
    display: flex;
    align-items: center;
    padding: 24px 32px;
    gap: 28px;
    flex: 1;
    z-index: 2;
}

.cu-main-text {
    flex: 0 0 auto;
    width: 320px;
}

    .cu-main-text h2 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 8px 0;
        color: #FFFFFF;
        white-space: nowrap;
    }

    .cu-main-text p {
        font-size: 12px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.95);
        margin: 0;
    }

.cu-divider {
    width: 1px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.3);
}

.cu-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cu-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.cu-stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
}

.cu-illustration {
    position: relative;
    width: 280px;
    z-index: 3;
}

    .cu-illustration img {
        position: absolute;
        bottom: 0;
        right: 20px;
        height: 95%;
        width: auto;
        object-fit: contain;
        object-position: bottom right;
    }

/* --- 2. CONTACT CARDS GRID --- */
.cu-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Reduced gap */
    margin-top: 20px; /* Reduced space below banner */
    margin-bottom: 24px; /* Reduced space above Quick Actions */
}

.cu-contact-card {
    border-radius: 12px;
    padding: 20px; /* Reduced padding */
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cu-card-icon {
    width: 44px; /* Slightly smaller icon box */
    height: 44px;
    background-color: #FFFFFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

    .cu-card-icon svg {
        width: 22px;
        height: 22px;
        stroke-width: 1.5;
    }

.cu-card-label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.cu-card-value {
    font-size: 16px; /* Reduced text size for better fit */
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.cu-card-subtext {
    font-size: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
    flex: 1;
}

    .cu-card-subtext svg {
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }

.cu-card-btn {
    background-color: #2D72D9;
    color: #FFFFFF;
    border: none;
    padding: 10px; /* Tighter button padding */
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    width: 100%;
    transition: background-color 0.2s;
    margin-top: auto;
}

    .cu-card-btn:hover {
        background-color: #235bb3;
    }

/* Gradients: Strictly Lighter Left to Darker Right */
.cu-card-address {
    background: linear-gradient(90deg, #F8F7FF 0%, #E0E7FF 100%);
}

    .cu-card-address .cu-card-icon svg {
        stroke: #312E81;
    }

    .cu-card-address .cu-card-label {
        color: #4F46E5;
    }

    .cu-card-address .cu-card-value {
        color: #1E1B4B;
    }

    .cu-card-address .cu-card-subtext {
        color: #64748B;
    }

.cu-card-email {
    background: linear-gradient(90deg, #FFF5F5 0%, #FCE8E8 100%);
}

    .cu-card-email .cu-card-icon svg {
        stroke: #9F1239;
    }

    .cu-card-email .cu-card-label {
        color: #9F1239;
    }

    .cu-card-email .cu-card-value {
        color: #722A26;
    }

    .cu-card-email .cu-card-subtext {
        color: #883B37;
    }

.cu-card-phone {
    background: linear-gradient(90deg, #F4FDF6 0%, #DCFCE7 100%);
}

    .cu-card-phone .cu-card-icon svg {
        stroke: #16A34A;
    }

    .cu-card-phone .cu-card-label {
        color: #165A36;
    }

    .cu-card-phone .cu-card-value {
        color: #14532D;
    }

    .cu-card-phone .cu-card-subtext {
        color: #237648;
    }

/* --- 3. QUICK CONTACT ACTIONS --- */
.cu-qca-container {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px; /* Reduced from 24px */
    margin-bottom: 24px; /* Reduced from 40px */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.cu-qca-header {
    margin-bottom: 16px;
}

    .cu-qca-header h3 {
        font-size: 16px;
        font-weight: 700;
        color: #334155;
        margin: 0 0 4px 0;
    }

    .cu-qca-header p {
        font-size: 13px;
        color: #64748B;
        margin: 0;
    }

.cu-qca-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cu-qca-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px; /* Tighter buttons */
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    border: 1px solid transparent;
    width: 100%;
}

    .cu-qca-btn:hover {
        opacity: 0.85;
        transform: translateY(-1px);
    }

    .cu-qca-btn svg {
        width: 16px;
        height: 16px;
        stroke-width: 1.5;
        fill: none;
        stroke: currentColor;
    }

.cu-btn-whatsapp {
    background-color: #ECFDF5;
    color: #059669;
    border-color: #D1FAE5;
}

.cu-btn-call {
    background-color: #FFFBEB;
    color: #92400E;
    border-color: #FEF3C7;
}

.cu-btn-email {
    background-color: #FEF2F2;
    color: #9F1239;
    border-color: #FEE2E2;
}

.cu-btn-maps {
    background-color: #F5F3FF;
    color: #4338CA;
    border-color: #EDE9FE;
}

/* --- 4. MAP & FORM SECTION --- */
.cu-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; /* Tighter gap */
    margin-bottom: 32px;
}

.cu-action-card {
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px; /* Reduced padding */
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.cu-action-header {
    margin-bottom: 16px;
}

    .cu-action-header h3 {
        font-size: 16px;
        font-weight: 700;
        color: #1E293B;
        margin: 0 0 4px 0;
    }

    .cu-action-header p {
        font-size: 12px;
        color: #64748B;
        margin: 0;
    }

/* Tighter Map */
.cu-map-wrapper {
    position: relative;
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #F1F5F9;
    margin-bottom: 16px; /* Reduced */
    min-height: 200px; /* ✅ Significantly reduced map height */
}

    .cu-map-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.cu-map-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cu-badge-location {
    top: 12px;
    right: 12px;
    background-color: #16A34A;
    color: #FFFFFF;
    border: 1px solid #14532D;
}

    .cu-badge-location svg {
        width: 12px;
        height: 12px;
    }

.cu-badge-interactive {
    bottom: 40%;
    right: 16%;
    background-color: #FFFFFF;
    color: #1E293B;
}

.cu-map-pin {
    position: absolute;
    top: 45%;
    left: 45%;
    background-color: #37473F;
    border: 2px solid #FFFFFF;
    padding: 6px;
    border-radius: 10px;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

    .cu-map-pin svg {
        width: 18px;
        height: 18px;
    }

/* Tighter Form */
.cu-form-fields {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Tighter gap */
    flex: 1;
    margin-bottom: 16px;
}

.cu-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px; /* Tighter gap */
}

.cu-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cu-form-label {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}

.cu-form-input, .cu-form-select, .cu-form-textarea {
    background-color: #F3F3F3;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 10px 12px; /* Reduced vertical padding */
    font-size: 13px;
    color: #1E293B;
    font-family: inherit;
    transition: all 0.2s;
}

    .cu-form-input:focus, .cu-form-select:focus, .cu-form-textarea:focus {
        outline: none;
        background-color: #FFFFFF;
        border-color: #94A3B8;
        box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.1);
    }

    .cu-form-input::placeholder, .cu-form-textarea::placeholder {
        color: #94A3B8;
    }

.cu-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    padding-right: 32px;
}

.cu-form-textarea {
    resize: vertical;
    min-height: 80px; /* Reduced textarea height */
}

.cu-btn-primary {
    background-color: #2D72D9;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 12px; /* Tighter button padding */
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

    .cu-btn-primary:hover {
        background-color: #235BB3;
    }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1200px) {
    .cu-banner-content {
        padding: 24px 20px;
        gap: 20px;
    }

    .cu-main-text {
        width: 260px;
    }

        .cu-main-text h2 {
            white-space: normal;
        }

    .cu-illustration {
        width: 200px;
    }
}

@media (max-width: 1024px) {
    .cu-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cu-qca-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .cu-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 20px;
    }

    .cu-banner-content {
        flex-direction: column;
        width: 100%;
        padding: 24px;
    }

    .cu-main-text h2 {
        white-space: normal;
    }

    .cu-divider {
        width: 100px;
        height: 1px;
    }

    .cu-stat {
        align-items: center;
    }

    .cu-illustration {
        width: 100%;
        min-height: 180px;
    }

        .cu-illustration img {
            right: auto;
            left: 50%;
            transform: translateX(-50%);
            height: 160px;
            object-position: center bottom;
        }

    .cu-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cu-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .cu-qca-grid {
        grid-template-columns: 1fr;
    }

    .cu-form-row {
        grid-template-columns: 1fr;
    }
}

