/* Sticky Enquiry Button Styles */
.sticky-enquiry-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-btn-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 4px 20px rgba(102, 126, 234, 0.4);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    animation: pulseGlow 2s ease-in-out infinite;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 1px;
}

.enquiry-btn-content i {
    font-size: 20px;
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
}

.sticky-enquiry-button:hover .enquiry-btn-content {
    padding-right: 16px;
    box-shadow: -6px 6px 30px rgba(102, 126, 234, 0.6);
    animation: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: -4px 4px 20px rgba(102, 126, 234, 0.4);
    }

    50% {
        box-shadow: -4px 4px 30px rgba(102, 126, 234, 0.7), 0 0 20px rgba(118, 75, 162, 0.5);
    }
}

/* Responsive - Adjust for mobile */
@media (max-width: 768px) {
    .sticky-enquiry-button {
        right: 0;
    }

    .enquiry-btn-text {
        display: none;
    }

    .enquiry-btn-content {
        padding: 16px 10px;
        writing-mode: vertical-rl;
        gap: 6px;
    }
}

/* Enquiry Popup Overlay */
.enquiry-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enquiry-popup-overlay.active {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 1;
}

/* Enquiry Popup Container */
.enquiry-popup-container {
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 28px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: auto 0;
    border-radius: 12px 0 0 12px;
}

.enquiry-popup-overlay.active .enquiry-popup-container {
    transform: translateX(0);
}

/* Close Button */
.enquiry-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.enquiry-popup-close i {
    font-size: 18px;
    color: #6b7280;
}

.enquiry-popup-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

/* Popup Header */
.enquiry-popup-header {
    margin-bottom: 24px;
}

.enquiry-popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.enquiry-popup-subtitle {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

/* Enquiry Form */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.enquiry-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.enquiry-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.enquiry-form-group .required {
    color: #ef4444;
}

.enquiry-form-group input[type="text"],
.enquiry-form-group input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #111827;
    box-sizing: border-box;
}

.enquiry-form-group input:hover:not(:disabled) {
    border-color: #d1d5db;
}

.enquiry-form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.enquiry-form-group input.valid {
    border-color: #10b981;
    background-color: #f0fdf4;
}

.enquiry-form-group input.invalid {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.enquiry-form-group input::placeholder {
    color: #9ca3af;
}

/* Phone Input Container */
.enquiry-phone-input-container {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    position: relative;
}

.enquiry-phone-divider {
    width: 1px;
    height: 32px;
    background: #e5e7eb;
    flex-shrink: 0;
}

.enquiry-country-code-wrapper {
    position: relative;
    border: 2px solid #e5e7eb;
    border-right: none;
    border-radius: 10px 0 0 10px;
    background: #ffffff;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.enquiry-country-select-trigger {
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 100%;
    cursor: pointer;
    gap: 8px;
    transition: all 0.3s ease;
}

.enquiry-country-select-trigger:hover {
    background: #f9fafb;
}

.enquiry-country-select-trigger.active {
    background: #f9fafb;
}

.enquiry-country-select-trigger i {
    font-size: 12px;
    color: #6b7280;
    transition: transform 0.2s ease;
}

.enquiry-country-select-trigger.active i {
    transform: rotate(180deg);
}

.enquiry-country-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.enquiry-country-flag .fi {
    font-size: 20px;
    width: 24px;
    height: 18px;
    border-radius: 2px;
    display: block;
}

.enquiry-country-code-text {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    white-space: nowrap;
}

/* Country Dropdown */
.enquiry-country-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 340px;
    background: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 10000;
    display: none;
    max-height: 360px;
    overflow: hidden;
    flex-direction: column;
}

