/* ============================================
   CONTACT SECTION - ENHANCED & PROFESSIONAL
   Modern design with multiple contact methods
   ============================================ */

/* Contact Section */
.contact-section-enhanced {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.contact-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
    animation: float 3s ease-in-out infinite;
}

.contact-badge i {
    font-size: 1.2rem;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 30px;
    font-weight: 500;
}

.response-time-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.response-time-banner i {
    font-size: 1.4rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Quick Stats Bar */
.contact-stats-bar {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
}

.stat-item i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
}

/* Main Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Left Side - Contact Info Cards */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Individual Info Card */
.info-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: rotate(10deg) scale(1.1);
}

.info-icon i {
    font-size: 28px;
    color: white;
}

/* Icon Gradients */
.phone-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.email-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.location-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.time-gradient {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.info-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 10px 0;
}

.info-value {
    font-size: 1.15rem;
    color: #334155;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.info-description {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.info-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.info-action:hover {
    color: #764ba2;
    gap: 12px;
}

.info-action i {
    font-size: 1.1rem;
}

/* Available Status */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

/* Right Side - Contact Form */
.contact-form-section {
    position: relative;
}

.form-card {
    background: white;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.form-title {
    font-size: 2rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 10px;
}

.form-description {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 35px;
    font-weight: 500;
}

/* Form Styling */
.enhanced-contact-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.enhanced-contact-form .input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
    z-index: 2;
    pointer-events: none;
}

.enhanced-contact-form .form-control {
    width: 100%;
    padding: 16px 20px 16px 55px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.enhanced-contact-form .form-control:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.enhanced-contact-form .form-control:focus + .input-icon,
.enhanced-contact-form .form-control:not(:placeholder-shown) + .input-icon {
    color: #667eea;
}

.enhanced-contact-form .form-control::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.enhanced-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
}

.enhanced-contact-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn .btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Quick Actions Section */
.quick-actions-section {
    margin-bottom: 60px;
}

.quick-actions-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 40px;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.quick-action-card {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(102, 126, 234, 0.1);
    text-decoration: none;
    color: #1e293b;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.quick-action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.quick-action-card:hover::before {
    transform: scaleX(1);
}

.quick-action-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.quick-action-card:hover .quick-action-icon {
    transform: scale(1.15) rotate(10deg);
}

.quick-action-icon i {
    font-size: 2.5rem;
    color: white;
}

.quick-action-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #1e293b;
}

.quick-action-card p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Quick Action Card Specific Colors */
.whatsapp-card::before {
    background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-card .quick-action-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.phone-card::before {
    background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.phone-card .quick-action-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.email-card::before {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.email-card .quick-action-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.register-card::before {
    background: linear-gradient(90deg, #8b5cf6 0%, #6d28d9 100%);
}

.register-card .quick-action-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Social Connect Section */
.social-connect-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
}

.social-connect-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
}

.social-connect-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook:hover {
    color: #1877f2;
}

.social-icon.linkedin:hover {
    color: #0077b5;
}

.social-icon.instagram:hover {
    color: #e4405f;
}

.social-icon.twitter:hover {
    color: #1da1f2;
}

.social-icon.youtube:hover {
    color: #ff0000;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-section-enhanced {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .contact-stats-bar {
        gap: 20px;
    }

    .stat-item {
        padding: 20px 25px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .quick-actions-title {
        font-size: 2rem;
    }

    .social-connect-title {
        font-size: 2rem;
    }

    .form-card {
        padding: 35px 25px;
    }

    .info-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .response-time-banner {
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .stat-content {
        text-align: center;
    }

    .form-card {
        padding: 25px 20px;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .social-connect-section {
        padding: 40px 25px;
        border-radius: 24px;
    }
}
