
/* Professional Contact Page CSS */
:root {
    --primary-color: #001f3f;
    --primary-dark: #00162e;
    --accent-color: #0d4d4d;
    --light-bg: #f7f8fb;
    --text-main: #334155;
    --border-color: rgba(2, 6, 23, 0.10);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body.contact-page {
    background-color: var(--light-bg);
    font-family: var(--font-body);
}

/* Contact Hero - Immersive */
.contact-hero {
    background: linear-gradient(135deg, #071a2f 0%, #0b2a4f 55%, #0a243f 100%);
    position: relative;
    padding: 8rem 0 6rem;
    color: white;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(2.2rem, 3.8vw, 3.15rem);
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.contact-hero__subtitle {
    max-width: 70ch;
    line-height: 1.65;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
}

.contact-hero__breadcrumb .breadcrumb {
    margin-bottom: 0;
}

.contact-hero__breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-weight: 700;
}

.contact-hero__breadcrumb .breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.contact-hero__breadcrumb .breadcrumb-item.active {
    color: rgba(255,255,255,0.72);
    font-weight: 800;
}

.btn-contact-primary {
    background: #2563eb;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.btn-contact-primary:hover {
    background: #1d4ed8;
}

.btn-contact-secondary {
    background: rgba(255,255,255,0.06);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.22);
}

.btn-contact-secondary:hover {
    background: rgba(255,255,255,0.12);
}

.contact-hero-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 1.35rem 1.35rem;
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.22);
}

.contact-hero-card__title {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.2px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-hero-kv {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(2,6,23,0.12);
    color: #0f172a;
}

.contact-hero-kv .k {
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-kv .v {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
    line-height: 1.35;
}

.contact-hero-kv--last {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-hero-card__note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(2,6,23,0.08);
    color: #475569;
    font-weight: 700;
    font-size: 0.92rem;
}

/* Contact Wrapper */
.contact-wrapper {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    padding-bottom: 5rem;
}

/* Glassmorphic Info Grid */
.info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #2563eb;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.info-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.10);
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.info-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: #2563eb;
    color: white;
}

.info-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-bg);
}

.info-card p {
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}

.contact-link:hover {
    gap: 0.75rem;
}

/* Contact Form Container */
.contact-form-container {
    background: white;
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.form-floating > .form-control, 
.form-floating > .form-select {
    border-radius: 12px;
    border: 2px solid #F1F5F9;
    background: #F8FAFC;
    height: calc(3.5rem + 2px);
    font-weight: 500;
    color: var(--dark-bg);
}

.form-floating > textarea.form-control {
    height: 150px !important;
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
    background: white;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.14);
}

.form-floating > label {
    padding-left: 1rem;
    color: #94A3B8;
}

.btn-submit {
    background: #2563eb;
    color: white;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.28);
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.32);
}

/* Social Connect */
.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.map-section iframe {
    filter: grayscale(100%) contrast(1.2);
    transition: filter 0.5s ease;
}

.map-section:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.info-content p {
    color: #64748B;
    margin: 0;
    line-height: 1.6;
}

/* Contact Form */
.form-card {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.2s;
    background: #F8FAFC;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
    outline: none;
}

.btn-contact-submit {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    border: none;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-contact-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.28);
}

/* Map */
.map-wrapper {
    border-radius: 2rem;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Social Bar */
.social-connect {
    background: #1E293B;
    padding: 3rem;
    border-radius: 2rem;
    color: white;
    text-align: center;
    margin-top: 4rem;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        padding: 4rem 0;
        border-radius: 0 0 2rem 2rem;
    }
}
