
:root {
    --primary: #6B46FF;
    --gradient-start: #FF4B1F;
    --gradient-end: #9B1FFF;
    --text-dark: #333;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
}

header {
    padding: 1rem 5%;
    background: linear-gradient(90deg, #FF4B1F, #9B1FFF);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.call-button {
    background: #FF3E00;
    color: white !important;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 1 !important;
    transition: transform 0.2s;
    box-shadow: 0 4px 15px rgba(255, 62, 0, 0.3);
    animation: pulse 1.5s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 62, 0, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 25px rgba(255, 62, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 62, 0, 0.3);
    }
}

.call-button:hover {
    animation: none;
    transform: scale(1.1);
}

.benefits-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #fff 0%, #f5f5ff 100%);
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: white;
    margin: 4rem auto;
    max-width: 800px;
}

.contact-form h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form input {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 1rem;
    font-size: 1rem;
}

.contact-form button {
    background: white;
    color: var(--gradient-start);
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.privacy-check {
    margin: 1.5rem 0;
    color: white;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group.single-input {
    grid-template-columns: 1fr;
}

input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    color: #000;
}

button {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1rem;
}

.benefits {
    padding: 4rem 5%;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.partners {
    padding: 4rem 5%;
    background: #f5f5ff;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.partners::before,
.partners::after {
    content: "";
    position: absolute;
    top: 0;
    width: 5%;
    height: 100%;
    z-index: 2;
}

.partners::before {
    left: 0;
    background: linear-gradient(to right, #f5f5ff, transparent);
}

.partners::after {
    right: 0;
    background: linear-gradient(to left, #f5f5ff, transparent);
}

.partner-slider {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    animation: slide 30s linear infinite;
    will-change: transform;
}

.partner-slider p {
    color: #666;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.partner-card {
    flex: 0 0 250px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 1rem;
}

.partner-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-top: 1rem;
}

footer {
    padding: 2rem 5%;
    text-align: center;
    background: #f5f5ff;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-link {
    color: var(--text-light);
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--primary);
}

.savings-section {
    padding: 4rem 5%;
    background: #fff;
}

.savings-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.savings-content {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
}

.savings-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.savings-content strong {
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .call-button {
        padding: 0.8rem 1.5rem;
        font-size: 1.2rem;
        white-space: nowrap;
    }

    nav {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .logo {
        margin: 0;
    }
}


.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-call-button a {
    display: block;
    padding: 18px 35px;
    background: linear-gradient(90deg, #FF4B1F, #9B1FFF);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: floatingPulse 1.5s infinite;
}

@keyframes floatingPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
}

.floating-call-button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
}

.popup-content {
    position: relative;
    background: white;
    margin: 10% auto;
    padding: 3rem;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    text-align: center;
    animation: popupSlideIn 0.3s ease-out;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
}

.close-popup:hover {
    color: var(--primary);
}

.popup h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.popup p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.popup-call-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: buttonPulse 1.5s infinite;
}

.popup-call-button:hover {
    animation: none;
    transform: scale(1.05);
}

@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 25px rgba(0,0,0,0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
}

.operators-status {
    margin-top: 1.5rem;
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 500;
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}
