/* Contact Main Page Styles */

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0a1628 100%);
    margin-top: 60px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 113, 227, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 200, 255, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 80px 20px;
    color: white;
}

.contact-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #a3d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero .hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
}

/* Quick Links Section */
.quick-links-section {
    padding: 80px 0;
    background: #fff;
}

.quick-links-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.quick-link-card {
    display: block;
    background: #f8fafc;
    border-radius: 24px;
    padding: 48px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0071e3, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-link-card:hover {
    background: #fff;
    border-color: #e2e8f0;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 113, 227, 0.12);
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-card .card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0071e3 0%, #00a3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.quick-link-card .card-icon svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.quick-link-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.quick-link-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.quick-link-card .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0071e3;
    font-size: 16px;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.quick-link-card .link-arrow svg {
    width: 20px;
    height: 20px;
    fill: #0071e3;
}

.quick-link-card:hover .link-arrow {
    gap: 12px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-info-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-section .section-label {
    display: block;
    color: #0071e3;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    order: 1;
}

.contact-info-section .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    order: 2;
}

.contact-info-section .section-header p {
    font-size: 18px;
    color: #666;
    order: 3;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-method-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 113, 227, 0.1);
}

.contact-method-card .method-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e6f2ff 0%, #f0f7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-method-card .method-icon svg {
    width: 32px;
    height: 32px;
    fill: #0071e3;
}

.contact-method-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.contact-method-card p {
    font-size: 15px;
    color: #888;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-method-card span {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-method-card a {
    display: inline-block;
    color: #0071e3;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method-card a:hover {
    color: #0056b3;
}

/* Quick Form Section */
.quick-form-section {
    padding: 100px 0;
    background: #fff;
}

.quick-form-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.quick-form-section .form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #f8fafc;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.quick-form-section .form-content {
    padding: 60px;
}

.quick-form-section .section-label {
    display: block;
    color: #0071e3;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.quick-form-section .form-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.quick-form-section .form-content > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.quick-form-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-form-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quick-form-section .form-group input,
.quick-form-section .form-group select,
.quick-form-section .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: #1a1a2e;
    background: #fff;
    transition: all 0.3s ease;
}

.quick-form-section .form-group input:focus,
.quick-form-section .form-group select:focus,
.quick-form-section .form-group textarea:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.quick-form-section .form-group input::placeholder,
.quick-form-section .form-group textarea::placeholder {
    color: #a0aec0;
}

.quick-form-section .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.quick-form-section .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 24px;
    cursor: pointer;
}

.quick-form-section .submit-btn {
    padding: 18px 32px;
    background: linear-gradient(135deg, #0071e3 0%, #00a3ff 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quick-form-section .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.3);
}

.quick-form-section .submit-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Form Image Side */
.quick-form-section .form-image {
    position: relative;
    background: linear-gradient(135deg, #0071e3 0%, #00a3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.quick-form-section .form-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.quick-form-section .image-content {
    position: relative;
    z-index: 1;
    color: white;
}

.quick-form-section .image-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.quick-form-section .image-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-form-section .image-content ul li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    margin-bottom: 20px;
}

.quick-form-section .image-content ul li svg {
    width: 24px;
    height: 24px;
    fill: white;
    flex-shrink: 0;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Responsive Styles */
@media (max-width: 1024px) {
    .quick-form-section .form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .quick-form-section .form-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 400px;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 17px;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-link-card {
        padding: 36px;
    }
    
    .contact-info-section,
    .quick-form-section {
        padding: 60px 0;
    }
    
    .contact-info-section .section-header h2 {
        font-size: 32px;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-form-section .form-content {
        padding: 40px 24px;
    }
    
    .quick-form-section .form-content h2 {
        font-size: 28px;
    }
    
    .quick-form-section .form-row {
        grid-template-columns: 1fr;
    }
}
