* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --red: #E31E24;
    --dark-red: #B91519;
    --black: #000000;
    --gray: #666666;
    --light-gray: #F8F8F8;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 100;
    transition: all 0.3s;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    height: 60px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

.nav a:hover {
    color: var(--red);
}

.nav a:hover::after {
    width: 100%;
}

.phone {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid var(--red);
    border-radius: 8px;
    transition: all 0.3s;
}

.phone:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.burger {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background:
        radial-gradient(circle at 10% 20%, rgba(227, 30, 36, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 40%),
        var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE5E5 100%);
    border-radius: 0 0 0 100px;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.05) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.badge {
    display: inline-block;
    background: var(--light-gray);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-red {
    background: var(--red);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-red:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--black);
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--black);
    transition: all 0.3s;
}

.btn-white:hover {
    background: var(--black);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.hero-features {
    display: flex;
    gap: 40px;
}

.feature {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(227, 30, 36, 0.1);
    transition: 0.3s;
}

.feature:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.feature-text {
    font-size: 13px;
    color: var(--gray);
}

/* Hero Image Container */
.hero-image {
    position: relative;
    height: 600px;
    z-index: 1;
}

.hero-truck {
    position: absolute;
    right: -140px;
    bottom: 60px;
    height: 330px;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.1));
    animation: fadeInUp 1.2s ease-out;
    z-index: 1;
    transition: transform 0.5s ease;
}

.hero-mover {
    position: absolute;
    right: -50px;
    bottom: 20px;
    height: 290px;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.1));
    animation: fadeInUp 1s ease-out;
    z-index: 2;
    transition: transform 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-icon {
    width: 32px;
    height: 32px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.badge-text {
    font-weight: 600;
    font-size: 14px;
}

.truck-container {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: #FFE5E5;
    color: var(--red);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
}

.section-desc {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--red);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #FFE5E5;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-img {
    width: 50px;
    height: 50px;
}

.service-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--red);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: var(--gray);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    padding-top: 16px;
    border-top: 1px solid #E0E0E0;
}

.service-special {
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    color: var(--white);
    border: none;
}

.service-special h3,
.service-special p {
    color: var(--white);
}

.service-special .service-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
}

.service-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s;
}

.service-link:hover {
    transform: translateX(5px);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.step {
    flex: 1;
    background: var(--light-gray);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s;
}

.step:hover {
    background: #FFE5E5;
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray);
}

.step-arrow {
    font-size: 32px;
    color: var(--red);
    font-weight: 700;
}

/* Reviews */
.reviews {
    padding: 100px 0;
    background: var(--light-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--gray);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.author-name {
    font-weight: 700;
    font-size: 15px;
}

.author-date {
    font-size: 13px;
    color: var(--gray);
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red), var(--dark-red));
    color: var(--white);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.btn-white-solid {
    background: var(--white);
    color: var(--red);
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-white-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--white);
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--red);
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-left h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s;
}

.info-card:hover {
    background: #FFE5E5;
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.info-label {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 4px;
}

.info-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.info-value:hover {
    color: var(--red);
}

.info-note {
    font-size: 13px;
    color: var(--gray);
}

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 16px;
}

.form-row {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.08);
}

.contact-form textarea {
    resize: vertical;
}

.form-privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray);
    text-align: left;
}

.form-privacy-checkbox input {
    width: auto !important;
    margin-top: 4px;
    cursor: pointer;
}

.form-privacy-checkbox label {
    cursor: pointer;
    line-height: 1.4;
}

.form-privacy-checkbox a {
    color: var(--red);
    text-decoration: none;
}

.form-privacy-checkbox a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 65px;
    margin-bottom: 24px;
}

.footer-desc {
    color: #999;
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--red);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-info p {
    color: #666;
    font-size: 13px;
    margin-bottom: 4px;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: #666;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Ultra Clean & Modern)
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        position: relative;
    }

    .hero-truck {
        height: 250px;
        position: relative;
        right: auto;
        bottom: 30px;
    }

    .hero-mover {
        height: 320px;
        position: absolute;
        right: 50%;
        transform: translateX(80%);
        bottom: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Navigation */
    .header-content {
        padding: 8px 0;
    }

    .logo {
        height: 38px;
    }

    .phone {
        padding: 5px 10px;
        font-size: 11px;
        border-width: 1.5px;
        margin-left: auto;
        margin-right: 8px;
        white-space: nowrap;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
    }

    .nav.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .nav a {
        font-size: 22px;
        font-weight: 800;
        padding: 10px;
        width: auto;
        color: var(--black);
    }

    .burger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        z-index: 1001;
    }

    .burger span {
        width: 22px;
        height: 2.5px;
        background: var(--black);
        border-radius: 3px;
    }

    /* Hero */
    .hero {
        padding: 90px 0 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        min-height: auto;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
        position: relative;
        z-index: 10;
    }

    .btn-red,
    .btn-white {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 15px;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 20px;
        background: none;
        padding: 0;
    }

    .feature {
        background: var(--white);
        padding: 12px 5px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .feature-num {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .feature-text {
        font-size: 8px;
        line-height: 1.1;
    }

    /* Hero Image - Hidden on Mobile for clean look */
    .hero-image {
        display: none;
    }

    /* Sections */
    .section-header {
        margin-bottom: 25px;
    }

    .section-tag {
        font-size: 12px;
        padding: 4px 12px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-desc {
        font-size: 14px;
    }

    /* Grids */
    .services-grid,
    .advantages-grid,
    .reviews-grid,
    .footer-top,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
        border-radius: 15px;
        align-items: center;
        text-align: center;
    }

    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .service-icon-img {
        width: 28px;
        height: 28px;
    }

    .service-list {
        text-align: left;
        width: 100%;
        margin: 15px 0;
    }

    .service-price {
        font-size: 20px;
        margin-top: auto;
    }

    .advantage-item {
        padding: 20px;
    }

    .advantage-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .advantage-icon svg {
        width: 32px;
        height: 32px;
    }

    .advantage-item h3 {
        font-size: 16px;
    }

    .advantage-item p {
        font-size: 13px;
    }

    .review-card {
        padding: 20px;
    }

    .review-text {
        font-size: 13px;
    }

    .contact-form {
        padding: 20px;
        border-radius: 15px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Footer & Bottom */
    .footer-legal,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .feature {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }

    .feature-num {
        font-size: 26px;
    }

    .hero-image {
        height: 200px;
    }

    .hero-truck {
        height: 130px;
    }

    .hero-mover {
        height: 170px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #10B981;
    color: white;
    font-size: 30px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* WhatsApp & Socials */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: 0.3s;
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-link:hover {
    background: var(--red);
    transform: translateY(-3px);
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    background: #FFF5F5;
    box-shadow: var(--shadow);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg,
.advantage-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.advantage-item h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.advantage-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}