/* Contact Page Styles */
.contact-main-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 60px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-main-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

.contact-hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contact-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.contact-shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -50px;
    right: -50px;
}

.contact-shape-3 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transform: rotate(45deg);
    top: 50%;
    right: 10%;
}

/* Form Section */
.contact-form-section {
    margin-bottom: 60px;
}

.contact-form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form-group {
    margin-bottom: 25px;
}

.contact-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.contact-form-input, .contact-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-input:focus, .contact-form-textarea:focus {
    border-color: #6e8efb;
    box-shadow: 0 0 0 3px rgba(110, 142, 251, 0.2);
    outline: none;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit-btn {
    background: linear-gradient(to right, #6e8efb, #a777e3);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 142, 251, 0.4);
}

.contact-form-info {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #444;
    position: relative;
    padding-bottom: 10px;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #6e8efb, #a777e3);
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    fill: #6e8efb;
    margin-right: 15px;
}

.contact-info-text {
    font-size: 1rem;
    color: #555;
}

/* Info Boxes */
.contact-info-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-box {
    flex: 1;
    min-width: 250px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-box-icon-container {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.1), rgba(167, 119, 227, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-box-icon {
    width: 30px;
    height: 30px;
    fill: #6e8efb;
}

.contact-box-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #444;
}

.contact-box-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-box-link {
    color: #6e8efb;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-box-link:hover {
    color: #a777e3;
    transform: translateX(5px);
}

.contact-box-link::after {
    content: '→';
    margin-left: 5px;
    transition: all 0.3s ease;
}

/* Content Section */
.contact-content-section {
    margin-bottom: 60px;
}

.contact-content-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-content-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #444;
    position: relative;
}

.contact-content-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6e8efb, #a777e3);
    border-radius: 2px;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-content-item {
    padding: 25px;
    border-radius: 10px;
    background: rgba(110, 142, 251, 0.05);
    transition: all 0.3s ease;
}

.contact-content-item:hover {
    background: rgba(110, 142, 251, 0.1);
    transform: translateY(-5px);
}

.contact-content-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(110, 142, 251, 0.2);
    margin-bottom: 15px;
}

.contact-content-item-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #444;
}

.contact-content-item-text {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.contact-faq-section {
    margin-bottom: 60px;
}

.contact-faq-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-faq-main-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #444;
    position: relative;
}

.contact-faq-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #6e8efb, #a777e3);
    border-radius: 2px;
}

.contact-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.contact-faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    border: none;
    background: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
    transition: all 0.3s ease;
}

.contact-faq-question:hover {
    background: #f0f0f0;
}

.contact-faq-arrow {
    width: 16px;
    height: 16px;
    fill: #666;
    transition: all 0.3s ease;
}

.contact-faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.contact-faq-answer p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.contact-faq-item.active .contact-faq-question {
    background: #f0f0f0;
}

.contact-faq-item.active .contact-faq-arrow {
    transform: rotate(180deg);
}

.contact-faq-item.active .contact-faq-answer {
    max-height: 500px;
    padding: 0;
}

.contact-inline-link {
    color: #6e8efb;
    font-weight: 600;
    text-decoration: none;
}

.contact-inline-link:hover {
    text-decoration: underline;
}

/* Related Tool */
.contact-related-tool {
    background: linear-gradient(135deg, rgba(110, 142, 251, 0.1), rgba(167, 119, 227, 0.1));
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-related-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #444;
}

.contact-related-link {
    color: #6e8efb;
    font-weight: 600;
    text-decoration: none;
}

.contact-related-link:hover {
    text-decoration: underline;
}

.contact-related-text {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-content-title, .contact-faq-main-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 40px 20px;
    }
    
    .contact-main-title {
        font-size: 1.7rem;
    }
    
    .contact-info-box, .contact-content-item {
        min-width: 100%;
    }
    
    .contact-form-input, .contact-form-textarea {
        padding: 10px 12px;
    }
}










        /* Add these styles for the alerts */
        .custom-alert {
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 15px 20px;
            border-radius: 5px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-width: 300px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            z-index: 1000;
            transform: translateY(100px);
            opacity: 0;
            animation: slideIn 0.3s forwards;
        }
        .custom-alert.success {
            background: #4CAF50;
        }
        .custom-alert.error {
            background: #F44336;
        }
        .custom-alert .alert-close {
            background: transparent;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            margin-left: 15px;
        }
        @keyframes slideIn {
            to { transform: translateY(0); opacity: 1; }
        }
        .fade-out {
            animation: fadeOut 0.3s forwards;
        }
        @keyframes fadeOut {
            to { opacity: 0; transform: translateY(100px); }
        }
        .form-success-message {
            text-align: center;
            padding: 30px;
        }
        .form-success-message .success-icon {
            width: 60px;
            height: 60px;
            fill: #4CAF50;
            margin-bottom: 20px;
        }
        .form-success-message h3 {
            color: #4CAF50;
            margin-bottom: 10px;
        }