﻿/* Custom Survey Inquiry Page Styles */

.inquiry-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Hero Section */
.inquiry-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin: 0;
}

/* Content Section */
.inquiry-content {
    padding: 60px 20px;
    margin-top: 60px;
    position: relative;
    z-index: 3;
}

/* Inquiry Card */
.inquiry-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.inquiry-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 32px 40px;
    border-bottom: 1px solid #e2e8f0;
}

.card-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    flex-shrink: 0;
}

.card-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.5px;
}

.card-subtitle {
    margin: 6px 0 0;
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.inquiry-card-body {
    padding: 40px;
}

/* Form Styles */
.inquiry-form {
    margin-top: 24px;
}

.form-group-modern {
    margin-bottom: 24px;
}

.form-label-modern {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.form-label-modern i {
    color: #8b5cf6;
}

.form-control-modern {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #2d3748;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control-modern:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    background: #ffffff;
}

.form-control-modern::placeholder {
    color: #a0aec0;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-text {
    display: block;
    margin-top: 8px;
    font-size: 0.875rem;
    color: #718096;
}

.text-danger {
    color: #ef4444;
}

.text-muted {
    color: #9ca3af;
    font-weight: 400;
}

/* Info Box */
.info-box-modern {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 4px solid #3b82f6;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: start;
    gap: 14px;
}

.info-icon {
    width: 32px;
    height: 32px;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
    font-size: 0.95rem;
    color: #1e40af;
    line-height: 1.6;
}

.info-content strong {
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
}

.btn-submit-inquiry {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-submit-inquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.btn-submit-inquiry:active {
    transform: translateY(0);
}

.btn-submit-inquiry .btn-spinner {
    display: none;
}

.btn-submit-inquiry.loading .btn-text {
    display: none;
}

.btn-submit-inquiry.loading .btn-spinner {
    display: inline-flex;
}

.btn-cancel {
    background: #f3f4f6;
    color: #4b5563;
    border: 2px solid #e5e7eb;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cancel:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #1f2937;
    text-decoration: none;
}

/* Alert Styles */
.alert-modern {
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 24px;
    display: flex;
    align-items: start;
    gap: 14px;
    border: 2px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #10b981;
    color: #065f46;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #ef4444;
    color: #991b1b;
}

.alert-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.alert-success .alert-icon {
    background: #10b981;
    color: #ffffff;
}

.alert-danger .alert-icon {
    background: #ef4444;
    color: #ffffff;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.alert-message {
    font-size: 0.95rem;
    margin: 0;
}

.btn-close {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.btn-close:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .inquiry-card-header {
        padding: 24px 20px;
    }

    .inquiry-card-body {
        padding: 24px 20px;
    }

    .card-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn-submit-inquiry,
    .btn-cancel {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .inquiry-content {
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .form-label-modern {
        font-size: 0.9rem;
    }

    .form-control-modern {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}

/* Back Button */
.btn-back-inquiry {
    background: #f3f4f6;
    color: #4b5563;
    border: 2px solid #e5e7eb;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-back-inquiry:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #1f2937;
    text-decoration: none;
    transform: translateX(-3px);
}

/* Modal Styles */
.modal-inquiry {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.modal-icon-wrapper.processing {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 20px;
}

.modal-icon-wrapper.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #10b981;
    animation: successPulse 0.6s ease-out;
}

.modal-icon-wrapper.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #ef4444;
    animation: errorShake 0.5s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes errorShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

.modal-title-inquiry {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.modal-text-inquiry {
    font-size: 1rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.modal-redirect-text {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-retry {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-retry:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-modal-cancel {
    background: #f3f4f6;
    color: #4b5563;
    border: 2px solid #e5e7eb;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-modal-cancel:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #1f2937;
}

.progress {
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

/* ============================================
   INTL-TEL-INPUT COUNTRY CODE DROPDOWN STYLES
   ============================================ */

.phone-input-group {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.country-code-wrapper {
    position: relative;
    flex-shrink: 0;
}

.phone-number-input {
    flex: 1;
}

/* intl-tel-input overrides */
.iti {
    width: 100%;
}

.iti__tel-input {
    width: 100%;
    padding: 14px 18px 14px 52px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #2d3748;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.iti__tel-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    background: #ffffff;
}

.iti__tel-input::placeholder {
    color: #a0aec0;
}

.iti__country-container {
    padding: 2px;
}

.iti__selected-country {
    background: transparent !important;
    border-radius: 10px 0 0 10px;
    padding: 0 8px;
}

.iti__selected-country:hover,
.iti__selected-country:focus {
    background: rgba(139, 92, 246, 0.08) !important;
}

.iti__arrow {
    border-top-color: #6b7280;
}

.iti__arrow--up {
    border-bottom-color: #6b7280;
}

.iti__dropdown {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    margin-top: 4px;
    max-height: 300px;
    overflow-y: auto;
}

.iti__search-input {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 8px 12px;
    width: calc(100% - 24px);
    font-size: 0.95rem;
    background: #f8f9fa;
    box-sizing: border-box;
}

.iti__search-input:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.iti__country {
    padding: 10px 14px;
    transition: background 0.2s ease;
}

.iti__country:hover {
    background: rgba(139, 92, 246, 0.08);
}

.iti__country--highlight {
    background: rgba(139, 92, 246, 0.12);
}

.iti__country-name {
    color: #2d3748;
    font-weight: 500;
}

.iti__dial-code {
    color: #718096;
}

.iti__flag {
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ============================================
   THEME SYSTEM - CSS Variables
   ============================================ */

.inquiry-container {
    background: var(--admin-bg, linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%));
}

.inquiry-hero {
    background: var(--admin-gradient-hero, linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%));
}

.inquiry-card {
    background: var(--admin-card-bg, #ffffff);
    border: 1px solid var(--admin-card-border, transparent);
    box-shadow: var(--admin-shadow-lg, 0 20px 50px rgba(0, 0, 0, 0.1));
}

.inquiry-card-header {
    background: var(--admin-card-header-bg, linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%));
    border-bottom: 1px solid var(--admin-border, #e2e8f0);
}

.card-title {
    color: var(--admin-text, #1a202c);
}

.card-subtitle {
    color: var(--admin-text-muted, #718096);
}

.form-label-modern {
    color: var(--admin-text, #2d3748);
}

.form-label-modern i {
    color: var(--admin-primary, #8b5cf6);
}

.form-control-modern,
.iti__tel-input {
    background: var(--admin-input-bg, #ffffff);
    border-color: var(--admin-input-border, #e2e8f0);
    color: var(--admin-text, #2d3748);
}

.form-control-modern:focus,
.iti__tel-input:focus {
    border-color: var(--admin-primary, #8b5cf6);
    box-shadow: 0 0 0 4px var(--admin-input-focus, rgba(139, 92, 246, 0.1));
}

/* intl-tel-input theme variables */
.iti__dropdown {
    background: var(--admin-card-bg, #ffffff);
    border-color: var(--admin-border, #e2e8f0);
}

.iti__search-input {
    background: var(--admin-input-bg, #f8f9fa);
    border-color: var(--admin-border, #e2e8f0);
    color: var(--admin-text, #2d3748);
}

.iti__search-input:focus {
    border-color: var(--admin-primary, #8b5cf6);
}

.iti__country-name {
    color: var(--admin-text, #2d3748);
}

.iti__dial-code {
    color: var(--admin-text-muted, #718096);
}

.form-text {
    color: var(--admin-text-muted, #718096);
}

.info-box-modern {
    background: var(--admin-info-bg, linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%));
    border-color: var(--admin-info, #3b82f6);
}

.info-content {
    color: var(--admin-text, #1e40af);
}

.btn-submit-inquiry {
    background: var(--admin-gradient-button, linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%));
    box-shadow: var(--admin-shadow-primary, 0 10px 30px rgba(139, 92, 246, 0.3));
}

.btn-back-inquiry {
    background: var(--admin-surface, #f3f4f6);
    color: var(--admin-text-muted, #4b5563);
    border-color: var(--admin-border, #e5e7eb);
}

.btn-back-inquiry:hover {
    background: var(--admin-surface-hover, #e5e7eb);
    color: var(--admin-text, #1f2937);
}

/* Modal Theming */
.modal-inquiry {
    background: var(--admin-modal-bg, #ffffff);
}

.modal-title-inquiry {
    color: var(--admin-text, #1a202c);
}

.modal-text-inquiry {
    color: var(--admin-text-muted, #4a5568);
}

.btn-retry {
    background: var(--admin-gradient-button, linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%));
}

.btn-modal-cancel {
    background: var(--admin-surface, #f3f4f6);
    color: var(--admin-text-muted, #4b5563);
    border-color: var(--admin-border, #e5e7eb);
}

/* ============================================
   THEME: Neo 3D (Modern Depth)
   ============================================ */

[data-theme="3d"] .inquiry-container {
    background: linear-gradient(135deg, #060616 0%, #0b0b24 50%, #060616 100%);
}

[data-theme="3d"] .inquiry-hero {
    background: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 50%, #fb7185 100%);
    position: relative;
}

[data-theme="3d"] .inquiry-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.3), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(34, 211, 238, 0.2), transparent 50%);
    pointer-events: none;
}

[data-theme="3d"] .inquiry-card {
    background: rgba(10, 10, 30, 0.95);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.2),
        0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

[data-theme="3d"] .inquiry-card-header {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

[data-theme="3d"] .card-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 100%);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

[data-theme="3d"] .card-title {
    color: #f2f4ff;
}

[data-theme="3d"] .card-subtitle {
    color: rgba(242, 244, 255, 0.7);
}

[data-theme="3d"] .inquiry-card-body {
    background: rgba(10, 10, 30, 0.95);
}

[data-theme="3d"] .form-label-modern {
    color: #f2f4ff;
}

[data-theme="3d"] .form-label-modern i {
    color: #8b5cf6;
}

[data-theme="3d"] .form-control-modern,
[data-theme="3d"] .iti__tel-input {
    background: rgba(139, 92, 246, 0.08);
    border: 2px solid rgba(139, 92, 246, 0.2);
    color: #f2f4ff;
}

[data-theme="3d"] .form-control-modern::placeholder,
[data-theme="3d"] .iti__tel-input::placeholder {
    color: rgba(242, 244, 255, 0.4);
}

[data-theme="3d"] .form-control-modern:focus,
[data-theme="3d"] .iti__tel-input:focus {
    border-color: #8b5cf6;
    box-shadow: 
        0 0 0 4px rgba(139, 92, 246, 0.2),
        0 0 30px rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.12);
}

/* Neo 3D intl-tel-input dropdown - Complete dark theme */
[data-theme="3d"] .iti__dropdown {
    background: rgba(10, 10, 30, 0.98) !important;
    border: 2px solid rgba(139, 92, 246, 0.5) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 40px rgba(139, 92, 246, 0.3) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

[data-theme="3d"] .iti__dropdown-content {
    background: rgba(10, 10, 30, 0.98) !important;
}

[data-theme="3d"] .iti__search-input {
    background: rgba(20, 20, 45, 0.9) !important;
    border: 2px solid rgba(139, 92, 246, 0.4) !important;
    color: #f2f4ff !important;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    margin: 8px 12px !important;
    width: calc(100% - 24px) !important;
    box-sizing: border-box !important;
}

[data-theme="3d"] .iti__search-input::placeholder {
    color: rgba(242, 244, 255, 0.5) !important;
}

[data-theme="3d"] .iti__search-input:focus {
    border-color: #8b5cf6 !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.3), inset 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    background: rgba(30, 30, 55, 0.95) !important;
}

[data-theme="3d"] .iti__country {
    padding: 10px 14px !important;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1) !important;
}

[data-theme="3d"] .iti__country:hover {
    background: rgba(139, 92, 246, 0.2) !important;
}

[data-theme="3d"] .iti__country--highlight {
    background: rgba(139, 92, 246, 0.25) !important;
}

[data-theme="3d"] .iti__country-name {
    color: #e0e7ff !important;
    font-weight: 500 !important;
}

[data-theme="3d"] .iti__dial-code {
    color: #a78bfa !important;
    font-weight: 500 !important;
}

[data-theme="3d"] .iti__selected-dial-code {
    color: #8b5cf6 !important;
    font-weight: 600 !important;
}

/* Neo 3D divider line in dropdown */
[data-theme="3d"] .iti__divider {
    border-bottom-color: rgba(139, 92, 246, 0.2) !important;
}

/* Neo 3D country list styling */
[data-theme="3d"] .iti__country-list {
    background: rgba(10, 10, 30, 0.98) !important;
    max-height: 300px;
}

[data-theme="3d"] .iti__country-container {
    background: rgba(10, 10, 30, 0.98) !important;
}

/* Fix for dropdown content wrapper */
[data-theme="3d"] .iti__dropdown-content {
    background: rgba(10, 10, 30, 0.98) !important;
}

/* Neo 3D scrollbar for dropdown */
[data-theme="3d"] .iti__country-list::-webkit-scrollbar {
    width: 8px;
}

[data-theme="3d"] .iti__country-list::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 4px;
}

[data-theme="3d"] .iti__country-list::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.4);
    border-radius: 4px;
}

[data-theme="3d"] .iti__country-list::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.6);
}

[data-theme="3d"] .iti__selected-country:hover,
[data-theme="3d"] .iti__selected-country:focus {
    background: rgba(139, 92, 246, 0.15) !important;
}

[data-theme="3d"] .iti__arrow {
    border-top-color: rgba(242, 244, 255, 0.6);
}

[data-theme="3d"] .iti__arrow--up {
    border-bottom-color: rgba(242, 244, 255, 0.6);
}

[data-theme="3d"] .form-text {
    color: rgba(242, 244, 255, 0.5);
}

[data-theme="3d"] .info-box-modern {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(34, 211, 238, 0.1) 100%);
    border-color: rgba(139, 92, 246, 0.4);
}

[data-theme="3d"] .info-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 100%);
}

[data-theme="3d"] .info-content {
    color: rgba(242, 244, 255, 0.85);
}

[data-theme="3d"] .btn-submit-inquiry {
    background: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 100%);
    box-shadow: 
        0 8px 30px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(34, 211, 238, 0.2);
}

[data-theme="3d"] .btn-submit-inquiry:hover {
    box-shadow: 
        0 12px 40px rgba(139, 92, 246, 0.5),
        0 0 60px rgba(34, 211, 238, 0.3);
}

[data-theme="3d"] .btn-back-inquiry {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

[data-theme="3d"] .btn-back-inquiry:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: #8b5cf6;
    color: #f2f4ff;
}

/* Neo 3D Modal Styles */
[data-theme="3d"] .modal-inquiry {
    background: rgba(6, 6, 22, 0.98);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.3);
}

[data-theme="3d"] .modal-title-inquiry {
    color: #f2f4ff;
}

[data-theme="3d"] .modal-text-inquiry {
    color: rgba(242, 244, 255, 0.7);
}

[data-theme="3d"] .modal-redirect-text {
    color: rgba(242, 244, 255, 0.5);
}

[data-theme="3d"] .modal-icon-wrapper.success {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: #22d3ee;
}

[data-theme="3d"] .modal-icon-wrapper.error {
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
    color: #fb7185;
}

[data-theme="3d"] .btn-retry {
    background: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 100%);
}

[data-theme="3d"] .btn-modal-cancel {
    background: rgba(139, 92, 246, 0.15);
    color: rgba(242, 244, 255, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
}

[data-theme="3d"] .btn-modal-cancel:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: #8b5cf6;
    color: #f2f4ff;
}

[data-theme="3d"] .progress {
    background-color: rgba(139, 92, 246, 0.2);
}

[data-theme="3d"] .progress-bar {
    background: linear-gradient(90deg, #8b5cf6 0%, #22d3ee 100%) !important;
}


/* Alert Theme Adjustments */
[data-theme="3d"] .alert-success,
[data-theme="3d"] .alert-danger {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #f2f4ff;
}

[data-theme="sakura"] .alert-success {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4ec 100%);
    border-color: #ff69b4;
    color: #1a0a12;
}

[data-theme="sakura"] .alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #ef4444;
    color: #1a0a12;
}


