/**
 * Desktop Enquiry Modal CSS
 */

.tc-desktop-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 44, 97, 0.4);
    backdrop-filter: blur(8px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tc-desktop-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.tc-desktop-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 90%;
    max-width: 900px;
    background: #fff;
    z-index: 3001;
    border-radius: 30px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tc-desktop-modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.tc-modal-container {
    display: flex;
    min-height: 550px;
}

/* Sidebar */
.tc-modal-sidebar {
    flex: 0 0 350px;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.tc-sidebar-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

.tc-work-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.tc-step-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tc-step-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.tc-step-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.tc-step-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.tc-sidebar-contact {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tc-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.tc-contact-item i {
    color: #fd014f;
}

/* Form Side */
.tc-modal-form-side {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
}

.tc-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.tc-modal-close:hover {
    background: #E5E7EB;
    transform: rotate(90deg);
}

.tc-form-header {
    margin-bottom: 25px;
}

.tc-package-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(4, 44, 97, 0.08);
    color: #065f46;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tc-form-title {
    font-size: 20px;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tc-package-info-box {
    display: flex;
    gap: 15px;
    background: #fff;
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.tc-pinfo-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.tc-pinfo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-pinfo-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tc-pinfo-price {
    font-size: 13px;
    color: #4B5563;
    margin-bottom: 4px;
}

.tc-pinfo-price strong {
    color: #fd014f;
    font-size: 16px;
}

.tc-pinfo-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 500;
}

.tc-pinfo-meta i {
    margin-right: 4px;
}

.tc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tc-input-group.full-width {
    grid-column: span 2;
}

.tc-input-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tc-input-group input {
    width: 100%;
    padding: 12px 15px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.tc-input-group input:focus {
    background: #fff;
    border-color: #065f46;
    box-shadow: 0 0 0 4px rgba(4, 44, 97, 0.05);
}

.tc-desktop-submit {
    width: 100%;
    background: linear-gradient(135deg, #fd014f, #fd014f);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    margin-top: 30px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tc-desktop-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(234, 88, 12, 0.4);
}

/* Modal Footer */
.tc-modal-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #F3F4F6;
}

.tc-footer-trust-title {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tc-footer-trust-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.tc-trust-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #4B5563;
}

.tc-trust-pill i {
    color: #10B981;
}

/* Hide on Mobile */
@media (max-width: 767px) {
    .tc-desktop-modal, .tc-desktop-modal-overlay {
        display: none !important;
    }
}
