/* ========================================
   COMMON STYLES - Extracted from inline styles
   ======================================== */

/* Common Gradients */
.gradient-bg-primary {
    background: linear-gradient(135deg, #f0f8ff 0%, #fff5f8 100%);
}

.gradient-bg-secondary {
    background: linear-gradient(135deg, #fff5f8 0%, #f0f8ff 100%);
}

.gradient-bg-tertiary {
    background: linear-gradient(135deg, #f0f0ff 0%, #f8f8ff 100%);
}

.gradient-bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Hero Section Common Styles */
.hero-section {
    background: linear-gradient(135deg, #023047 0%, #034261 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(197, 44, 150, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(89, 86, 172, 0.15) 0%, transparent 50%);
}

/* Common Buttons */
.hero-btn {
    padding: 16px 32px !important;
    font-size: 18px !important;
    border-radius: 12px !important;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #c52c96 0%, #d84aaa 100%);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(197, 44, 150, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 44, 150, 0.4);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Common Card Styles */
.modern-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Common Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Common Section Styles */
.section-padding {
    padding: 80px 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #023047;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

/* Common Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Common List Styles */
.fullview ul li {
    padding: 6px 0;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .section-padding {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .hero-btn {
        padding: 14px 24px !important;
        font-size: 16px !important;
    }
}
