/* Contact Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-header p {
    color: #666;
    font-size: 1.1rem;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: #007bff;
    margin: 20px auto;
}

.contact-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.info-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-item p {
    color: #666;
}

.contact-form {
    flex: 2;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.social-connect {
    text-align: center;
    margin-top: 60px;
}

.social-connect h2 {
    color: #333;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: #007bff;
    text-decoration: none;
    padding: 10px 25px;
    border: 1px solid #007bff;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #007bff;
    color: white;
}

.contact-footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
}

.google-form-container {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.google-form-container iframe {
    display: block;
    width: 100%;
    border: none;
}

/* Search Bar Styles */
.search_bar {
    flex: 1;
    max-width: 600px;
    position: relative;
    margin: 0 20px;
}

.search_bar input {
    width: 100%;
    padding: 10px 100px 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    background: #f8f9fa;
}

#searchBtn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

#searchBtn:hover {
    background: #218838;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-item {
        flex: 1;
        min-width: 250px;
    }
}

@media screen and (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 20px;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .social-link {
        min-width: 150px;
    }

    .google-form-container {
        max-width: 100%;
    }
    
    .google-form-container iframe {
        height: 100vh; /* Full height on mobile */
        max-height: 988px;
    }

    .search_bar {
        width: 100%;
        margin: 10px 0;
    }

    .search_bar input {
        padding: 8px 90px 8px 15px;
    }

    #searchBtn {
        padding: 6px 15px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .contact-container {
        padding: 20px 15px;
    }

    .info-item {
        min-width: 100%;
    }

    .contact-header h1 {
        font-size: 1.8rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
    }
}