/* Contact Page CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'General Sans', sans-serif;
    background: linear-gradient(to right, #120024, #2d0a50);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 50px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #bb5efc;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #bb5efc;
}

/* Page Title */
.page-title {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
}

.highlight {
    color: #bb5efc;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 4px;
    background-color: #bb5efc;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
/* Additional styles for TopMate and Calendly sections */
    .scheduling-options {
         background-color: rgba(187, 94, 252, 0.1);
         padding: 25px;
         transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .scheduling-option {
            background-color: rgba(187, 94, 252, 0.1);
            border-radius: 8px;
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .scheduling-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(187, 94, 252, 0.2);
        }
        
        .scheduling-icon {
            font-size: 36px;
            color: #bb5efc;
            margin-bottom: 20px;
        }
        
        .scheduling-title {
            font-size: 24px;
            color: #bb5efc;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .scheduling-description {
            text-align: center;
            margin-bottom: 20px;
            font-size: 16px;
            color: #dddddd;
        }
        
        .scheduling-button {
            padding: 12px 24px;
            background: linear-gradient(to right, #8a2be2, #bb5efc);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .scheduling-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            margin: -30px 0 30px 0;
            color: #dddddd;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        @media (max-width: 888px) {
            .scheduling-options {
                grid-template-columns: 1fr;
            }
        }
/* Form Styles */
.contact-form {
    background-color: rgba(187, 94, 252, 0.1);
    border-left: 4px solid #bb5efc;
    padding: 25px;
    border-radius: 0 8px 8px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(187, 94, 252, 0.2);
}
.contact-form {
    background-color: rgba(187, 94, 252, 0.1);
    padding: 25px;
    border-radius: 8px;
    line-height: 1.8;
}

.contact-form {
    background-color: rgba(187, 94, 252, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.required {
    color: #bb5efc;
}

input, textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(187, 94, 252, 0.3);
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #bb5efc;
}

textarea {
    resize: vertical;
}

.submit-container {
    text-align: left;
    margin-top: 20px;
}

.submit-button {
    padding: 12px 30px;
    background: linear-gradient(to right, #8a2be2, #bb5efc);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    background-color: rgba(187, 94, 252, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(187, 94, 252, 0.2);
}

.contact-icon {
    width: 80px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
}

.contact-icon.telegram {
    background-color: rgba(187, 94, 252, 0.1);
    color: #8a2be2;
}

.contact-details h3 {
    font-size: 18px;
    color: #bb5efc;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 18px;
    color: #dddddd;
}

/* Footer */
footer {
    margin-top: 80px;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(187, 94, 252, 0.3);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(187, 94, 252, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #bb5efc;
}

.copyright {
    color: #bbbbbb;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info {
        order: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
