/* ============================================
   MODERN IMPROVEMENTS - HADDANY PRO
   ============================================ */

/* Enhanced Professional Color Palette */
:root {
    /* Primary Colors - Modern Blue/Purple Gradient */
    --primary-color: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --primary-gradient: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    
    /* Secondary Colors - Teal/Cyan */
    --secondary-color: #14B8A6;
    --secondary-dark: #0D9488;
    --secondary-light: #2DD4BF;
    --secondary-gradient: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
    
    /* Accent Colors */
    --accent-orange: #F59E0B;
    --accent-pink: #EC4899;
    --accent-green: #10B981;
    --accent-purple: #A855F7;
    
    /* Status Colors */
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    --info-color: #3B82F6;
    
    /* Background Colors */
    --dark-bg-1: #0F172A;
    --dark-bg-2: #1E293B;
    --dark-bg-3: #334155;
    --light-bg-1: #F8FAFC;
    --light-bg-2: #F1F5F9;
    --light-bg-3: #E2E8F0;
    
    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;
    --text-light: #CBD5E1;
    
    /* Gradient Collections */
    --gradient-sunset: linear-gradient(135deg, #FF6B95 0%, #7C3AED 50%, #4F46E5 100%);
    --gradient-ocean: linear-gradient(135deg, #06B6D4 0%, #3B82F6 50%, #8B5CF6 100%);
    --gradient-forest: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
    --gradient-fire: linear-gradient(135deg, #F59E0B 0%, #EF4444 50%, #DC2626 100%);
    --gradient-aurora: linear-gradient(135deg, #A855F7 0%, #EC4899 50%, #F43F5E 100%);
    --gradient-midnight: linear-gradient(135deg, #1E293B 0%, #334155 50%, #475569 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.5);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 120px 0;
    background: var(--gradient-sunset);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
    animation: patternFloat 30s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.stats-wrapper {
    position: relative;
    z-index: 1;
}

.stat-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-xl);
    padding: 50px 35px;
    text-align: center;
    border: 2px solid var(--glass-border);
    transition: all var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.stat-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-page {
    background: var(--light-bg);
}

.pricing-section {
    padding: 60px 0;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    background: var(--gradient-ocean);
    color: white;
    transform: scale(1.05);
    position: relative;
    overflow: hidden;
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-30%, -30%) scale(1); }
    50% { transform: translate(30%, 30%) scale(1.1); }
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: var(--shadow-2xl), 0 0 60px rgba(59, 130, 246, 0.5);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.pricing-card.popular .icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.pricing-header .subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.popular .pricing-price {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    opacity: 0.8;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1.2rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 15px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-features li i {
    font-size: 1.2rem;
    color: var(--success-color);
}

.pricing-card.popular .pricing-features li i {
    color: white;
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--text-secondary);
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-pricing:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    color: white;
}

.pricing-card.popular .btn-pricing {
    background: white;
    color: var(--primary-color);
}

.pricing-card.popular .btn-pricing:hover {
    background: var(--light-bg);
    color: var(--primary-dark);
}

.pricing-faq {
    margin-top: 80px;
}

.accordion-item {
    background: white;
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.accordion-button {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 25px;
    background: white;
    color: var(--text-primary);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-body {
    padding: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   CASE STUDIES PAGE
   ============================================ */
.case-studies-page {
    background: var(--light-bg);
}

.case-studies-grid {
    padding: 60px 0;
}

.case-study-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.case-study-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.case-study-item:hover .case-study-image img {
    transform: scale(1.1);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.case-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.case-tags .tag {
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.case-study-content {
    padding: 35px;
}

.case-study-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.case-study-content .industry {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study-content .description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.case-results {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 16px;
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.result-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.btn-case-study {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-case-study:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
    color: white;
}

.case-studies-cta {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    color: white;
    margin-top: 60px;
}

.case-studies-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.case-studies-cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ============================================
   PROCESS/TIMELINE SECTION
   ============================================ */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.timeline-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ============================================
   TECHNOLOGIES SECTION
   ============================================ */
.technologies-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.tech-categories {
    margin-top: 60px;
}

.tech-category {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.tech-category:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.tech-category h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.tech-category h3 i {
    color: var(--primary-color);
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
}

.tech-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    background: var(--light-bg);
    transform: translateY(-5px);
}

.tech-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.tech-item:hover img {
    filter: grayscale(0%);
}

.tech-item span {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
}

.btn-cta-primary:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
}

.consultation-float {
    background: var(--primary-color);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
    transition: all 0.3s ease;
}

.consultation-btn {
    background: transparent;
    border: none;
    color: white;
    padding: 15px 25px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.consultation-float:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
}

/* ============================================
   PAGE TITLE IMPROVEMENTS
   ============================================ */
.page-title {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
}

.page-title h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-title p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .case-results {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .tech-logos {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .page-title h1 {
        font-size: 2.5rem;
    }
    
    .page-title p {
        font-size: 1.1rem;
    }
}

/* ============================================
   SECTION TITLE IMPROVEMENTS
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ============================================
   SMOOTH SCROLLING & ANIMATIONS
   ============================================ */
html {
    scroll-behavior: smooth;
}

[data-aos] {
    pointer-events: auto;
}

/* ============================================
   MODAL IMPROVEMENTS
   ============================================ */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 2px solid var(--light-bg);
    padding: 25px 30px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.modal-body {
    padding: 30px;
}

.modal-body .form-control {
    border-radius: 10px;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-body .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.modal-body .btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-body .btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
