/* ------------------------------------- */
/* PRICING HERO SECTION                  */
/* ------------------------------------- */
.hero-section-pricing {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: 
        linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0) 80%, rgba(255,255,255,1) 100%),
        url('https://res.cloudinary.com/djxcfeqsb/image/upload/v1784916799/Valley_with_dirt_path_2K_202607242106_wd1l5a.jpg');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    width: 100%;
}

.page-container {
    width: 100%;
    max-width: 940px;
    margin: -80px auto 100px auto;
    position: relative;
    z-index: 10;
    padding: 20px;
}

.quote-form-wrapper {
    width: 100%;
    background: #ffffff;
    border-radius: 32px;
    border: 1px solid #eaeaea;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.05);
    padding: 56px;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-content { position: relative; z-index: 10; transition: opacity 0.4s ease, transform 0.4s ease; }
.form-content.hide { opacity: 0; transform: scale(0.95); pointer-events: none; position: absolute; visibility: hidden; }

.input-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px; margin-bottom: 48px; }
.input-group { position: relative; width: 100%; }

.input-group input, .input-group select {
    width: 100%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #111111;
    padding: 24px 20px 10px 20px;
    appearance: none; -webkit-appearance: none;
    transition: all 0.2s ease;
}

.input-group input:focus, .input-group select:focus {
    outline: none; border-color: #111111; box-shadow: 0 0 0 1px #111111;
}

.input-group label {
    position: absolute; left: 20px; top: 18px;
    font-size: 15px; color: #888888; font-weight: 400;
    pointer-events: none; transform-origin: left top;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-group input:focus ~ label, .input-group input:not(:placeholder-shown) ~ label,
.input-group select:focus ~ label, .input-group select:valid ~ label {
    transform: translateY(-8px) scale(0.75);
    font-weight: 600; color: #111111;
}

.select-wrapper::before {
    content: '▼'; font-size: 8px; color: #999; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); pointer-events: none; transition: transform 0.3s ease; z-index: 3;
}
.select-wrapper:focus-within::before { transform: translateY(-50%) rotate(180deg); color: #111111; }

.budget-section { margin-bottom: 48px; }
.budget-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.budget-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #888888; }

.currency-switch { display: flex; background: #f5f5f5; border-radius: 50px; padding: 4px; position: relative; }
.currency-btn { background: transparent; border: none; color: #666666; font-weight: 600; font-size: 12px; padding: 6px 16px; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; position: relative; z-index: 2; }
.currency-btn.active { color: #ffffff; }
.currency-slider-bg { position: absolute; top: 4px; left: 4px; height: calc(100% - 8px); width: calc(50% - 4px); background: #111111; border-radius: 50px; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1; }
.currency-switch[data-active="USD"] .currency-slider-bg { transform: translateX(100%); }

.budget-display { font-size: 48px; font-weight: 700; letter-spacing: -1.5px; color: #111111; margin-bottom: 32px; display: block; font-variant-numeric: tabular-nums; }
.budget-slider { -webkit-appearance: none; width: 100%; height: 6px; background: #eaeaea; border-radius: 12px; outline: none; position: relative; cursor: pointer; }
.budget-slider::before { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: var(--slider-fill, 50%); background: #111111; border-radius: 10px; pointer-events: none; }
.budget-slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: #ffffff; border: 2px solid #111111; cursor: pointer; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1); position: relative; z-index: 2; }
.budget-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }

.services-section-pills { margin-bottom: 48px; }
.services-grid-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.service-pill { padding: 12px 24px; background: #ffffff; border: 1px solid #eaeaea; border-radius: 50px; font-size: 13px; font-weight: 600; color: #555; cursor: pointer; transition: all 0.2s ease; user-select: none; display: flex; align-items: center; gap: 12px; }
.service-pill:hover { border-color: #999999; color: #111111; }
.service-pill.active { background: #111111; border-color: #111111; color: #ffffff; }

.check-dot { width: 16px; height: 16px; border-radius: 50%; border: 1px solid #cccccc; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.service-pill.active .check-dot { border-color: #ffffff; background: #ffffff; }
.check-dot svg { width: 9px; height: 9px; color: #111111; stroke-dasharray: 20; stroke-dashoffset: 20; transition: stroke-dashoffset 0.3s ease; }
.service-pill.active .check-dot svg { stroke-dashoffset: 0; }

.form-actions { display: flex; justify-content: flex-end; padding-top: 32px; border-top: 1px solid #eaeaea; }
.btn-submit { background: #1e1e1e; color: #ffffff; padding: 0 40px; height: 56px; border-radius: 30px; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid #1e1e1e; cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; font-family: inherit; }
.btn-submit:hover:not(.is-loading) { background: #333333; border-color: #333333; }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card { background: #ffffff; border: 1px solid #eaeaea; border-radius: 20px; padding: 40px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); transition: transform 0.3s ease, border-color 0.3s ease; }
.contact-card:hover { transform: translateY(-4px); border-color: #111111; }
.contact-icon { width: 44px; height: 44px; border-radius: 50%; background: #f5f5f5; display: flex; align-items: center; justify-content: center; color: #111111; transition: all 0.3s ease; }
.contact-card:hover .contact-icon { background: #111111; color: #ffffff; }

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .quote-form-wrapper { padding: 32px 24px; border-radius: 24px; }
    .input-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-grid { grid-template-columns: 1fr; }
}
