/*
==================================
  VALUEX INNOVATIONS - CONTACT PAGE STYLES
==================================
*/

:root {
    --primary-navy: #0f172a;
    --primary-blue: #1e3a8a;
    --accent-cyan: #06b6d4;
    --accent-orange: #fb923c;
    --text-gradient: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-cyan) 100%);
}

body { background-color: #f8f9fa; }

/* Hero Section */
.contact-hero-section {
    background: var(--primary-navy);
    padding: 8rem 0;
    color: white;
}

.contact-hero-title { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; }
.text-gradient { background: var(--text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-hero-subtitle { font-size: 1.25rem; color: rgba(255, 255, 255, 0.8); margin-top: 1rem; }

/* Contact Info Section */
.contact-info-section {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.info-icon {
    width: 70px; height: 70px; margin: 0 auto 1rem;
    background: var(--gradient-cyan); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
}

.info-card h5 { font-weight: 600; }
.info-card p { color: #6c757d; margin: 0; }

/* Main Content */
.contact-main-content { padding: 5rem 0; }

.contact-form-wrapper {
    background: white; padding: 3rem;
    border-radius: 1.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.section-title { font-weight: 700; }
.section-description { color: #6c757d; }

.form-label { font-weight: 500; font-size: 0.9rem; }
.form-control, .form-select {
    height: 50px; border: 1px solid #dee2e6;
    border-radius: 0.5rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent-cyan); box-shadow: 0 0 0 0.25rem rgba(6, 182, 212, 0.25);
}
textarea.form-control { height: auto; }

.btn-submit {
    background: var(--gradient-orange); color: white;
    padding: 0.75rem 2.5rem; border-radius: 25px;
    font-weight: 600; border: none;
    box-shadow: 0 5px 15px rgba(251, 146, 60, 0.3);
    transition: all 0.3s ease;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 146, 60, 0.5);
}

/* Map Section */
.map-section {
    margin-top: 5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.map-content {
    position: absolute; top: 2rem; left: 2rem;
    background: white; padding: 1.5rem; border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.map-icon {
    font-size: 1.5rem; color: var(--accent-cyan); margin-bottom: 0.5rem;
}