.enquiry-country-dropdown.active {
    display: flex;
    animation: dropdownSlideIn 0.2s ease-out;
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.enquiry-country-search-wrapper {
    position: relative;
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.enquiry-country-search-wrapper i {
    display: none;
    /* Hide search icon */
}

.enquiry-country-search {
    width: 100%;
    padding: 10px 14px;
    /* Changed from left-padded to normal padding */
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.enquiry-country-search:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.enquiry-country-list {
    overflow-y: auto;
    max-height: 280px;
    padding: 6px 0;
}

.enquiry-country-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    gap: 12px;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}

.enquiry-country-option:hover {
    background: #f3f4f6;
    border-left-color: #667eea;
}

.enquiry-country-option.selected {
    background: rgba(102, 126, 234, 0.08);
    border-left-color: #667eea;
}

.enquiry-country-option.hidden {
    display: none;
}

.enquiry-country-option .fi {
    font-size: 20px;
    width: 24px;
    height: 18px;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.enquiry-country-name {
    flex: 1;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
}

.enquiry-country-code-option {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

/* Phone Input */
#enquiryPhone {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-left: none;
    border-radius: 0 10px 10px 0;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #111827;
    box-sizing: border-box;
    height: 50px;
}

#enquiryPhone:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#enquiryPhone.valid {
    border-color: #10b981;
    background-color: #f0fdf4;
}

#enquiryPhone.invalid {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.enquiry-phone-input-container:focus-within .enquiry-country-code-wrapper {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.enquiry-phone-input-container:focus-within .enquiry-phone-divider {
    background: #667eea;
}

/* Submit Button */
.enquiry-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.enquiry-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.enquiry-submit-btn:active {
    transform: translateY(0);
}

.enquiry-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.enquiry-submit-btn i {
    font-size: 14px;
}

/* Success Message - Beautiful Enhanced Design */
.enquiry-success-message {
    display: none;
    text-align: center;
    padding: 50px 30px;
}

.enquiry-success-message.active {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Success Animation Container */
.enquiry-success-animation {
    position: relative;
    margin-bottom: 32px;
}

/* Animated Checkmark */
.enquiry-success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}

.success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}

.success-checkmark .check-icon {
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #fff;
    stroke-miterlimit: 10;
    background-color: #10b981;
    box-shadow: inset 0 0 0 #10b981;
    animation: fillGreen .4s ease-in-out .4s forwards, scaleCheckmark .3s ease-in-out .9s both;
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #ffffff;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
    top: 52px;
    left: 22px;
    width: 25px;
    transform: rotate(45deg);
    animation: iconLineTip .75s .5s both;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 46px;
    right: 12px;
    width: 47px;
    transform: rotate(-45deg);
    animation: iconLineLong .75s .5s both;
}

.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(16, 185, 129, 0.3);
}

.success-checkmark .check-icon .icon-fix {
    display: none;
}

@keyframes iconLineTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 22px;
        top: 52px;
    }
}

@keyframes iconLineLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 12px;
        top: 46px;
    }
}

@keyframes scaleCheckmark {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fillGreen {
    100% {
        box-shadow: inset 0 0 0 60px #10b981;
    }
}

/* Sparkles Animation */
.success-sparkles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #667eea, #f093fb);
    border-radius: 50%;
    animation: sparkleFloat 2s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 0.2s;
}

.sparkle:nth-child(3) {
    bottom: 25%;
    left: 15%;
    animation-delay: 0.4s;
}

.sparkle:nth-child(4) {
    bottom: 15%;
    right: 20%;
    animation-delay: 0.6s;
}

.sparkle:nth-child(5) {
    top: 50%;
    left: 5%;
    animation-delay: 0.8s;
}

@keyframes sparkleFloat {

    0%,
    100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    50% {
        transform: translateY(-30px) scale(1);
        opacity: 1;
    }
}

/* Success Title */
.enquiry-success-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Success Text */
.enquiry-success-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 28px;
    animation: fadeIn 0.6s ease 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Success Details */
.enquiry-success-details {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    animation: slideInUp 0.6s ease 0.7s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(240, 147, 251, 0.08));
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    font-size: 13px;
    color: #374151;
    font-weight: 500;
    transition: all 0.3s ease;
}

.success-detail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.success-detail-item i {
    font-size: 16px;
    color: #667eea;
}

/* Success Close Button */
.enquiry-success-close {
    padding: 14px 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: fadeIn 0.6s ease 0.9s both;
}

.enquiry-success-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.enquiry-success-close:active {
    transform: translateY(-1px);
}

.enquiry-success-close i {
    font-size: 14px;
}

/* Hide form when success is shown */
.enquiry-form.hidden {
    display: none;
}

