/* ====================================
   CONTACT PAGE - ENTERPRISE LEVEL UI
   ==================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.contact-hero::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.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1rem;
}

.hero-badge i {
    font-size: 1.2rem;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-content > p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.stat-item i {
    font-size: 1.5rem;
}

/* Contact Content Section */
.contact-content {
    padding: 100px 20px;
    background: #f9fafb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.form-icon i {
    font-size: 2rem;
    color: white;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-header p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Form Messages */
.form-message {
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

.form-message i {
    font-size: 1.5rem;
}

/* Contact Form */
.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.contact-page .form-group {
    margin-bottom: 25px;
}

.contact-page .form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #1f2937;
    font-weight: 600;
    font-size: 1rem;
}

.contact-page .form-group label i {
    color: #667eea;
    font-size: 1.1rem;
}

.contact-page .required {
    color: #ef4444;
    font-weight: 700;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f9fafb;
    color: #1f2937;
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.contact-page .form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.char-count {
    text-align: right;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

.char-count span {
    color: #667eea;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover .btn-shine {
    left: 100%;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-header {
    background: white;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.info-header h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-header p {
    color: #6b7280;
    font-size: 1.05rem;
}

/* Info Cards */
.contact-page .info-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-page .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.contact-page .info-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.contact-page .info-content {
    flex: 1;
}

.contact-page .info-content h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-page .info-content p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.contact-page .info-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-page .info-content a:hover {
    color: #764ba2;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.info-link:hover {
    background: #667eea;
    color: white !important;
}

/* Office Hours */
.office-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.hour-row.closed {
    border-left-color: #ef4444;
    opacity: 0.7;
}

.hour-row .day {
    font-weight: 600;
    color: #1f2937;
}

.hour-row .time {
    color: #667eea;
    font-weight: 600;
}

.hour-row.closed .time {
    color: #ef4444;
}

/* Social Section */
.social-section {
    background: white;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.social-section h3 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 25px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook { background: #1877f2; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.youtube { background: #ff0000; }
.social-icon.linkedin { background: #0077b5; }

/* Map Section */
.map-section {
    padding: 100px 20px;
    background: white;
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h2 {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 800;
}

.map-header p {
    color: #6b7280;
    font-size: 1.2rem;
}

.map-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid #667eea;
}

.map-wrapper iframe {
    display: block;
}

/* Quick Actions Section */
.quick-actions {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.actions-header {
    text-align: center;
    margin-bottom: 60px;
}

.actions-header h2 {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 800;
}

.actions-header p {
    color: #6b7280;
    font-size: 1.2rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.action-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.action-card:hover::before {
    transform: scaleX(1);
}

.action-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.action-card:hover .card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.1) rotate(-5deg);
}

.card-icon i {
    font-size: 2.5rem;
    color: #667eea;
    transition: color 0.3s ease;
}

.action-card:hover .card-icon i {
    color: white;
}

.action-card h3 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 700;
}

.action-card p {
    color: #6b7280;
    margin: 0 0 15px 0;
    line-height: 1.6;
    font-size: 1rem;
}

.card-arrow {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s ease;
}

.action-card:hover .card-arrow {
    transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content > p {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }

    .map-header h2,
    .actions-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 15px 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .submit-btn {
        font-size: 1.1rem;
        padding: 18px 30px;
    }
}
