/* SMS & Email Notifications Section */
.notifications-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.notifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.notifications-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.notifications-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.notifications-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.notifications-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.notifications-cta {
    margin-top: 8px;
}

.notifications-visual {
    position: relative;
}

.notifications-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.notifications-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.notification-popup {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    animation: popupFadeIn 0.6s ease-out;
    z-index: 10;
}

.notification-popup-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.notification-popup-2 {
    bottom: 25%;
    left: 8%;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-header i {
    color: #a855f7;
    font-size: 14px;
}

.popup-content {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .notifications-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .notifications-visual {
        order: -1;
    }
    
    .notifications-image {
        height: 400px;
    }
    
    .notification-popup-1 {
        top: 15%;
        right: 5%;
    }
    
    .notification-popup-2 {
        bottom: 20%;
        left: 5%;
    }
}

@media (max-width: 768px) {
    .notifications-section {
        padding: 80px 0;
    }
    
    .notifications-title {
        font-size: 36px;
    }
    
    .notifications-description {
        font-size: 16px;
    }
    
    .notifications-image {
        height: 350px;
    }
    
    .notification-popup {
        max-width: 240px;
        padding: 14px 18px;
    }
    
    .popup-header {
        font-size: 12px;
    }
    
    .popup-content {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .notifications-section {
        padding: 60px 0;
    }
    
    .notifications-title {
        font-size: 28px;
    }
    
    .notifications-image {
        height: 300px;
    }
    
    .notification-popup {
        max-width: 200px;
        padding: 12px 16px;
    }
    
    .notification-popup-1 {
        top: 10%;
        right: 3%;
    }
    
    .notification-popup-2 {
        bottom: 15%;
        left: 3%;
    }
}