.enquiry-popup-header.hidden {
    display: none;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Tablets & Medium Screens (1024px and below) */
@media (max-width: 1024px) {
    .enquiry-popup-container {
        max-width: 420px;
    }

    .enquiry-btn-content {
        font-size: 13px;
        padding: 18px 11px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .sticky-enquiry-button {
        right: 0;
    }

    .enquiry-btn-content {
        padding: 16px 10px;
        font-size: 12px;
    }

    .enquiry-popup-overlay {
        align-items: flex-end;
    }

    .enquiry-popup-container {
        max-width: 100%;
        max-height: 85vh;
        padding: 28px 20px;
        border-radius: 16px 16px 0 0;
        margin: 0;
    }

    .enquiry-popup-title {
        font-size: 22px;
    }

    .enquiry-popup-subtitle {
        font-size: 13px;
    }

    .enquiry-popup-header {
        margin-bottom: 20px;
    }

    .enquiry-popup-close {
        width: 36px;
        height: 36px;
        top: 16px;
        right: 16px;
    }

    .enquiry-popup-close i {
        font-size: 16px;
    }

    .enquiry-country-dropdown {
        width: 100%;
        max-width: calc(100vw - 48px);
    }

    .enquiry-form {
        gap: 14px;
    }

    .enquiry-form-group input[type="text"],
    .enquiry-form-group input[type="email"],
    #enquiryPhone {
        font-size: 14px;
        padding: 12px 14px;
    }

    .enquiry-country-code-wrapper {
        height: 46px;
    }

    #enquiryPhone {
        height: 46px;
    }

    .enquiry-submit-btn {
        padding: 13px 20px;
        font-size: 14px;
    }
}

