.phone-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%
}

.country-code-container {
    flex-shrink: 0;
    width: 110px
}

.country-code-dropdown {
    width: 100%;
    padding: 12px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit
}

.country-code-dropdown:hover {
    border-color: #1a4a6e
}

.country-code-dropdown:focus {
    border-color: #1a4a6e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 74, 110, 0.1)
}

.mobile-number-container {
    flex: 1;
    min-width: 0
}

.mobile-number-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease
}

.mobile-number-input:focus {
    border-color: #1a4a6e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 74, 110, 0.1)
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px
}

.required {
    color: #dc3545
}

.error-text {
    display: none;
    color: #dc3545;
    font-size: 12px;
    margin-top: 6px;
    align-items: center;
    gap: 5px
}

.error-text i {
    font-size: 14px
}

input.error,
select.error,
textarea.error {
    border-color: #dc3545 !important
}

@media (max-width:576px) {
    .phone-input-wrapper {
        flex-direction: column;
        gap: 10px
    }

    .country-code-container {
        width: 100%
    }

    .mobile-number-container {
        width: 100%
    }

    .popup-buttons {
        flex-direction: column
    }

    .btn-popup-wa,
    .btn-popup-email {
        width: 100%;
        justify-content: center
    }
}

.popup-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px
}

.btn-popup-wa,
.btn-popup-email {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.btn-popup-wa {
    background: #25D366;
    color: white
}

.btn-popup-wa:hover {
    background: #128C7E;
    transform: translateY(-2px)
}

.btn-popup-email {
    background: #1a4a6e;
    color: white
}

.btn-popup-email:hover {
    background: #0b2b3d;
    transform: translateY(-2px)
}

.popup-footer-note {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap
}

.popup-footer-note i {
    margin-right: 4px
}

.welcome-popup-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(13, 31, 53, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.4s ease-out
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.welcome-popup {
    background: #fff;
    border-radius: 28px;
    padding: 2rem 2rem 1.8rem;
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

.welcome-popup::-webkit-scrollbar {
    width: 5px
}

.welcome-popup::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px
}

.welcome-popup::-webkit-scrollbar-thumb {
    background: #1a5fa8;
    border-radius: 10px
}

.popup-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10
}

.popup-close-btn:hover {
    background: #fee2e2;
    color: #dc2626;
    transform: rotate(90deg)
}

.welcome-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a5fa8 0%, #0d3d73 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px
}

.welcome-popup h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #0d1f35;
    margin-bottom: 0.5rem
}

.welcome-popup h2 span {
    color: #1a5fa8
}

.popup-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.75rem
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    font-weight: 600;
    font-size: 0.8rem;
    color: #334155;
    margin-bottom: 4px;
    display: block
}

.form-group label .required {
    color: #dc2626
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-family: inherit
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a5fa8;
    box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.1)
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc2626;
    background-color: #fef2f2
}

.phone-input-group {
    display: flex;
    gap: 8px
}

.phone-input-group .country-code {
    width: 85px;
    flex-shrink: 0;
    text-align: center
}

.phone-input-group .phone-number {
    flex: 1
}

.error-text {
    display: none;
    color: #dc2626;
    font-size: 0.7rem;
    margin-top: 4px
}

.error-text.show {
    display: block
}

.popup-buttons {
    display: flex;
    gap: 12px;
    margin-top: 1rem
}

.btn-popup-wa,
.btn-popup-email {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 12px;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease
}

.btn-popup-wa {
    background: #25d366;
    color: #fff
}

.btn-popup-wa:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35)
}

.btn-popup-email {
    background: #1a5fa8;
    color: #fff
}

.btn-popup-email:hover {
    background: #154d8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 168, 0.35)
}

.popup-footer-note {
    text-align: center;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0
}

.enquiry-section {
    background: var(--kp-light, #f4f6fb);
    padding: 4rem 0
}

.enquiry-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 30px rgba(26, 95, 168, 0.08)
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 6px
}

.req {
    color: #dc2626
}

.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    font-size: 0.92rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #1a1a2e
}

.form-control:focus {
    outline: none;
    border-color: #1a5fa8;
    box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.1)
}

