/* contact-web-hosting-company — migrated from pages.css */

:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --background: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
}

body { font-family: 'Inter', sans-serif !important; background-color: var(--background); }

.contact-hero {
    background: radial-gradient(ellipse 70% 90% at 85% 12%, rgba(20,184,166,.22) 0%, transparent 60%), radial-gradient(ellipse 55% 70% at 8% 95%, rgba(45,212,191,.13) 0%, transparent 55%), linear-gradient(135deg, #0b1c33 0%, #123047 55%, #0e4a44 100%);
    padding: 100px 0 160px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13,148,136,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero h1 { font-size: 3.5rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 20px; }
.contact-hero p { font-size: 1.25rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

.contact-wrapper {
    max-width: 1200px;
    margin: -80px auto 100px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    position: relative;
    z-index: 10;
}

@media (max-width: 991px) {
    .contact-wrapper { grid-template-columns: 1fr; margin-top: -40px; }
}

/* CONTACT CARDS */
.contact-method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

.method-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.method-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(13,148,136,0.1); }
.method-card i { font-size: 32px; color: var(--primary); margin-bottom: 20px; }
.method-card h3 { font-size: 18px; font-weight: 800; color: var(--text-main); margin-bottom: 8px; }
.method-card p { font-size: 14px; color: var(--text-muted); margin: 0; }
.method-card a { color: var(--primary); font-weight: 700; text-decoration: none; display: block; margin-top: 12px; }

/* FORM SECTION */
.contact-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.contact-form-card h2 { font-size: 28px; font-weight: 900; color: var(--text-main); margin-bottom: 30px; letter-spacing: -0.02em; }

.modern-form-group { margin-bottom: 24px; }
.modern-form-group label { display: block; font-size: 14px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.modern-input {
    width: 100%;
    height: 54px;
    background: #f8fafc;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 0 20px;
    font-size: 16px;
    color: var(--text-main);
    transition: all 0.2s;
}

.modern-input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13,148,136,0.1);
    outline: none;
}

textarea.modern-input { height: 160px; padding: 20px; resize: none; }

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    height: 56px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(13,148,136,0.2); }

/* SIDEBAR INFO */
.contact-sidebar-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 40px;
    border-radius: 24px;
    color: #fff;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-section { margin-bottom: 40px; }
.sidebar-section:last-child { margin-bottom: 0; }
.sidebar-section h4 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--primary); margin-bottom: 20px; }
.sidebar-section p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; }

.social-links { display: flex; gap: 12px; }
.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover { background: var(--primary); transform: translateY(-3px); }

/* BREADCRUMB OVERRIDE */
.breadcrumbs { display: none; }

