/* =============================================
   TAXI JACK — Ritcalculator (Cyber Urban)
   /css/sections/calculator.css
   ============================================= */


/* --- CALCULATOR COCKPIT (replaces action-cockpit) --- */
.calc-cockpit {
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 4px solid #ffc000;
    padding: 0;
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
    transform: skew(-3deg);
}

.calc-cockpit > * {
    transform: skew(3deg);
}

/* Subtle scanning line animation */
.calc-cockpit::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: -100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,192,0,0.3), transparent);
    animation: calcScanline 4s linear infinite;
    pointer-events: none;
    z-index: 50;
}

@keyframes calcScanline {
    0%   { top: 0; }
    100% { top: 100%; }
}


/* --- COCKPIT HEADER --- */
.calc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.3);
}

.calc-header .calc-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-header .calc-title i {
    color: #ffc000;
    font-size: 14px;
}

.calc-header .signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}

.calc-header .signal-bars .bar {
    width: 4px;
    background: #4ade80;
    border-radius: 2px;
    animation: calcBarPulse 2s ease-in-out infinite;
}

.calc-header .signal-bars .b1 { height: 5px; animation-delay: 0s; }
.calc-header .signal-bars .b2 { height: 10px; animation-delay: 0.2s; }
.calc-header .signal-bars .b3 { height: 16px; animation-delay: 0.4s; }

@keyframes calcBarPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}


/* --- COCKPIT BODY --- */
.calc-body {
    padding: 28px;
    position: relative;
}


/* ===========================
   STATE: FORM
   =========================== */

/* Address Input Group */
.rc-input-group {
    position: relative;
    margin-bottom: 20px;
}

.rc-input-row {
    position: relative;
    display: flex;
    align-items: center;
}

.rc-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    z-index: 2;
    font-weight: 900;
}

.rc-icon-vertrek {
    background: #3b82f6;
    color: #fff;
}

.rc-icon-bestemming {
    background: #22c55e;
    color: #fff;
}

.rc-input-group input {
    width: 100%;
    padding: 16px 16px 16px 54px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    outline: none;
    transition: all 0.25s;
}

.rc-input-group input::placeholder {
    color: #666;
    font-style: italic;
}

.rc-input-group input:focus {
    border-color: #ffc000;
    background: rgba(255,192,0,0.04);
    box-shadow: 0 0 0 3px rgba(255,192,0,0.08);
}

.rc-input-group input.rc-filled {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
}

/* Connector line between inputs */
.rc-connector {
    position: absolute;
    left: 27px;
    top: 100%;
    width: 2px;
    height: 20px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.2) 0px,
        rgba(255,255,255,0.2) 4px,
        transparent 4px,
        transparent 8px
    );
    z-index: 1;
}

/* Person selector */
.rc-personen-group {
    margin-bottom: 22px;
}

.rc-icon-personen {
    background: #ffc000;
    color: #000;
    font-size: 12px;
}

.rc-personen-group select {
    width: 100%;
    padding: 16px 40px 16px 54px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    outline: none;
    transition: all 0.25s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffc000' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.rc-personen-group select:focus {
    border-color: #ffc000;
    background-color: rgba(255,192,0,0.04);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffc000' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    box-shadow: 0 0 0 3px rgba(255,192,0,0.08);
}

.rc-personen-group select option {
    background: #1a1a1a;
    color: #fff;
}


/* Shake animation for validation */
.rc-shake {
    animation: rcShake 0.5s ease;
}

@keyframes rcShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* Bereken Button */
.rc-bereken-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: #ffc000;
    color: #000;
    border: none;
    border-radius: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    margin-top: 6px;
}

.rc-bereken-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}

.rc-bereken-btn:hover {
    background: #ffcd33;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,192,0,0.35);
}

.rc-bereken-btn:hover::before {
    left: 100%;
}

.rc-bereken-btn:active {
    transform: translateY(0);
}

/* Quick links under button */
.rc-quick-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.rc-quick-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #777;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.rc-quick-links a:hover {
    color: #ffc000;
}

.rc-quick-links a i {
    font-size: 14px;
}


/* ===========================
   STATE: LOADING
   =========================== */
#rc-loading-state {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    gap: 20px;
}

.rc-loader {
    width: 50px;
    height: 50px;
    position: relative;
}

.rc-loader::before,
.rc-loader::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
}

.rc-loader::before {
    top: 0; left: 0; right: 0; bottom: 0;
    border-top-color: #ffc000;
    animation: rcSpin 0.8s linear infinite;
}

.rc-loader::after {
    top: 6px; left: 6px; right: 6px; bottom: 6px;
    border-bottom-color: rgba(255,192,0,0.3);
    animation: rcSpin 1.2s linear infinite reverse;
}

