/* Contact Us Page Styles */

/* Active navigation link */
nav ul li a.active {
    color: #7BFF00;
    position: relative;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #7BFF00;
    bottom: -5px;
    left: 0;
}

/* Contact Hero Section */
.contact-hero {
    background-color: #000;
    display: flex;
    padding: 80px 100px;
    position: relative;
    overflow: hidden;
    color: white;
    min-height: 600px;
}

.contact-form-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-left {
    width: 45%;
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.say-hello-tag {
    display: inline-block;
    color: #7BFF00;
    border: 1px solid #7BFF00;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-heading {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
    position: relative;
}

.contact-heading::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, #7BFF00, transparent);
    bottom: -15px;
    left: 0;
}

.contact-description {
    margin-top: 40px;
    margin-bottom: 40px;
}

.contact-description p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 90%;
}

.contact-wave {
    position: relative;
    margin-top: 60px;
}

.wave-image {
    width: 100%;
    max-width: 300px;
    opacity: 0.6;
}

.contact-right {
    width: 50%;
    position: relative;
    z-index: 2;
}

/* Contact Form */
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    border-radius: 5px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.send-message-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-image: linear-gradient(90deg, #02FFFB 10%, #76FF04 90%);
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    align-self: flex-end;
}

.send-message-btn:hover {
    background-color: #7BFF00;
}

.circle-small {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.circle-small img {
    width: 40px;
    padding-left: 10px;
}

/* Office Locations Section */
.office-locations {
    background-color: #000;
    padding: 80px 100px;
    color: white;
    position: relative;
}

.office-locations::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 2px;
    background-color: #03FEF7;
    top: 0;
    left: 100px;
}

.locations-container {
    max-width: 1200px;
    margin: 0 auto;
}

.locations-heading {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
}

.locations-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.location-card {
    flex: 1;
    background-color: #0C0C0C;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: #7BFF00;
    transform: translateY(-5px);
}

.location-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #7BFF00;
}

.location-card p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.location-phone, .location-email {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.location-phone:hover, .location-email:hover {
    color: #03FEF7;
}

/* Mobile responsiveness */
@media screen and (max-width: 1024px) {
    .contact-hero, .office-locations {
        padding: 60px 40px;
    }
    
    .contact-heading {
        font-size: 48px;
    }
    
    .locations-heading {
        font-size: 40px;
    }
    
    .office-locations::before {
        left: 40px;
    }
}

@media screen and (max-width: 768px) {
    .contact-hero, .office-locations {
        padding: 40px 20px;
    }
    
    .contact-form-container {
        flex-direction: column;
    }
    
    .contact-left, .contact-right {
        width: 100%;
        padding-right: 0;
    }
    
    .contact-left {
        margin-bottom: 40px;
    }
    
    .contact-heading {
        font-size: 36px;
    }
    
    .locations-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .locations-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .office-locations::before {
        left: 20px;
        width: 150px;
    }
    
    .send-message-btn {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .contact-heading {
        font-size: 32px;
    }
    
    .say-hello-tag {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .contact-description p {
        font-size: 14px;
    }
    
    .contact-form input, 
    .contact-form textarea {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    .send-message-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .locations-heading {
        font-size: 28px;
    }
    
    .location-card h3 {
        font-size: 20px;
    }
} 