
        /* Contact Page Specific Styles - Cleaned Version */
        .contact-hero {
            padding: 200px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--darker) 0%, #121a2d 100%);
        }

        .contact-hero .hero-text h1 {
            font-size: 64px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--light) 0%, var(--brain-cyan) 40%, var(--botsfuture-blue) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .contact-section {
            padding: 120px 0;
            background: var(--dark);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info , .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border-radius: 24px;
            padding: 50px 40px;
            border: 1px solid rgba(0, 227, 248, 0.1);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .contact-info h2 {
            font-size: 32px;
            margin-bottom: 40px;
            color: var(--light);
            background: linear-gradient(135deg, var(--light) 0%, var(--brain-cyan) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 16px;
            background: rgba(0, 227, 248, 0.05);
            border: 1px solid rgba(0, 227, 248, 0.1);
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            border-color: var(--brain-cyan);
            transform: translateX(10px);
            background: rgba(0, 227, 248, 0.1);
        }
.form-success {
    display: none;
}

        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--darker);
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-size: 18px;
            color: var(--light);
            margin-bottom: 8px;
        }

        .contact-details p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
        }

        .contact-details a {
            color: var(--brain-cyan);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--light);
            text-decoration: underline;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .contact-form h2 {
            font-size: 32px;
            margin-bottom: 40px;
            color: var(--light);
            background: linear-gradient(135deg, var(--light) 0%, var(--brain-cyan) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
.btn-secondary-contact {
       padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    background: #25D366
;
    color: white;
    box-shadow: var(--shadow-orange);
    font-weight: 800;
}

.btn-secondary-contact::before {
    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 ease;
}

.btn-secondary-contact:hover::before {
    left: 100%;
}
        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--light);
            font-weight: 600;
            font-size: 15px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            background: rgba(10, 14, 23, 0.8);
            border: 1px solid rgba(0, 227, 248, 0.2);
            border-radius: 12px;
            color: var(--light);
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--brain-cyan);
            box-shadow: 0 0 0 3px rgba(0, 227, 248, 0.1);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

       
        .faq-section {
            padding: 120px 0;
            background: var(--dark);
        }

        .faq-container {
            max-width: 800px;
            margin: 60px auto 0;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            margin-bottom: 15px;
            border: 1px solid rgba(0, 227, 248, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            border-color: var(--brain-cyan);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--light);
            font-weight: 600;
            font-size: 18px;
        }

        .faq-question:hover {
            background: rgba(0, 227, 248, 0.05);
        }

        .faq-toggle {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--darker);
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 500px;
        }

        .faq-answer p {
            color: var(--gray);
            line-height: 1.8;
            font-size: 16px;
        }

        .map-section {
            padding: 80px 0;
            background: var(--gradient-dark);
        }

        .map-container {
            border-radius: 24px;
            overflow: hidden;
            height: 400px;
            border: 1px solid rgba(0, 227, 248, 0.2);
            box-shadow: var(--shadow-neuro);
            position: relative;
        }

  /* Add these new styles if needed */
.map-container iframe {
    border-radius: 24px;
    box-shadow: var(--shadow-neuro);
}

.map-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

        .form-success {
            display: none;
            text-align: center;
            padding: 40px;
            background: rgba(0, 227, 248, 0.05);
            border-radius: 16px;
            border: 1px solid var(--brain-cyan);
            margin-top: 30px;
        }

        .form-success i {
            font-size: 64px;
            color: var(--brain-cyan);
            margin-bottom: 20px;
        }

        .form-success h3 {
            font-size: 28px;
            color: var(--light);
            margin-bottom: 15px;
        }

        .form-success p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.6;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .contact-container {
                gap: 60px;
            }
        }

        @media (max-width: 992px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .contact-hero .hero-text h1 {
                font-size: 48px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .contact-info,
            .contact-form {
                padding: 30px 20px;
            }
            
            .contact-method {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }
            
            .faq-question {
                padding: 20px;
                font-size: 16px;
            }
            
            .contact-hero .hero-text h1 {
                font-size: 36px;
            }
            
            .section-header h2 {
                font-size: 32px;
            }
            
            .map-container {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .contact-hero {
                padding: 150px 0 80px;
            }
            
            .contact-section,
            .faq-section,
            .map-section {
                padding: 80px 0;
            }
            
            .contact-hero .hero-text h1 {
                font-size: 32px;
            }
            
            .map-placeholder {
                font-size: 16px;
            }
            
            .map-placeholder i {
                font-size: 48px;
            }
        }
   