@keyframes rcSpin {
    to { transform: rotate(360deg); }
}

.rc-loading-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: rcPulseText 1.5s ease-in-out infinite;
}

@keyframes rcPulseText {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}


/* ===========================
   STATE: ERROR
   =========================== */
#rc-error-state {
    display: none;
    padding: 30px 20px;
    text-align: center;
}

.rc-error-icon {
    font-size: 36px;
    color: #ef4444;
    margin-bottom: 12px;
}

#rc-error-msg {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #ccc;
}


/* ===========================
   STATE: RESULT
   =========================== */
#rc-result-state {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

#rc-result-state.rc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Route Header */
.rc-route-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
}

.rc-route-from, .rc-route-to {
    flex: 1;
    min-width: 0; /* text overflow */
}

.rc-route-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    display: block;
    margin-bottom: 2px;
}

.rc-route-value {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #ddd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.rc-route-arrow {
    color: #ffc000;
    font-size: 14px;
    flex-shrink: 0;
}

/* Stats pills */
.rc-stats-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.rc-stat-pill {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,192,0,0.06);
    border: 1px solid rgba(255,192,0,0.15);
    border-radius: 8px;
}

.rc-stat-pill i {
    color: #ffc000;
    font-size: 14px;
}

.rc-stat-pill .rc-stat-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
}

.rc-stat-pill .rc-stat-unit {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

/* Tarief Cards */
.rc-tarief-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.rc-tarief-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 18px;
    transition: border-color 0.2s;
}

.rc-tarief-card:hover {
    border-color: rgba(255,192,0,0.25);
}

.rc-tarief-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rc-tarief-type {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rc-tarief-type-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,192,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc000;
    font-size: 15px;
}

.rc-tarief-type-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
}

.rc-tarief-type-sub {
    font-size: 11px;
    color: #777;
    font-weight: 500;
    display: block;
}

.rc-tarief-totaal {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: #ffc000;
    font-style: italic;
}

/* Detail rows */
.rc-tarief-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rc-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
}

.rc-detail-label {
    color: #888;
}

.rc-detail-value {
    color: #ccc;
    font-weight: 600;
}


/* CTA Buttons after result */
.rc-result-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.rc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.rc-cta-call {
    background: #ffc000;
    color: #000;
}

.rc-cta-call:hover {
    background: #ffcd33;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,192,0,0.3);
}

.rc-cta-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.rc-cta-whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
}

/* Opnieuw berekenen link */
.rc-reset-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    padding: 8px;
    transition: color 0.2s;
}

.rc-reset-link:hover {
    color: #ffc000;
}

/* Disclaimer */
.rc-disclaimer {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: #555;
    text-align: center;
    margin-top: 14px;
    line-height: 1.4;
}


/* --- GOOGLE AUTOCOMPLETE DROPDOWN OVERRIDE --- */
.pac-container {
    background: #1a1a1a !important;
    border: 1px solid rgba(255,192,0,0.2) !important;
    border-radius: 10px !important;
    margin-top: 6px !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6) !important;
    font-family: 'DM Sans', sans-serif !important;
    z-index: 99999 !important;
}

.pac-item {
    padding: 10px 16px !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    color: #ccc !important;
    cursor: pointer !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

.pac-item:first-child {
    border-top: none !important;
}

.pac-item:hover, .pac-item-selected {
    background: rgba(255,192,0,0.08) !important;
}

.pac-item-query {
    color: #fff !important;
    font-weight: 600 !important;
}

.pac-icon {
    display: none !important;
}

.pac-matched {
    color: #ffc000 !important;
}

.pac-logo::after {
    display: none !important;
}


/* --- RESPONSIVE --- */
@media screen and (max-width: 900px) {
    .calc-cockpit {
        transform: none;
    }
    .calc-cockpit > * {
        transform: none;
    }
}

@media screen and (max-width: 600px) {
    .calc-body {
        padding: 20px;
    }

    .rc-input-group input {
        padding: 14px 14px 14px 50px;
        font-size: 14px;
    }

    .rc-bereken-btn {
        padding: 16px;
        font-size: 16px;
    }

    .rc-tarief-totaal {
        font-size: 22px;
    }

    .rc-result-ctas {
        grid-template-columns: 1fr;
    }

    .rc-stats-row {
        gap: 8px;
    }

    .rc-stat-pill .rc-stat-val {
        font-size: 17px;
    }

    .rc-route-bar {
        flex-wrap: wrap;
    }

    .rc-route-from, .rc-route-to {
        flex: 0 0 100%;
    }

    .rc-route-arrow {
        display: none;
    }
}


/* ===========================
   STATE: BOOKING FORM
   =========================== */
#rc-booking-state {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
}