.form-control.error,
.country-code-input.error {
    border-color: #dc2626 !important;
    background-color: #fef2f2 !important
}

.phone-group {
    display: flex;
    gap: 10px;
    align-items: center
}

.country-code-input {
    width: 78px;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.6rem 0.5rem;
    font-size: 0.92rem;
    text-align: center;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    color: #1a1a2e;
    font-weight: 600
}

.country-code-input:focus {
    border-color: #1a5fa8;
    box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.1)
}

.phone-group .form-control {
    flex: 1
}

.error-msg {
    display: none;
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 5px
}

.error-msg.show {
    display: block
}

.submit-divider {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative
}

.submit-divider::before,
.submit-divider::after {
    content: '';
    display: inline-block;
    width: 55px;
    height: 1px;
    background: #e2e8f0;
    vertical-align: middle;
    margin: 0 10px
}

.submit-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-submit-wa,
.btn-submit-email {
    flex: 1;
    min-width: 130px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.2rem;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s
}

.btn-submit-wa {
    background: #25d366;
    color: #fff
}

.btn-submit-wa:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35)
}

.btn-submit-email {
    background: #1a5fa8;
    color: #fff
}

.btn-submit-email:hover {
    background: #154d8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(26, 95, 168, 0.35)
}

.wa-note {
    font-size: 0.76rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 0
}

.enquiry-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 31, 53, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 1rem
}

.enquiry-popup-overlay.active {
    display: flex
}

.enquiry-popup {
    background: #fff;
    border-radius: 22px;
    padding: 2rem 1.8rem 1.5rem;
    width: 100%;
    max-width: 490px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 64px rgba(13, 31, 53, 0.28);
    animation: popupIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.88) translateY(24px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s
}

.popup-close:hover {
    background: #fee2e2;
    color: #dc2626
}

.popup-header {
    margin-bottom: 1.4rem;
    padding-right: 2.2rem
}

.popup-header h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #0d1f35;
    margin-bottom: 4px
}

.popup-header h3 span {
    color: #1a5fa8
}

.popup-header p {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0
}

.popup-trigger-fab {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 99998;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 22px rgba(37, 211, 102, 0.42);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    outline: none
}

.popup-trigger-fab i {
    font-size: 1.7rem;
    line-height: 1
}

.popup-trigger-fab .btn-text {
    display: none
}

.popup-trigger-fab:hover {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.52)
}

.popup-trigger-fab:active {
    transform: scale(0.94)
}

.quote-trigger-fab {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 50px;
    padding: 0 22px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #1b2072 0%, #1a5fa8 100%);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(26, 31, 114, 0.38);
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    outline: none;
    animation: fabPopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both
}

.quote-trigger-fab i {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0
}

.quote-trigger-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(26, 31, 114, 0.45);
    background: linear-gradient(135deg, #0d1f35 0%, #1b2072 100%)
}

.quote-trigger-fab:active {
    transform: scale(0.96)
}

@media (max-width:768px) {
    .enquiry-form-card {
        padding: 1.5rem 1rem
    }

    .submit-row {
        flex-direction: column
    }

    .welcome-popup {
        padding: 1.5rem 1.2rem;
        margin: 0.5rem
    }

    .welcome-popup h2 {
        font-size: 1.3rem
    }

    .popup-buttons {
        flex-direction: column
    }

    .btn-popup-wa,
    .btn-popup-email {
        padding: 0.6rem
    }

    .popup-trigger-fab {
        width: 52px;
        height: 52px;
        right: 14px;
        bottom: 24px
    }

    .popup-trigger-fab i {
        font-size: 1.5rem
    }

    .quote-trigger-fab {
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
        right: 14px;
        bottom: 88px;
        gap: 0;
        animation: none
    }

    .quote-trigger-fab .fab-label {
        display: none
    }

    .quote-trigger-fab i {
        font-size: 1.4rem;
        margin: 0
    }

    .quote-trigger-fab::after {
        border-radius: 50%
    }
}

@media (max-width:480px) {
    .popup-trigger-fab {
        width: 48px;
        height: 48px;
        right: 12px;
        bottom: 20px
    }

    .quote-trigger-fab {
        width: 48px;
        height: 48px;
        right: 12px;
        bottom: 80px
    }

    .popup-trigger-fab i,
    .quote-trigger-fab i {
        font-size: 1.3rem
    }
}

