@import url('index.css');

/* Notification Bar */
.notification-bar {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.notification-content i {
    font-size: 1rem;
}

.notification-link {
    color: white;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.notification-link:hover {
    opacity: 0.8;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e8e8e8;
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-contact-info a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.header-contact-info a:hover {
    color: var(--primary-orange);
}

.header-social {
    display: flex;
    gap: 0.75rem;
}

.header-social a {
    width: 32px;
    height: 32px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.header-social a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* Contact Hero */
.contact-hero {
    padding: 140px 0 80px;
    background: var(--gradient-primary);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Contact Main */
.contact-main {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form */
.contact-form-section {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid rgba(230, 57, 70, 0.1);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
}

.input-group label i {
    color: var(--primary-purple);
}

.input-group input,
.input-group select,
.input-group textarea {
    padding: 1rem 1.25rem;
    border: 3px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-light);
    color: var(--text-dark);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: white;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.input-group textarea {
    resize: vertical;
    min-height: 160px;
}

/* Checkbox Styling */
.checkbox-wrapper {
    margin-top: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.6;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.check-box {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(124, 58, 237, 0.3);
    border-radius: 6px;
    background: var(--bg-light);
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked + .check-box {
    background: var(--gradient-primary);
    border-color: var(--primary-purple);
}

.checkbox-container input[type="checkbox"]:checked + .check-box::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-container:hover .check-box {
    border-color: var(--primary-purple);
}

.checkbox-label-text {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

.submit-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: 'Nunito', sans-serif;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.5);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 3px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.info-details h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.info-details p {
    color: var(--text-light);
    line-height: 1.7;
}

.info-details a {
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.info-details a:hover {
    color: var(--dark-purple);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .contact-form-section {
        padding: 2rem;
    }

    .contact-hero {
        padding: 120px 0 60px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .form-header h2 {
        font-size: 1.75rem;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }
}

