/* Enhanced Contact Page Styles */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #0067FE 0%, #015DF0 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 200'%3E%3Cpath d='M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 L1000,200 L0,200 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    animation: waveFloat 10s ease-in-out infinite;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    min-width: 160px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 0.7rem;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    letter-spacing: 0.8px;
}

/* Contact Options */
.contact-options {
    padding: 7rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 103, 254, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 103, 254, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.contact-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 103, 254, 0.15);
    border: 1px solid rgba(0, 103, 254, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    transform: scaleX(0);
    transition: transform 0.6s ease;
    z-index: 1;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 103, 254, 0.3);
    border-color: #0067FE;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 2.5rem;
    display: block;
    transition: all 0.4s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.15) rotate(8deg);
}

.contact-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover h3 {
    color: #0067FE;
}

.contact-card p {
    color: #999999;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.card-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 103, 254, 0.25);
    margin-top: auto;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.card-cta::after {
    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.7s;
}

.card-cta:hover::after {
    left: 100%;
}

.card-cta:hover {
    background: linear-gradient(135deg, #015DF0, #011745);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 103, 254, 0.35);
}

/* Contact Wrapper */
.contact-wrapper {
    padding: 7rem 0;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 103, 254, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}

/* Info Box */
.info-box {
    background: white;
    padding: 4rem;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 103, 254, 0.18);
    border: 1px solid rgba(0, 103, 254, 0.1);
    height: fit-content;
    transition: all 0.4s ease;
}

.info-box:hover {
    box-shadow: 0 30px 70px rgba(0, 103, 254, 0.25);
    border-color: rgba(0, 103, 254, 0.2);
}

.info-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 3rem;
    position: relative;
}

.info-box h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    border-radius: 2px;
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    color: #0067FE;
    background: rgba(0, 103, 254, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    background: #0067FE;
    color: white;
    transform: scale(1.1) rotate(8deg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #CCCCCC;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0067FE;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.contact-item p {
    color: #999999;
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-item a {
    color: #0067FE;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0067FE;
    transition: width 0.3s ease;
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-item a:hover {
    color: #015DF0;
}

.trust-indicators {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #CCCCCC;
    position: relative;
}

.trust-indicators::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0067FE, #015DF0);
    border-radius: 2px;
}

.trust-indicators h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.8rem;
}

.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    color: #999999;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.trust-list li:hover {
    transform: translateX(8px);
    color: #4D4D4D;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 4rem;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 103, 254, 0.18);
    border: 1px solid rgba(0, 103, 254, 0.1);
    transition: all 0.4s ease;
}

.contact-form:hover {
    box-shadow: 0 30px 70px rgba(0, 103, 254, 0.25);
    border-color: rgba(0, 103, 254, 0.2);
}

.contact-form h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #333333, #4D4D4D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    color: #999999;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 90%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #4D4D4D;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.input-field {
    width: 100%;
    padding: 1.3rem 1.8rem;
    border: 2px solid #CCCCCC;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #4D4D4D;
    font-family: 'Inter', sans-serif;
}

.input-field:focus {
    outline: none;
    border-color: #0067FE;
    box-shadow: 0 0 0 4px rgba(0, 103, 254, 0.1);
    background-color: #F2F2F2;
}

.input-field.textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #0067FE;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
}

.submit-button {
    width: 100%;
    padding: 1.4rem 2rem;
    background: linear-gradient(135deg, #0067FE, #015DF0);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 103, 254, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.8px;
}

.submit-button::after {
    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.7s;
}

.submit-button:hover::after {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 103, 254, 0.4);
    background: linear-gradient(135deg, #0069d9, #004caa);
}

.form-note {
    font-size: 0.95rem;
    color: #999999;
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 1.2rem 1.8rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border-left: 5px solid #00E6E4;
    display: none;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 103, 254, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 103, 254, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.faq-item {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 103, 254, 0.12);
    border: 1px solid rgba(0, 103, 254, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #0067FE, #015DF0);
    transition: height 0.4s ease;
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 103, 254, 0.2);
    border-color: #0067FE;
}

.faq-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover h4 {
    color: #0067FE;
    transform: translateX(8px);
}

.faq-item p {
    color: #999999;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0, 103, 254, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 45px rgba(0, 103, 254, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0, 103, 254, 0.2);
    }
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.field-active label {
    color: #0067FE;
    transform: translateY(-5px);
    font-weight: 600;
}

.submit-button:active {
    transform: scale(0.98);
}

.animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

.contact-card:hover .card-icon {
    animation: pulse 1.5s infinite;
}

.submit-button:hover {
    background-size: 200% 100%;
    background-image: linear-gradient(135deg, #0067FE, #015DF0, #0067FE);
    animation: shimmer 2s infinite;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 220px;
        padding: 1.8rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .contact-hero p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .contact-form, .info-box {
        padding: 3rem;
    }
    
    .contact-form h3, .info-box h3 {
        font-size: 1.8rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-form, .info-box {
        padding: 2rem;
    }
    
    .contact-hero h1 {
        font-size: 2.4rem;
    }
    
    .stat-item {
        min-width: 180px;
        padding: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 1.1rem;
    }
    
    .input-field {
        padding: 1.1rem 1.5rem;
    }
    
    .submit-button {
        padding: 1.2rem;
    }
}
.section-subheading {
    text-align: center;
    color: #999999;
    font-size: 1.2rem;
    max-width: 700px;
    margin: -1rem auto 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-subheading {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}