﻿        /* Hero Section */
        .contact-hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #312e81 100%);
            color: white;
            padding: 120px 20px 80px;
            position: relative;
            overflow: hidden;
            min-height: 50vh;
            display: flex;
            align-items: center;
        }
        
        .contact-hero::before {
            content: '';
            position: absolute;
            top: 25%;
            left: 25%;
            width: 256px;
            height: 256px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 50%;
            filter: blur(100px);
        }
        
        .contact-hero::after {
            content: '';
            position: absolute;
            bottom: 25%;
            right: 25%;
            width: 384px;
            height: 384px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 50%;
            filter: blur(100px);
        }
        
        .hero-content {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #bfdbfe, #a5f3fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-divider {
            height: 4px;
            width: 96px;
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            margin: 0 auto 30px;
            border-radius: 2px;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: #bfdbfe;
            font-weight: 300;
            line-height: 1.6;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 20px;
            background: linear-gradient(to bottom, #fff, #f8fafc);
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #2563eb, #4f46e5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }
        
        .section-icon i {
            color: white;
            font-size: 2rem;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
        }
        
        .section-desc {
            font-size: 1.25rem;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Contact Grid */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .contact-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
            padding: 35px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .contact-card:hover {
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
            transform: translateY(-5px);
        }
        
        .contact-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .contact-icon.blue {
            background: #eff6ff;
        }
        
        .contact-icon.indigo {
            background: #eef2ff;
        }
        
        .contact-icon.green {
            background: #f0fdf4;
        }
        
        .contact-icon.purple {
            background: #faf5ff;
        }
        
        .contact-icon i {
            font-size: 2rem;
        }
        
        .contact-icon.blue i {
            color: #2563eb;
        }
        
        .contact-icon.indigo i {
            color: #4f46e5;
        }
        
        .contact-icon.green i {
            color: #16a34a;
        }
        
        .contact-icon.purple i {
            color: #7c3aed;
        }
        
        .contact-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 10px;
        }
        
        .contact-value {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .contact-value.blue {
            color: #2563eb;
        }
        
        .contact-value.indigo {
            color: #4f46e5;
        }
        
        .contact-value.green {
            color: #16a34a;
        }
        
        .contact-value.purple {
            color: #7c3aed;
        }
        
        .contact-value a {
            color: inherit;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .contact-value a:hover {
            opacity: 0.7;
        }
        
        .contact-note {
            color: #64748b;
            font-size: 0.875rem;
        }
        
        .contact-desc {
            color: #64748b;
            margin-bottom: 15px;
        }
        
        /* Form Section */
        .form-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
            padding: 50px;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .form-header h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
        }
        
        .form-header p {
            font-size: 1.125rem;
            color: #64748b;
        }
        
        .form-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 30px;
        }
        
        .form-label {
            display: block;
            font-size: 1.125rem;
            font-weight: 600;
            color: #475569;
            margin-bottom: 10px;
        }
        
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #cbd5e1;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }
        
        .form-textarea {
            resize: vertical;
            min-height: 200px;
            font-family: inherit;
        }
        
        .form-message {
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            display: none;
        }
        
        .form-message.success {
            background: #dcfce7;
            color: #16a34a;
            border: 1px solid #86efac;
            display: block;
        }
        
        .form-message.error {
            background: #fee2e2;
            color: #dc2626;
            border: 1px solid #fca5a5;
            display: block;
        }
        
        .form-submit {
            text-align: center;
        }
        
        .btn-submit {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 16px 50px;
            border-radius: 50px;
            font-size: 1.125rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }
        
        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.125rem;
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .form-card {
                padding: 30px 20px;
            }
        }
