/* Contact Page */
.contact-hero {
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    opacity: 0.95;
}

.contact-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.contact-info {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 25px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.4rem;
}

.info-text p {
    margin: 0;
    color: #555;
}

.info-text strong {
    display: block;
    margin-bottom: 0.2rem;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }
}


@media (max-width: 968px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--dark);
        border-radius: 3px;
        transition: all 0.3s;
    }

    .nav-links {
        position: fixed;
        top: 70px; /* height of navbar */
        right: -100%;
        width: 250px;
        height: calc(100% - 70px);
        background: white;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        list-style: none;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        display: flex; /* <- must be flex, NOT none */
        z-index: 1001;
    }

    .nav-links.show {
        right: 0;
    }

    /* hide desktop CTA buttons on mobile */
    .nav-cta {
        display: none;
    }
}
	
		
		
		