.contact-section {
    margin-bottom: 50px;
    position: relative;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.title-icon {
    color: #667eea;
    font-size: 1.2rem;
    animation: twinkle 2.5s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.08); }
}

.title-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 2px;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1rem;
}

.contact-showcase {
    background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
    border-radius: 24px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px -8px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(102, 126, 234, 0.05);
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    animation: float 25s ease-in-out infinite;
}

.orb-1 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    top: -100px;
    right: -80px;
    animation-delay: 0s;
}

.orb-2 {
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -80px;
    left: -40px;
    animation-delay: -8s;
}

.orb-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 40%;
    left: 60%;
    transform: translate(-50%, -50%);
    animation-delay: -16s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -20px) scale(1.03); }
    50% { transform: translate(-15px, 15px) scale(0.97); }
    75% { transform: translate(15px, 8px) scale(1.01); }
}

.contact-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.metric-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.metric-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(14, 165, 233, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.metric-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-item:hover .metric-glow {
    opacity: 1;
}

.metric-icon {
    margin-bottom: 20px;
}

.icon-ring {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.ring-progress {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        #0ea5e9 var(--progress),
        #e5e7eb var(--progress)
    );
    padding: 4px;
    animation: rotate 12s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ring-progress::after {
    content: '';
    position: absolute;
    inset: 7px;
    background: #fff;
    border-radius: 50%;
}

.icon-ring i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1;
    animation: counter-rotate 12s linear infinite;
}

@keyframes counter-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.metric-content {
    margin-bottom: 18px;
}

.metric-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.4;
}

.metric-note {
    font-size: 0.8rem;
    color: #94a3b8;
}

.metric-action {
    margin-top: auto;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.25);
}

.action-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.35);
}

.action-btn i {
    transition: transform 0.3s ease;
}

.action-btn:hover i {
    transform: translateX(2px);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 auto;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

.contact-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid rgba(102, 126, 234, 0.08);
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 18px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.8rem;
    color: #94a3b8;
}

.contact-form {
    background: transparent;
    border-radius: 24px;
    padding: 40px;
    max-width: 1400px;
    margin: 60px auto 0;
    box-shadow: 
        0 20px 40px -8px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(102, 126, 234, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form h2::before,
.contact-form h2::after {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea);
}

.contact-form h2::after {
    background: linear-gradient(90deg, #667eea, transparent);
}

.contact-form form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group:nth-child(5) {
    grid-column: span 2;
}

.form-group:nth-child(6) {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #374151;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #c7d2fe;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group:last-child {
    grid-column: span 2;
    text-align: center;
    margin-top: 10px;
}

.btn.btn-primary {
    position: relative;
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.btn.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn.btn-primary:hover::before {
    left: 100%;
}

.btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1400px) {
    .contact-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .contact-showcase {
        padding: 25px 18px;
        border-radius: 16px;
    }
    
    .contact-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .metric-item {
        padding: 22px 18px;
    }
    
    .icon-ring {
        width: 60px;
        height: 60px;
    }
    
    .icon-ring i {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .title-line {
        width: 40px;
        height: 2px;
    }
    
    .contact-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .bg-gradient-orb {
        opacity: 0.12;
    }
    
    .contact-form {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .contact-form h2 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .contact-form h2::before,
    .contact-form h2::after {
        width: 30px;
    }
    
    .contact-form form {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group:nth-child(5),
    .form-group:nth-child(6) {
        grid-column: span 1;
    }
    
    .form-group:last-child {
        grid-column: span 1;
        margin-top: 5px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .btn.btn-primary {
        width: 100%;
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}
