:root {
    --primary: #135bec;
    --primary-hover: #0f4bc4;
    --bg-light: #f6f6f8;
}

body {
    font-family: 'Public Sans', sans-serif;
    background: var(--bg-light);
}

.text-primary-custom {
    color: var(--primary) !important;
}

.bg-primary-custom {
    background: var(--primary) !important;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
    color: #fff;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(19, 91, 236, 0.9), rgba(19, 91, 236, 0.6));
}

.card-hover:hover {
    transform: translateY(-4px);
    transition: .3s;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08);
}

.section-box {
    background: #fff;
    border-radius: .75rem;
    border: 1px solid #eee;
}

.card-custom {
    border-radius: 0.75rem;
    overflow: hidden;
    transition: 0.3s;
}

.card-custom:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12);
    transform: translateY(-3px);
}

.card-hero {
    height: 130px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

.icon-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(6px);
}

.btn-primary-custom {
    background-color: #135bec;
    border: none;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background-color: #0f4bc4;
}

.card-hover {
    transition: all .3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .12);
}

.upload-area {
    transition: all .2s ease;
    cursor: pointer;
}

.upload-area:hover {
    background: #f8f9fa;
    border-color: #135bec;
}

.modal-header-helper {
    flex-direction: row;
}

.modal-body-helper {
    padding: 0.5rem 1.5rem;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-btn {
    width: 40px;
    height: 40px;
}

.map-container {
    height: 160px;
    background: #e5e7eb;
    overflow: hidden;
}

.map-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(20%);
    background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuA3A-gKtfoorvgDWhaxFwjLVj50Ok1i6SOrzIIEKVui7SOSpkZjG3AXQ6gN4rAU26k7h2_MyVDKs1gUgQwXjtYpsFvBTZHeQ8MHsYxRflIThZs09-i9A-U9ayUZ1Js7UIrksFCqGW3CP73ZhspsWBBfgjeTh09SeC00mNvIhqraZ69m4d7vTjxdkXZNvcz8RdVCoeKOS5rMtUDI_WqIA02Ks5l6oyjLME4xDob1W1ZpaAR2H_ti2Dke88HtKy48n31NaSmidC5140a8");
}

.map-button {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: white;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #111;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}