/* ----------  RESET  ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #ffffff;
    color: #111827;
}

/* ----------  HEADER  ---------- */
.ppqf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ppqf-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ppqf-logo-container {
    display: flex;
    align-items: center;
    height: 48px;
}
.ppqf-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
}
.ppqf-phone {
    font-size: 18px;
    font-weight: 500;
    color: #374151;
}

/* ----------  PROGRESS  ---------- */
.ppqf-progress-container {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e5e7eb;
    z-index: 30;
}
.ppqf-progress-fill {
    height: 100%;
    background-color: #6980DE;
    transition: width 0.3s ease;
    width: 0%;
}

/* ----------  MAIN LAYOUT  ---------- */
.ppqf-main-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 16px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ppqf-step {
    width: 100%;
    display: flex;
    justify-content: center;
}
.ppqf-wrapper {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ----------  PROFILE PIC  ---------- */
.ppqf-profile-box {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}
.ppqf-profile-placeholder {
    height: 64px;
    margin-bottom: 16px;
    transition: height 0.3s ease;
    display: none;
}
.ppqf-profile-img-wrap {
    top: 40px;
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.ppqf-profile-img-wrap.fixed {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 94px;
    height: 94px;
    z-index: 50;
}
.ppqf-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----------  TEXT  ---------- */
.ppqf-text {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 8px;
    width: 100%;
}
.ppqf-main-heading {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-top: 16px;
    margin-bottom: 8px;
    line-height: 1.2;
}
.ppqf-sub-heading {
    color: #4b5563;
    font-size: 16px;
    margin-bottom: 24px;
}

/* ----------  MAPS  ---------- */
.ppqf-map-wrap {
    margin-bottom: 24px;
    width: 100%;
}
.ppqf-map,
.ppqf-service-map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

/* ----------  FORM  ---------- */
.ppqf-form {
    margin-bottom: 16px;
    width: 100%;
}
.ppqf-form-group {
    margin-bottom: 16px;
}
.ppqf-name-phone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.ppqf-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}
.ppqf-input-icon {
    position: relative;
}
.ppqf-icon {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
    pointer-events: none;
}
.ppqf-input {
    width: 100%;
    padding: 12px 16px 12px 40px !important;
    border: 1px solid #6980DE;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s;
    outline: none;
}



.ppqf-input:focus {
    outline: none !important; 
    border: none !important; 
    box-shadow: none !important; 
}

.ppqf-name-phone .ppqf-input {
    padding-left: 16px;
}

/* ----------  SECURITY  ---------- */
.ppqf-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: #4b5563;
    width: 100%;
}
.ppqf-lock {
    width: 16px;
    height: 16px;
}

/* ----------  BUTTONS  ---------- */
.ppqf-next-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.ppqf-next-btn {
    padding: 16px 48px;
    background-color: #9ca3af;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: not-allowed;
    transition: all 0.2s;
    min-width: 200px;
}
.ppqf-next-btn:enabled {
    background-color: #6980DE;
    cursor: pointer;
}
.ppqf-next-btn:enabled:hover {
    background-color: #5a6fc7;
}
.ppqf-btn-wrap {
    text-align: center;
    margin-top: 24px;
}
.ppqf-return-btn {
    padding: 16px 32px;
    background-color: #6980DE;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.ppqf-return-btn:hover {
    background-color: #5a6fc7;
}

/* ----------  BACK ARROW  ---------- */
.ppqf-map-section {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
    width: 100%;
    justify-content: center;
}
.ppqf-back {
    position: absolute;
    left: -150px;
    top: 50%;
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
    flex-shrink: 0;
}
.ppqf-back:hover {
    background-color: #f3f4f6;
}
.ppqf-back svg {
    width: 32px;
    height: 32px;
    color: #6b7280;
}
.ppqf-map-wrapper {
    flex: 1;
    max-width: 100%;
    width: 100%;
}

/* ----------  DISCLAIMER  ---------- */
.ppqf-disclaimer {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

/* ----------  RATING WIDGET  ---------- */
.ppqf-rating {
    width:auto !important;
    position: fixed;
    bottom: 16px;
    right: 16px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 40;
}
.ppqf-rating-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ppqf-g {
    font-size: 16px;
    font-weight: bold;
    color: #4285f4;
}
.ppqf-stars {
    display: flex;
    gap: 2px;
}
.ppqf-star {
    color: #fbbf24;
    font-size: 16px;
}
.ppqf-rating-text {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

/* ----------  STEP-2 BORDER  ---------- */
.ppqf-step#ppqf-step-2 .ppqf-wrapper {
    border-bottom: 1px solid #6980DE;
    padding-bottom: 24px;
}

/* ----------  RESPONSIVE  ---------- */
@media (max-width: 768px) {
    .ppqf-name-phone {
        grid-template-columns: 1fr;
    }
    .ppqf-main-heading {
        font-size: 24px;
    }
    .ppqf-map-section {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    .ppqf-back {
        display: none;
    }
    .ppqf-map-wrapper {
        width: 100%;
    }
    .ppqf-service-map,
    .ppqf-map {
        height: 250px;
    }
    .ppqf-main-container {
        padding: 80px 12px 24px;
    }
    .ppqf-wrapper {
        max-width: 100%;
    }
    .ppqf-btn-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }
    .ppqf-return-btn {
        width: auto;
    }
}
@media (max-width: 480px) {
    .ppqf-service-map,
    .ppqf-map {
        height: 200px;
    }
    .ppqf-next-btn {
        min-width: 100%;
        padding: 14px;
    }
    .ppqf-return-btn {
        width: 100%;
        padding: 14px;
    }
}