/* Interactive Agency Protocol (IAP) v1.0 */

/* 1. ROI Calculator Styles */
#roi-calculator-modal {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    font-family: 'Outfit', sans-serif;
    color: white;
}

#roi-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00AEEF;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.4);
    z-index: 9999;
    transition: transform 0.3s;
}

#roi-toggle-btn:hover {
    transform: scale(1.05);
}

.roi-input {
    width: 100%;
    background: #333;
    border: none;
    padding: 10px;
    margin-bottom: 10px;
    color: white;
    border-radius: 5px;
}

.roi-result {
    font-size: 1.5rem;
    color: #F58220;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}

/* 2. 3D Tilt Styles */
.js-tilt {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.js-tilt-inner {
    transform: translateZ(20px);
}