/* ==========================================
   QUOTATION PAGE STYLES
   Professional pricing calculator
   ========================================== */

/* ===== QUOTATION PAGE LAYOUT ===== */
.quotation-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding-top: 80px;
}

.quotation-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 60px 0 40px;
    text-align: center;
    color: white;
}

.quotation-header .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.quotation-header .page-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===== QUOTATION GRID ===== */
.quotation-content {
    padding: 40px 0 80px;
}

.quotation-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

/* ===== FORM CARD ===== */
.form-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary-color);
}

/* ===== INPUT METHOD SELECTION ===== */
.input-method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.method-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.method-btn i {
    font-size: 2rem;
    color: var(--gray-color);
    transition: var(--transition);
}

.method-btn .method-name {
    font-weight: 600;
    color: var(--dark-color);
}

.method-btn .method-desc {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.method-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.method-btn.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
}

.method-btn.active i {
    color: var(--primary-color);
}

/* ===== FILE UPLOAD ===== */
.upload-area {
    position: relative;
    margin-bottom: 15px;
}

.upload-area.hidden-section {
    display: none;
}

.file-input {
    display: none;
}

.upload-label {
    display: block;
    border: 2px dashed #cbd5e1;
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: #f8fafc;
}

.upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.05);
}

.upload-icon {
    font-size: 3rem;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.upload-text {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.upload-hint {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.file-name {
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== EMAIL VERIFICATION ===== */
.email-verification-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #38bdf8;
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.15);
}

.verification-header {
    text-align: center;
    margin-bottom: 25px;
}

.verification-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.verification-header h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.verification-header p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.verification-form {
    max-width: 400px;
    margin: 0 auto;
}

.verification-form .form-group {
    margin-bottom: 20px;
}

.verification-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.verification-form label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.verification-form input[type="email"],
.verification-form input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #cbd5e1;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.verification-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.code-hint {
    display: block;
    margin-top: 8px;
    color: var(--gray-color);
    font-size: 0.85rem;
}

.btn-verify {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-verify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.btn-verify:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.verification-buttons {
    display: flex;
    gap: 10px;
}

.verification-buttons .btn-verify {
    flex: 1;
}

.btn-resend {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-resend:hover {
    background: var(--primary-color);
    color: white;
}

.btn-resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.verified-message {
    text-align: center;
    padding: 20px;
}

.verified-message i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 15px;
    display: block;
}

.verified-message h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.verified-message p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.verified-message small {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* ===== OTP MODAL POPUP ===== */
.otp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.otp-modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.otp-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.otp-modal-header i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 15px;
    display: block;
}

.otp-modal-header h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.otp-modal-header p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.otp-modal-header strong {
    color: #3b82f6;
}

.otp-input-group {
    margin: 25px 0;
}

.otp-input {
    width: 100%;
    padding: 18px;
    font-size: 24px;
    text-align: center;
    letter-spacing: 8px;
    border: 3px solid #e2e8f0;
    border-radius: 12px;
    font-weight: bold;
    color: #1e293b;
    transition: all 0.3s;
}

.otp-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.btn-verify-modal {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.btn-verify-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-verify-modal:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.btn-close-modal {
    width: 100%;
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-close-modal:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #475569;
}

/* ===== FORM ELEMENTS ===== */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: var(--secondary-color);
}

.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: white;
}

.form-group input[type="number"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.field-hint {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-top: 5px;
}

.info-text {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #92400e;
}

.info-text i {
    color: #f59e0b;
}

/* ===== ADD-ONS ===== */
.addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.addon-item {
    display: block;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 15px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.addon-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.addon-item:hover {
    border-color: var(--primary-color);
    background: rgba(0, 212, 255, 0.05);
}

.addon-item input[type="checkbox"]:checked + .addon-content {
    color: var(--primary-color);
}

.addon-item input[type="checkbox"]:checked ~ .addon-content,
.addon-item input[type="checkbox"]:checked ~ .addon-desc {
    color: var(--primary-color);
}

.addon-item input[type="checkbox"]:checked {
    opacity: 1;
    position: relative;
    margin-right: 10px;
}

.addon-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-weight: 600;
}

.addon-price {
    color: var(--secondary-color);
    font-weight: 700;
}

.addon-desc {
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* ===== CALCULATE BUTTON ===== */
.btn-calculate {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-calculate:active {
    transform: translateY(0);
}

/* ===== INFO BOX ===== */
.info-box {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.info-box h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box h3 i {
    color: #f59e0b;
}

.steps-list {
    list-style: none;
    margin-bottom: 25px;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.steps-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-text {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.cta-box p {
    margin-bottom: 8px;
}

.cta-box p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* ===== QUOTE RESULT ===== */
.quotation-result-container {
    position: sticky;
    top: 130px;
    height: fit-content;
}

.quote-result {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.5s ease-out;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), 
                      linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quote-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.result-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 20px 30px;
    color: white;
}

.result-header h3 {
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-details {
    padding: 25px 30px;
    border-bottom: 2px solid #e2e8f0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    color: var(--gray-color);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label i {
    color: var(--primary-color);
}

.detail-value {
    font-weight: 600;
    color: var(--dark-color);
}

.result-pricing {
    padding: 25px 30px;
    border-bottom: 2px solid #e2e8f0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-row.total {
    padding-top: 15px;
    border-top: 2px dashed #cbd5e1;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.unit-price {
    color: var(--accent-color);
}

.total-price {
    color: var(--primary-color);
    font-size: 2rem;
}

.result-timeline {
    padding: 20px 30px;
    background: #f8fafc;
    text-align: center;
}

.result-timeline p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.result-timeline i {
    color: var(--primary-color);
}

.result-actions {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-contact {
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-contact.whatsapp {
    background: var(--whatsapp-color);
}

.btn-contact.messenger {
    background: var(--messenger-color);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===== BREAKDOWN ===== */
.breakdown-toggle {
    padding: 20px 30px;
    border-top: 2px solid #e2e8f0;
}

.btn-breakdown {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.btn-breakdown:hover {
    background: var(--primary-color);
    color: white;
}

.breakdown-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.breakdown-row span:last-child {
    font-weight: 600;
    color: var(--dark-color);
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .quotation-grid {
        grid-template-columns: 1fr;
    }

    .quotation-result-container {
        position: relative;
        top: 0;
        max-height: none;
    }

    .quote-result,
    .info-box {
        position: relative;
        top: 0;
    }

    .form-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quotation-header .page-title {
        font-size: 2rem;
    }

    .quotation-header .page-subtitle {
        font-size: 1rem;
    }

    .form-card {
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .input-method-grid {
        grid-template-columns: 1fr;
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }

    .result-header h3 {
        font-size: 1.25rem;
    }

    .total-price {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .quotation-page {
        padding-top: 60px;
    }

    .quotation-header {
        padding: 40px 0 30px;
    }

    .quotation-header .page-title {
        font-size: 1.75rem;
    }

    .form-card {
        padding: 15px;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .result-details,
    .result-pricing,
    .result-actions,
    .breakdown-toggle {
        padding: 20px;
    }
    
    .three-canvas {
        height: 300px !important;
    }
}

/* ===== 3D VIEWER STYLES ===== */
.viewer-3d {
    margin-top: 20px;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.viewer-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.viewer-header .btn-reset {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.viewer-header .btn-reset:hover {
    background: var(--accent-color);
    transform: translateY(-1px);
}

.three-canvas {
    width: 100%;
    height: 400px;
    background: #f8f9fa;
}

.model-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 15px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ===== QUICK QUOTE BOX (CONTACT OPTIONS) ===== */
.quick-quote-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid #e2e8f0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
}

.contact-intro h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-intro h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-intro p {
    color: #64748b;
    font-size: 1rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.05) 0%, rgba(0, 184, 118, 0.05) 100%);
    transition: width 0.4s ease;
    z-index: 0;
}

.contact-option:hover::before {
    width: 100%;
}

.contact-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 208, 132, 0.15);
    transform: translateY(-3px);
}

.option-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    z-index: 1;
}

.contact-option.whatsapp .option-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.contact-option.messenger .option-icon {
    background: linear-gradient(135deg, #0084ff 0%, #0068d9 100%);
    color: white;
}

.option-content {
    flex: 1;
    z-index: 1;
}

.option-content h5 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.option-content p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.option-content .option-number,
.option-content .option-page {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.option-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    z-index: 1;
}

.contact-option:hover .option-arrow {
    transform: translateX(5px);
}

.contact-benefits {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-benefits h5 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-benefits h5 i {
    color: var(--primary-color);
}

.contact-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits ul li {
    color: #475569;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-benefits ul li i {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* ===== AUTO ESTIMATOR CONTACT CTA ===== */
.auto-contact-cta {
    margin-top: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 12px;
    text-align: center;
}

.cta-content i.fa-gift {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-content h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-content p {
    color: #065f46;
    margin-bottom: 20px;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: white;
}

.cta-btn i {
    font-size: 1.2rem;
}

.cta-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.cta-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.cta-btn.messenger {
    background: linear-gradient(135deg, #0084ff 0%, #0068d9 100%);
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

.cta-btn.messenger:hover {
    background: linear-gradient(135deg, #0068d9 0%, #0051b3 100%);
    box-shadow: 0 6px 16px rgba(0, 132, 255, 0.4);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE FOR CONTACT OPTIONS ===== */
@media (max-width: 768px) {
    .contact-option {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .option-arrow {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}