@media (max-width:768px) and (orientation:landscape) {

    .popup-trigger-fab,
    .quote-trigger-fab {
        width: 44px;
        height: 44px
    }

    .popup-trigger-fab {
        bottom: 16px
    }

    .quote-trigger-fab {
        bottom: 72px
    }
}

.enquiry-section {
    background: var(--kp-light, #f4f6fb);
    padding: 4rem 0
}

.enquiry-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 30px rgba(26, 95, 168, 0.08)
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 6px
}

.req {
    color: #dc2626
}

.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    font-size: 0.92rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #1a1a2e
}

.form-control:focus {
    outline: none;
    border-color: #1a5fa8;
    box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.1)
}

.form-control.error,
.country-code-input.error {
    border-color: #dc2626 !important;
    background-color: #fef2f2 !important
}

.phone-group {
    display: flex;
    gap: 10px;
    align-items: center
}

.country-code-input {
    width: 78px;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.6rem 0.5rem;
    font-size: 0.92rem;
    text-align: center;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    color: #1a1a2e;
    font-weight: 600
}

.country-code-input:focus {
    border-color: #1a5fa8;
    box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.1)
}

.phone-group .form-control {
    flex: 1
}

.error-msg {
    display: none;
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 5px
}

.error-msg.show {
    display: block
}

.submit-divider {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative
}

.submit-divider::before,
.submit-divider::after {
    content: '';
    display: inline-block;
    width: 55px;
    height: 1px;
    background: #e2e8f0;
    vertical-align: middle;
    margin: 0 10px
}

.submit-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-submit-wa,
.btn-submit-email {
    flex: 1;
    min-width: 130px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.2rem;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s
}

.btn-submit-wa {
    background: #25d366;
    color: #fff
}

.btn-submit-wa:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35)
}

.btn-submit-email {
    background: #1a5fa8;
    color: #fff
}

.btn-submit-email:hover {
    background: #154d8a;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(26, 95, 168, 0.35)
}

.wa-note {
    font-size: 0.76rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 0
}

@media (max-width:768px) {
    .popup-trigger-fab {
        width: 52px;
        height: 52px;
        right: 14px;
        bottom: 108px
    }

    .popup-trigger-fab i {
        font-size: 1.5rem
    }

    .quote-trigger-fab {
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
        right: 14px;
        bottom: 172px;
        gap: 0;
        animation: none
    }

    .quote-trigger-fab .fab-label {
        display: none
    }

    .quote-trigger-fab i {
        font-size: 1.4rem;
        margin: 0
    }
}

@media (max-width:480px) {
    .popup-trigger-fab {
        width: 48px;
        height: 48px;
        right: 12px;
        bottom: 104px
    }

    .quote-trigger-fab {
        width: 48px;
        height: 48px;
        right: 12px;
        bottom: 164px
    }

    .popup-trigger-fab i,
    .quote-trigger-fab i {
        font-size: 1.3rem
    }
}

@media (max-width:768px) and (orientation:landscape) {

    .popup-trigger-fab,
    .quote-trigger-fab {
        width: 44px;
        height: 44px
    }

    .popup-trigger-fab {
        bottom: 96px
    }

    .quote-trigger-fab {
        bottom: 152px
    }
}

.enquiry-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 31, 53, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 1rem
}

.enquiry-popup-overlay.active {
    display: flex
}

.enquiry-popup {
    background: #fff;
    border-radius: 22px;
    padding: 2rem 1.8rem 1.5rem;
    width: 100%;
    max-width: 490px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 64px rgba(13, 31, 53, 0.28);
    animation: popupIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.88) translateY(24px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s
}

.popup-close:hover {
    background: #fee2e2;
    color: #dc2626
}

.popup-header {
    margin-bottom: 1.4rem;
    padding-right: 2.2rem
}

.popup-header h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #0d1f35;
    margin-bottom: 4px
}

.popup-header h3 span {
    color: #1a5fa8
}

.popup-header p {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0) scale(1)
    }

    to {
        opacity: 0;
        transform: translateY(40px) scale(0.95)
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}