/* Small Tablets & Large Phones (640px and below) */
@media (max-width: 640px) {
    .enquiry-btn-content {
        padding: 14px 9px;
        font-size: 11px;
        gap: 6px;
    }

    .enquiry-btn-content i {
        font-size: 18px;
    }

    .enquiry-popup-container {
        max-height: 85vh;
        padding: 24px 18px;
    }

    .enquiry-popup-title {
        font-size: 20px;
    }

    .enquiry-popup-subtitle {
        font-size: 12px;
    }

    .enquiry-popup-header {
        margin-bottom: 18px;
    }

    .enquiry-form {
        gap: 12px;
    }

    .enquiry-form-group label {
        font-size: 13px;
    }

    /* Success message responsive */
    .enquiry-success-message {
        padding: 40px 18px;
    }

    .enquiry-success-icon {
        width: 80px;
        height: 80px;
    }

    .success-checkmark,
    .success-checkmark .check-icon,
    .success-checkmark .check-icon .icon-circle {
        width: 80px;
        height: 80px;
    }

    .success-checkmark .check-icon .icon-line.line-tip {
        width: 20px;
        left: 18px;
        top: 42px;
    }

    .success-checkmark .check-icon .icon-line.line-long {
        width: 38px;
        right: 10px;
        top: 37px;
    }

    .enquiry-success-title {
        font-size: 24px;
    }

    .enquiry-success-text {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .enquiry-success-details {
        gap: 10px;
        margin-bottom: 28px;
    }

    .success-detail-item {
        padding: 10px 16px;
        font-size: 12px;
    }

    .success-detail-item i {
        font-size: 14px;
    }

    .enquiry-success-close {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Standard Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .enquiry-btn-text {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .enquiry-btn-content i {
        font-size: 16px;
    }

    .enquiry-popup-container {
        max-height: 80vh;
        padding: 22px 16px;
        border-radius: 14px 14px 0 0;
    }

    .enquiry-popup-close {
        width: 32px;
        height: 32px;
        top: 14px;
        right: 14px;
    }

    .enquiry-popup-close i {
        font-size: 14px;
    }

    .enquiry-popup-title {
        font-size: 19px;
    }

    .enquiry-popup-subtitle {
        font-size: 12px;
    }

    .enquiry-popup-header {
        margin-bottom: 16px;
    }

    .enquiry-form {
        gap: 12px;
    }

    .enquiry-form-group {
        gap: 5px;
    }

    .enquiry-form-group label {
        font-size: 13px;
    }

    .enquiry-form-group input[type="text"],
    .enquiry-form-group input[type="email"] {
        font-size: 14px;
        padding: 11px 13px;
        border-radius: 8px;
    }

    .enquiry-country-code-wrapper {
        height: 44px;
        border-radius: 8px 0 0 8px;
    }

    .enquiry-country-select-trigger {
        padding: 0 10px;
        gap: 6px;
    }

    .enquiry-country-flag .fi {
        font-size: 18px;
        width: 22px;
        height: 16px;
    }

    .enquiry-country-code-text {
        font-size: 14px;
    }

    #enquiryPhone {
        font-size: 14px;
        padding: 11px 13px;
        height: 44px;
        border-radius: 0 8px 8px 0;
    }

    .enquiry-phone-divider {
        height: 28px;
    }

    .enquiry-country-dropdown {
        max-width: calc(100vw - 40px);
        border-radius: 8px;
    }

    .enquiry-submit-btn {
        padding: 12px 18px;
        font-size: 14px;
        border-radius: 8px;
        margin-top: 6px;
    }

    .enquiry-success-message {
        padding: 28px 14px;
    }

    .enquiry-success-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .enquiry-success-icon i {
        font-size: 32px;
    }

    .enquiry-success-message h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .enquiry-success-message p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .enquiry-success-close {
        padding: 11px 28px;
        font-size: 14px;
    }
}

/* Small Mobile Phones (375px and below) */
@media (max-width: 375px) {
    .enquiry-btn-content {
        padding: 12px 8px;
        font-size: 10px;
    }

    .enquiry-btn-content i {
        font-size: 15px;
    }

    .enquiry-popup-container {
        max-height: 80vh;
        padding: 20px 14px;
    }

    .enquiry-popup-title {
        font-size: 18px;
    }

    .enquiry-popup-subtitle {
        font-size: 11px;
    }

    .enquiry-popup-header {
        margin-bottom: 14px;
    }

    .enquiry-form {
        gap: 10px;
    }

    .enquiry-form-group label {
        font-size: 12px;
    }

    .enquiry-form-group input[type="text"],
    .enquiry-form-group input[type="email"] {
        font-size: 13px;
        padding: 10px 12px;
    }

    .enquiry-country-code-wrapper {
        height: 42px;
    }

    .enquiry-country-select-trigger {
        padding: 0 8px;
        gap: 5px;
    }

    .enquiry-country-code-text {
        font-size: 13px;
    }

    #enquiryPhone {
        font-size: 13px;
        padding: 10px 12px;
        height: 42px;
    }

    .enquiry-phone-divider {
        height: 26px;
    }

    .enquiry-submit-btn {
        padding: 11px 16px;
        font-size: 13px;
        gap: 8px;
    }

    .enquiry-submit-btn i {
        font-size: 12px;
    }

    .enquiry-success-message h3 {
        font-size: 18px;
    }

    .enquiry-success-message p {
        font-size: 12px;
    }
}

/* Very Small Phones (320px and below) */
@media (max-width: 320px) {
    .enquiry-popup-container {
        padding: 18px 12px;
    }

    .enquiry-popup-title {
        font-size: 17px;
    }

    .enquiry-form-group input[type="text"],
    .enquiry-form-group input[type="email"],
    #enquiryPhone {
        font-size: 13px;
        padding: 9px 11px;
    }

    .enquiry-country-code-wrapper,
    #enquiryPhone {
        height: 40px;
    }

    .enquiry-submit-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* Landscape Orientation Adjustments for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .enquiry-popup-container {
        max-height: 85vh;
        padding: 16px;
    }

    .enquiry-popup-header {
        margin-bottom: 12px;
    }

    .enquiry-popup-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .enquiry-popup-subtitle {
        font-size: 11px;
    }

    .enquiry-form {
        gap: 10px;
    }

    .enquiry-form-group {
        gap: 4px;
    }

    .enquiry-success-message {
        padding: 20px 12px;
    }

    .enquiry-success-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .enquiry-success-icon i {
        font-size: 24px;
    }
}

/* Smooth scrollbar for country list */
.enquiry-country-list::-webkit-scrollbar {
    width: 6px;
}

.enquiry-country-list::-webkit-scrollbar-track {
    background: #f3f4f6;
}

.enquiry-country-list::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.enquiry-country-list::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}