/*
 * Pictuscode - Contact Page Styles (Light Theme)
 * Premium, clean design with smooth animations
 */

/* ==========================================================================
   Contact Hero Section
   ========================================================================== */
.contact-hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.highlight-gradient {
    background: linear-gradient(135deg, #6366F1, #8B5CF6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: 1.15rem;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.contact-stats {
    padding: 60px 0;
    background: #fff;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-radius: 20px;
    border: 1px solid #e8e9f3;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 500;
}

/* ==========================================================================
   Contact Badge Premium
   ========================================================================== */
.contact-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.contact-badge-premium i {
    color: #6366F1;
    font-size: 1rem;
}

.contact-badge-premium span {
    color: #6366F1;
    font-size: 0.9rem;
}

.badge-glow-contact {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badge-shine 3s infinite;
}

@keyframes badge-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ==========================================================================
   Office Locations Section
   ========================================================================== */
.office-locations-section {
    padding: 80px 0;
    background: #f8f9ff;
}

.office-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e8e9f3;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6366F1, #8B5CF6);
    transition: width 0.3s ease;
}

.office-card.india::before {
    background: linear-gradient(180deg, #FF9933, #138808);
}

.office-card.usa::before {
    background: linear-gradient(180deg, #3C3B6E, #B22234);
}

.office-card:hover::before {
    width: 6px;
}

.office-card-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.6s ease;
}

.office-card:hover .office-card-shine {
    left: 100%;
}

.office-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.country-flag {
    font-size: 2.5rem;
    line-height: 1;
}

.office-title {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.office-subtitle {
    font-size: 0.85rem;
    color: #8B5CF6;
    margin: 0;
}

.office-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-details li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.office-details li:last-child {
    margin-bottom: 0;
}

.office-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.office-icon.address {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: #6366F1;
}

.office-icon.phone {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 214, 160, 0.1));
    color: #10B981;
}

.office-content strong {
    display: block;
    font-size: 0.8rem;
    color: #9CA3AF;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.office-content span {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================================================
   Contact Main Section
   ========================================================================== */
.contact-main-section {
    padding: 80px 0;
    background: #fff;
}

/* Luxury Contact Form */
.luxury-contact-form {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e9f3;
}

.form-header-luxury {
    text-align: center;
    margin-bottom: 35px;
}

.form-icon-luxury {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    border-radius: 20px;
    margin: 0 auto 20px;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.form-icon-luxury i {
    font-size: 1.8rem;
    color: #fff;
}

.form-header-luxury h4 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.form-header-luxury p {
    color: #6B7280;
    margin: 0;
}

.luxury-input-group {
    position: relative;
}

.luxury-input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 1rem;
    transition: color 0.3s ease;
    z-index: 2;
}

.luxury-input-group textarea + i,
.luxury-input-group i:has(+ textarea) {
    top: 20px;
    transform: none;
}

.luxury-form-control {
    width: 100%;
    padding: 16px 18px 16px 50px;
    font-size: 0.95rem;
    color: #1a1a2e;
    background: #f8f9ff;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.luxury-form-control:focus {
    outline: none;
    background: #fff;
    border-color: #6366F1;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.luxury-form-control:focus + i,
.luxury-input-group:focus-within i {
    color: #6366F1;
}

.luxury-form-control::placeholder {
    color: #9CA3AF;
}

textarea.luxury-form-control {
    resize: vertical;
    min-height: 130px;
    padding-top: 16px;
}

.luxury-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 35px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.luxury-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.luxury-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

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

/* Support Items */
.support-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid #e8e9f3;
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.support-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.support-icon.primary {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: #fff;
}

.support-icon.accent {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.support-icon.secondary {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
}

.support-icon i {
    font-size: 1.2rem;
}

.support-content h5 {
    color: #1a1a2e;
    margin-bottom: 5px;
    font-size: 1rem;
}

.support-content p {
    color: #6B7280;
    margin: 0;
    font-size: 0.9rem;
}

.support-content a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-content a:hover {
    color: #6366F1;
}

/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
    padding: 80px 0;
    background: #f8f9ff;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.map-controls {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1000;
    background: #fff;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-control-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6B7280;
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.map-control-btn:hover,
.map-control-btn.active {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: #fff;
}

.multi-location-map {
    height: 450px;
    width: 100%;
    border-radius: 20px;
}

.map-popup {
    font-family: 'Poppins', sans-serif;
    padding: 5px;
}

.map-popup strong {
    display: block;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-header {
    margin-bottom: 50px;
}

.faq-title {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #6B7280;
    font-size: 1rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #f8f9ff;
    border-radius: 15px;
    border: 1px solid #e8e9f3;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 25px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-button:hover {
    background: rgba(99, 102, 241, 0.05);
}

.faq-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    color: #6366F1;
}

.faq-button::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #6366F1;
    transition: transform 0.3s ease;
}

.faq-button:not(.collapsed)::after {
    content: '−';
}

.faq-collapse {
    background: #fff;
}

.faq-body {
    padding: 0 30px 25px;
    color: #6B7280;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.support-options-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 50%, #f0f4ff 100%);
}

.support-options-section h3 {
    font-size: 2rem;
    color: #1a1a2e;
}

.support-options-section p {
    color: #6B7280;
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    color: #fff;
}

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

.btn-cta-primary:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 991.98px) {
    .contact-hero-section {
        padding: 120px 0 60px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .office-locations-section,
    .contact-main-section,
    .map-section,
    .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .luxury-contact-form {
        padding: 30px 25px;
    }
    
    .office-card {
        padding: 25px;
    }
    
    .multi-location-map {
        height: 350px;
    }
    
    .map-controls {
        flex-wrap: wrap;
        max-width: 90%;
    }
    
    .faq-button {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .faq-body {
        padding: 0 20px 20px;
    }
}

@media (max-width: 575.98px) {
    .contact-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .contact-badge-premium {
        padding: 8px 16px;
    }
    
    .contact-badge-premium span {
        font-size: 0.8rem;
    }
    
    .office-header {
        flex-direction: column;
        text-align: center;
    }
    
    .office-details li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}