/* Unique Prefix: gh-contact- to match Blade file */

:root {
    --gh-primary: #0c30ce;
    --gh-secondary: #008cff;
    --gh-accent: #008cff;
    --gh-dark: #0A0A23;
    --gh-light: #FFFFFF;
}

.gh-contact-page {
    background-color: var(--gh-dark);
    color: var(--gh-light);
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
}

.gh-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.gh-contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 60px;
    text-align: center;
    background: linear-gradient(rgba(10, 10, 35, 0.9), rgba(10, 10, 35, 0.95)),
        url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1740&q=80') no-repeat center center/cover;
    position: relative;
}

.gh-contact-hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gh-secondary), var(--gh-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 140, 255, 0.5);
    font-family: 'Oxanium', cursive;
}

.gh-contact-hero-subtitle {
    font-size: 2rem;
    color: var(--gh-secondary);
    font-family: 'Oxanium', cursive;
    min-height: 60px;
}

.gh-contact-hero-description {
    font-size: 1.3rem;
    margin: 2rem 0;
    color: #ddd;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Content Section */
.gh-contact-content {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0A0A23, #0F0F2D);
}

.gh-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form Styles */
.gh-contact-form-container {
    background: linear-gradient(145deg, #13132E, #0D0D21);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 229, 255, 0.2);
    position: relative;
}

.gh-contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gh-primary), var(--gh-accent));
    border-radius: 15px 15px 0 0;
}

.gh-contact-section-title {
    color: var(--gh-secondary);
    margin-bottom: 30px;
    font-family: 'Oxanium', cursive;
    font-size: 2rem;
}

.gh-contact-form-group {
    position: relative;
    margin-bottom: 25px;
}

.gh-contact-input,
.gh-contact-textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.gh-contact-textarea {
    min-height: 120px;
    resize: vertical;
}

.gh-contact-input:focus,
.gh-contact-textarea:focus {
    outline: none;
    border-color: var(--gh-secondary);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(0, 140, 255, 0.3);
}

.gh-contact-form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gh-secondary);
    font-size: 1.2rem;
}

.gh-contact-textarea+i {
    top: 15px;
    transform: none;
}

.gh-contact-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, var(--gh-primary), var(--gh-accent));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oxanium', cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gh-contact-submit-btn:hover:not(:disabled) {
    background: linear-gradient(45deg, var(--gh-primary), var(--gh-secondary));
    box-shadow: 0 10px 20px rgba(0, 140, 255, 0.4);
}

/* Contact Info Cards */
.gh-contact-info-cards {
    display: grid;
    gap: 32px;
}

.gh-contact-info-card {
    background: linear-gradient(145deg, #13132E, #0D0D21);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: transform 0.3s ease;
}

.gh-contact-info-card:hover {
    transform: translateX(5px);
    border-color: var(--gh-secondary);
}

.gh-contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--gh-primary), var(--gh-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.gh-contact-info-content h3 {
    color: var(--gh-secondary);
    margin-bottom: 5px;
    font-family: 'Oxanium';
}

.gh-contact-info-content p {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.gh-contact-info-content span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* CTA Section */
.gh-contact-cta {
    padding: 80px 0;
    text-align: center;
    background: #0A0A23;
    position: relative;
}

.gh-contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gh-primary), var(--gh-secondary), var(--gh-accent));
}

.gh-contact-cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--gh-secondary), var(--gh-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Oxanium', cursive;
}

.gh-contact-cta-text {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

.gh-contact-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gh-contact-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oxanium', cursive;
    transition: 0.3s;
}

.gh-contact-btn-primary {
    background: var(--gh-secondary);
    color: white;
}

.gh-contact-btn-secondary {
    border: 2px solid var(--gh-secondary);
    color: white;
}

@media (max-width: 992px) {
    .gh-contact-grid {
        grid-template-columns: 1fr;
    }

    .gh-contact-hero-title {
        font-size: 3rem;
    }
}