/**
 * NCHub - Professional FiveM QBCore Servers
 * Contact Page Styles
 */

/* Contact Hero Section */
.contact-hero {
    padding: 140px 0 60px; /* במקום 160px 0 80px */
    background: linear-gradient(140deg, #f5f7ff 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI5MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSI3MS41NzQlIiB5MT0iMjcuODE3JSIgeDI9IjEwMCUiIHkyPSIxMDAlIiBpZD0iYSI+PHN0b3Agc3RvcC1jb2xvcj0iIzQzNTNGRiIgc3RvcC1vcGFjaXR5PSIuMDUiIG9mZnNldD0iMCUiLz48c3RvcCBzdG9wLWNvbG9yPSJyZ2JhKDY3LCA4MywgMjU1LCAwKSIgb2Zmc2V0PSIxMDAlIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHBhdGggZD0iTTAgMGgxNDQwdjkwMEgwVjB6IiBmaWxsPSJ1cmwoI2EpIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIG9wYWNpdHk9Ii4zIi8+PC9zdmc+');
    background-size: cover;
    opacity: 0.7;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-badge {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    background-color: rgba(67, 83, 255, 0.1);
    padding: 5px 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-title {
    font-size: 2.5rem; /* במקום 3.5rem */
    margin-bottom: 15px; /* במקום 20px */
}

.accent-text {
    color: var(--primary);
    position: relative;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(67, 83, 255, 0.1);
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1rem; /* במקום 1.2rem */
    max-width: 650px;
    margin: 0 auto 15px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.breadcrumb-item {
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.breadcrumb-item:hover:not(.active) {
    color: var(--primary);
}

.breadcrumb-separator {
    color: #999;
    margin: 0 5px;
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 500;
}

/* Contact Content Section */
.contact-content {
    padding: 80px 0;
    background: white;
}

.contact-columns {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Contact Options Column */
.contact-options {
    flex: 0 0 30%;
}

.contact-option-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-option-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(67, 83, 255, 0.1);
}

.option-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgba(67, 83, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-option-item:hover .option-icon {
    background: var(--primary);
    color: white;
}

.option-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px;
}

.option-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.community-connect {
    margin-top: 40px;
    padding: 25px;
    background: linear-gradient(140deg, #f5f7ff 0%, #eef2ff 100%);
    border-radius: 12px;
    border: 1px solid rgba(67, 83, 255, 0.1);
    text-align: center;
}

.community-connect h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.community-connect p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7289DA;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.3);
    width: 100%;
}

.discord-btn i {
    margin-right: 8px;
    font-size: 18px;
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(114, 137, 218, 0.4);
    background: #5e78d5;
    color: white;
}

/* Contact Form Column */
.contact-form-container {
    flex: 1;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 30px;
    text-align: left;
}

.form-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.form-accent-line {
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #f8f9ff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 3px 10px rgba(67, 83, 255, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-notice {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
}

.form-notice a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-notice a:hover {
    text-decoration: underline;
}

.form-submit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(67, 83, 255, 0.25);
    border: none;
    cursor: pointer;
}

.submit-btn span {
    margin-right: 8px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 83, 255, 0.3);
}

.form-status {
    font-size: 14px;
    font-weight: 500;
}

.form-status.success {
    color: #55b467;
}

.form-status.error {
    color: #e74c3c;
}

/* Additional Contact Details Section */
.additional-contact {
    padding: 80px 0;
    background: linear-gradient(140deg, #f5f7ff 0%, #eef2ff 100%);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-detail-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(67, 83, 255, 0.1);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(67, 83, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-detail-card:hover .detail-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.contact-detail-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-detail-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.contact-detail-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-detail-card a:hover {
    text-decoration: underline;
}

.detail-highlight {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

/* Response styling */
.response-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
}

.response-message.success {
    background: rgba(85, 180, 103, 0.1);
    border: 1px solid rgba(85, 180, 103, 0.3);
    color: #2d8840;
}

.response-message.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #c0392b;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-columns {
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
}

@media screen and (max-width: 992px) {
    .contact-columns {
        flex-direction: column;
    }
    
    .contact-options {
        width: 100%;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .contact-title {
        font-size: 2.8rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-details-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .contact-hero, 
    .contact-content, 
    .additional-contact {
        padding: 60px 0;
    }
    
    .contact-hero {
        padding-top: 120px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .community-connect {
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .contact-hero, 
    .contact-content, 
    .additional-contact {
        padding: 40px 0;
    }
    
    .contact-hero {
        padding-top: 120px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 22px;
    }
    
    .form-header p {
        font-size: 14px;
    }
    
    .option-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-option-item {
        padding: 15px;
    }
    
    .option-content h3 {
        font-size: 16px;
    }
    
    .option-content p {
        font-size: 13px;
    }
    
    .detail-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}