/* Contact Page Styles (Contact.cshtml / ContactEn.cshtml) */
/* Mobile-first approach - base styles for small screens */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, #BBDEFB 100%);
    padding: 3rem 0 2.5rem 0;  /* Mobile: smaller padding */
    margin: 0;  /* Mobile: no negative margin to avoid scroll issues */
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234A90E2' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-hero h1 {
    font-size: 1.75rem;  /* Mobile: smaller font */
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.05rem;  /* Mobile: smaller font */
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;  /* Mobile: smaller padding */
    box-shadow: var(--shadow-lg);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;  /* Mobile: smaller padding */
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.1);
    border: 2px solid var(--light-blue);
    margin-bottom: 15px;  /* Mobile: smaller margin */
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-blue);
}

.contact-info-icon {
    width: 50px;  /* Mobile: smaller icon */
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;  /* Mobile: smaller font */
    color: white;
    margin-bottom: 15px;
}

.contact-info-title {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.1rem;  /* Mobile: slightly smaller */
    margin-bottom: 10px;
}

.contact-info-text {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;  /* Mobile: slightly smaller */
}

.contact-info-text a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-info-text a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* Contact Page Wrapper */
.contact-page-wrapper {
    padding-top: 2rem;  /* Mobile: smaller padding */
    padding-bottom: 3rem;  /* Mobile: smaller padding */
}
