/* Contact Page Styles */
.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

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

.contact-header h1 {
    font-family: 'Google Sans', sans-serif;
    font-size: 48px;
    color: #202124;
    margin-bottom: 16px;
}

.contact-header h1 span {
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc04, #ea4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 18px;
    color: #5f6368;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-card,
.calendar-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.card-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 28px;
    color: #202124;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-title i {
    color: #4285f4;
}

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

.form-group label {
    display: block;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #202124;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #4285f4;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.submit-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.calendar-embed {
    width: 100%;
    min-height: 600px;
    border: none;
    border-radius: 8px;
}

.success-message {
    display: none;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    margin-top: 24px;
    border-left: 4px solid #4caf50;
}

.success-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message {
    display: none;
    background: #ffebee;
    color: #c62828;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    margin-top: 24px;
    border-left: 4px solid #f44336;
}

.error-message.show {
    display: block;
    animation: slideIn 0.3s ease;
}

/* CTA Phone Styles */
.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
    font-size: 28px;
    font-weight: 500;
}

.cta-phone i {
    color: white;
    font-size: 24px;
}

.phone-link {
    color: white;
    text-decoration: none;
    font-family: 'Google Sans', sans-serif;
    transition: all 0.3s ease;
}

.phone-link:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-header h1 {
        font-size: 36px;
    }

    .contact-form-card,
    .calendar-card {
        padding: 24px;
    }

    .cta-phone {
        font-size: 24px;
    }

    .cta-phone i {
        font-size: 20px;
    }
}