#rc-booking-state.rc-visible {
    opacity: 1;
    transform: translateY(0);
}

.rc-booking-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rc-back-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.rc-back-btn:hover {
    background: rgba(255,192,0,0.1);
    border-color: #ffc000;
    color: #ffc000;
}

.rc-booking-route {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,192,0,0.05);
    border: 1px solid rgba(255,192,0,0.12);
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #ccc;
}

.rc-booking-route i {
    color: #ffc000;
    font-size: 12px;
    flex-shrink: 0;
}

.rc-book-pers-badge {
    margin-left: auto;
    padding: 4px 10px;
    background: rgba(255,192,0,0.12);
    border: 1px solid rgba(255,192,0,0.3);
    border-radius: 50px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffc000;
    text-transform: uppercase;
    white-space: nowrap;
}

.rc-booking-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.rc-field-row {
    display: flex;
    gap: 12px;
}

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

.rc-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rc-field label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rc-field input,
.rc-field select,
.rc-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.rc-field input:focus,
.rc-field select:focus,
.rc-field textarea:focus {
    border-color: #ffc000;
    background: rgba(255,192,0,0.04);
}

.rc-field input::placeholder,
.rc-field textarea::placeholder {
    color: #555;
    font-style: italic;
}

.rc-field select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffc000' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.rc-field select option {
    background: #1a1a1a;
    color: #fff;
}

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

/* Date/time input icon color fix */
.rc-field input[type="date"]::-webkit-calendar-picker-indicator,
.rc-field input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
}


/* ===========================
   STATE: SUCCESS
   =========================== */
#rc-success-state {
    display: none;
    text-align: center;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

#rc-success-state.rc-visible {
    opacity: 1;
    transform: translateY(0);
}

.rc-success-icon {
    font-size: 52px;
    color: #22c55e;
    margin-bottom: 14px;
    animation: rcSuccessPop 0.5s ease;
}

@keyframes rcSuccessPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.rc-success-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.rc-success-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #999;
    margin: 0 0 20px;
}

.rc-success-summary {
    text-align: left;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 18px;
}

.rc-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.rc-summary-row:last-child {
    border-bottom: none;
}

.rc-summary-row span {
    color: #777;
}

.rc-summary-row strong {
    color: #ddd;
    text-align: right;
}


/* --- BOOKING RESPONSIVE --- */
@media screen and (max-width: 600px) {
    .rc-field-row-2 {
        flex-direction: column;
    }

    .rc-booking-route {
        flex-wrap: wrap;
        font-size: 12px;
    }
}


/* =============================================
   HOME FORM (Cyber Dark — final-cyber-form)
   ============================================= */

.home-form-body {
    padding: 0;
}

body.home .hf-field {
    margin-bottom: 14px;
}

body.home .hf-field label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

body.home .hf-field input,
body.home .hf-field select,
body.home .hf-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

body.home .hf-field input:focus,
body.home .hf-field select:focus,
body.home .hf-field textarea:focus {
    border-color: #ffc000;
    background: rgba(255,192,0,0.04);
    box-shadow: 0 0 0 3px rgba(255,192,0,0.08);
}

body.home .hf-field input::placeholder,
body.home .hf-field textarea::placeholder {
    color: #555;
    font-style: italic;
}

body.home .hf-field select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffc000' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

body.home .hf-field select option {
    background: #1a1a1a;
    color: #fff;
}

body.home .hf-field textarea {
    resize: vertical;
    min-height: 50px;
}

body.home .hf-field input[type="date"]::-webkit-calendar-picker-indicator,
body.home .hf-field input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
}

body.home .hf-row {
    display: flex;
    gap: 12px;
}

body.home .hf-row > .hf-field {
    flex: 1;
}

body.home .hf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #ffc000;
    color: #000;
    border: none;
    border-radius: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 6px;
}

body.home .hf-submit:hover {
    background: #ffcd33;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,192,0,0.3);
}

/* Success */
body.home .hf-success {
    text-align: center;
    padding: 40px 20px;
}

body.home .hf-success i.fa-check-circle {
    font-size: 52px;
    color: #22c55e;
    display: block;
    margin-bottom: 14px;
}

body.home .hf-success h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 8px;
}

body.home .hf-success p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #999;
    margin: 0 0 22px;
}

body.home .hf-reset {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #aaa;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

body.home .hf-reset:hover {
    border-color: #ffc000;
    color: #ffc000;
}

@media screen and (max-width: 600px) {
    body.home .hf-row {
        flex-direction: column;
        gap: 0;
    }
}
