/* ============================================
   CONTACT PAGE - PROFESSIONAL STYLES
   Siguiendo el diseño de las otras pestañas
   ============================================ */

/* =============================================
   HERO SECTION - Enhanced Design (Same as Solutions)
   ============================================= */
.contact-hero-enhanced {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f172a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* Background Effects */
.contact-hero-enhanced .hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Floating Particles */
.contact-hero-enhanced .hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: floatParticleContact 15s infinite;
}

.contact-hero-enhanced .hero-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.contact-hero-enhanced .hero-particles span:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: -3s;
}

.contact-hero-enhanced .hero-particles span:nth-child(3) {
    left: 70%;
    top: 30%;
    animation-delay: -5s;
}

.contact-hero-enhanced .hero-particles span:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: -8s;
}

.contact-hero-enhanced .hero-particles span:nth-child(5) {
    left: 50%;
    top: 80%;
    animation-delay: -12s;
}

@keyframes floatParticleContact {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-40px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Hero Content */
.contact-hero-enhanced .hero-content-center {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.contact-hero-enhanced .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badgePulseContact 3s ease-in-out infinite;
}

.contact-hero-enhanced .hero-badge svg {
    stroke: #a5b4fc;
}

@keyframes badgePulseContact {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(99, 102, 241, 0);
    }
}

/* Hero Title */
.contact-hero-enhanced h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.text-gradient-animated {
    background: linear-gradient(135deg, #22d3ee 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hero Subtitle */
.contact-hero-enhanced .hero-subtitle-dark {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Benefits Grid Enhanced */
.contact-hero-enhanced .benefits-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-enhanced .benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.contact-hero-enhanced .benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
}

.contact-hero-enhanced .benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.contact-hero-enhanced .benefit-icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
}

.contact-hero-enhanced .benefit-icon-cyan svg {
    stroke: #22d3ee;
}

.contact-hero-enhanced .benefit-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
}

.contact-hero-enhanced .benefit-icon-purple svg {
    stroke: #a855f7;
}

.contact-hero-enhanced .benefit-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
}

.contact-hero-enhanced .benefit-icon-green svg {
    stroke: #10b981;
}

.contact-hero-enhanced .benefit-icon-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.1));
}

.contact-hero-enhanced .benefit-icon-rose svg {
    stroke: #f43f5e;
}

.contact-hero-enhanced .benefit-content {
    text-align: left;
}

.contact-hero-enhanced .benefit-content strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.15rem;
}

.contact-hero-enhanced .benefit-content span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Responsive for new hero */
@media (max-width: 1024px) {
    .contact-hero-enhanced .benefits-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero-enhanced {
        padding: 100px 0 60px;
    }

    .contact-hero-enhanced h1 {
        font-size: 2.5rem;
    }

    .contact-hero-enhanced .hero-subtitle-dark {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-hero-enhanced .benefits-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .contact-hero-enhanced .benefit-card {
        padding: 1rem;
    }

    .contact-hero-enhanced .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .contact-hero-enhanced .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .contact-hero-enhanced h1 {
        font-size: 2rem;
    }

    .contact-hero-enhanced .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .contact-hero-enhanced .benefit-icon {
        width: 44px;
        height: 44px;
    }
}

/* =============================================
   CAPTCHA STYLES
   ============================================= */
.captcha-group {
    margin-top: 0.5rem;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
}

.captcha-container:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.1);
}

.captcha-question {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.captcha-text {
    font-size: 1rem;
    color: #334155;
}

.captcha-text strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0.25rem;
}

.captcha-input {
    width: 145px !important;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.6rem 1rem !important;
    border: 2px solid #e2e8f0 !important;
}

.captcha-input:focus {
    border-color: var(--accent-primary) !important;
}

/* Hide number input spinners */
.captcha-input::-webkit-outer-spin-button,
.captcha-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.captcha-input[type=number] {
    -moz-appearance: textfield;
}

.captcha-hint {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.captcha-hint::before {
    content: '🛡️';
    font-size: 0.9rem;
}

/* =============================================
   LEGACY CONTACT HERO SECTION
   ============================================= */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.contact-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
}

.hero-text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text-center h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =============================================
   MAIN CONTACT SECTION
   ============================================= */
.contact-main-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* =============================================
   CONTACT FORM WRAPPER
   ============================================= */
.contact-form-wrapper {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    /*border: 1px solid #e2e8f0;*/
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary), #06b6d4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 210, 255, 0.25);
}

.form-icon-box svg {
    color: #ffffff;
}

.form-header h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
}

/* =============================================
   ALERT MESSAGES
   ============================================= */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #86efac;
    color: #065f46;
}

.alert-success svg {
    color: #10b981;
}

.alert-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.alert-error svg {
    color: #ef4444;
}

.alert-error div {
    flex: 1;
}

.alert-error p {
    margin: 0.25rem 0;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
}

.form-group label svg {
    color: var(--accent-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    color: #1e293b;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.character-counter {
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: right;
    margin-top: -0.5rem;
}

/* SECURITY: Honeypot field - invisible to users */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* =============================================
   SUBMIT BUTTON
   ============================================= */
.btn-submit {
    grid-column: 1 / -1;
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--accent-primary), #06b6d4);
    color: #0f172a;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    color: #ffffff;
    background: linear-gradient(90deg, #818cf8, #a78bfa);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-disclaimer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
    justify-content: center;
}

.form-disclaimer svg {
    color: #10b981;
    flex-shrink: 0;
}

/* =============================================
   CONTACT INFO WRAPPER
   ============================================= */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* =============================================
   INFO CARD
   ============================================= */
.info-card {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    /*border: 1px solid #e2e8f0;*/
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.info-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.info-icon-box {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.info-icon-box svg {
    color: #ffffff;
}

.info-card-header h3 {
    font-size: 1.5rem;
    color: #1e293b;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(4px);
}

.info-item-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item-icon svg {
    color: var(--accent-primary);
}

.info-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item-content a,
.info-item-content span {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-item-content a:hover {
    color: var(--accent-primary);
}

/* =============================================
   QUICK ACTIONS GRID
   ============================================= */
.quick-actions-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quick-action-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.quick-action-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 210, 255, 0.15);
}

.quick-action-card:hover .quick-action-arrow {
    transform: translateX(4px);
}

.quick-action-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.quick-action-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(139, 92, 246, 0.1));
}

.quick-action-icon-purple svg {
    stroke: #8b5cf6;
}

.quick-action-icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(0, 210, 255, 0.1));
}

.quick-action-icon-cyan svg {
    stroke: #06b6d4;
}

.quick-action-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
}

.quick-action-icon-green svg {
    stroke: #10b981;
}

.quick-action-content {
    flex: 1;
}

.quick-action-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.15rem;
}

.quick-action-content span {
    font-size: 0.85rem;
    color: #64748b;
}

.quick-action-arrow {
    stroke: #94a3b8;
    transition: transform 0.3s ease;
}

/* Info Footer */
.info-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.info-footer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.info-footer-item svg {
    stroke: #94a3b8;
}

/* Legacy Quick Actions Card - Kept for backwards compatibility */
.quick-actions-card {
    background: linear-gradient(135deg, #f0fdff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 20px;
    padding: 2rem;
}

.quick-actions-card h4 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-action-btn:last-of-type {
    margin-bottom: 0;
}

.quick-action-btn:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 210, 255, 0.15);
}

.qa-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qa-icon svg {
    color: var(--accent-primary);
}

.qa-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.qa-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
}

.qa-desc {
    font-size: 0.85rem;
    color: #64748b;
}

.qa-arrow {
    color: #94a3b8;
    transition: all 0.3s ease;
}

.quick-action-btn:hover .qa-arrow {
    color: var(--accent-primary);
    transform: translateX(4px);
}

/* =============================================
   SOCIAL CARD
   ============================================= */
.social-card {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border: 1px solid #e9d5ff;
    border-radius: 20px;
    padding: 2rem;
}

.social-card h4 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links .social-link {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    border-color: var(--accent-purple);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(139, 92, 246, 0.1));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.2);
}

.social-links .social-link svg {
    color: #64748b;
    transition: color 0.3s ease;
}

.social-links .social-link:hover svg {
    color: var(--accent-purple);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablets (1024px and down) */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 2.5rem;
    }

    .hero-text-center h1 {
        font-size: 3rem;
    }
}

/* Tablets (768px and down) */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 50vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-text-center h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-main-section {
        padding: 4rem 0;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group {
        grid-column: 1 / -1;
    }

    .contact-info-wrapper {
        order: -1;
    }
}

/* Mobile (480px and down) */
@media (max-width: 480px) {
    .contact-hero {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .hero-text-center h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .form-icon-box {
        width: 56px;
        height: 56px;
    }

    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .info-card,
    .quick-actions-card,
    .social-card {
        padding: 1.5rem;
    }

    .quick-action-btn {
        padding: 1rem;
    }
}

/* =============================================
   BENEFITS HIGHLIGHT SECTION (Moved from Hero)
   ============================================= */
.benefits-highlight-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 0;
}

.benefits-highlight-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-highlight-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f8fafc;
}

.benefits-highlight-section .section-title .highlight {
    background: linear-gradient(135deg, #22d3ee, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-highlight-section .benefits-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-highlight-section .benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.benefits-highlight-section .benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.benefits-highlight-section .benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.benefits-highlight-section .benefit-icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
}

.benefits-highlight-section .benefit-icon-cyan svg {
    stroke: #22d3ee;
}

.benefits-highlight-section .benefit-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
}

.benefits-highlight-section .benefit-icon-purple svg {
    stroke: #a855f7;
}

.benefits-highlight-section .benefit-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
}

.benefits-highlight-section .benefit-icon-green svg {
    stroke: #10b981;
}

.benefits-highlight-section .benefit-icon-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.1));
}

.benefits-highlight-section .benefit-icon-rose svg {
    stroke: #f43f5e;
}

.benefits-highlight-section .benefit-content {
    text-align: left;
}

.benefits-highlight-section .benefit-content strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.2rem;
}

.benefits-highlight-section .benefit-content span {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Responsive Benefits Section */
@media (max-width: 1024px) {
    .benefits-highlight-section .benefits-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-highlight-section {
        padding: 3rem 0;
    }

    .benefits-highlight-section .section-title {
        font-size: 2rem;
    }

    .benefits-highlight-section .benefits-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .benefits-highlight-section .benefit-card {
        padding: 1.25rem;
    }

    .benefits-highlight-section .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefits-highlight-section .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Hero Description */
.contact-hero-enhanced .hero-description {
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-enhanced .hero-description p {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-hero-enhanced .hero-description p:last-child {
    margin-bottom: 0;
}

/* Optional Label Style */
.optional-label {
    font-weight: 400;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Required Field Indicator */
.required-indicator {
    color: #ef4444;
    font-weight: 700;
    margin-left: 2px;
}

/* Portal and Resources Section */
.quick-action-icon-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
}

.quick-action-icon-blue svg {
    stroke: #3b82f6;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 1.5rem 0;
}

.resources-section {
    padding-top: 0.5rem;
}

.resources-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 1rem;
}

.resources-title svg {
    color: #6366f1;
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resource-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: #a5b4fc;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.resource-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.resource-icon-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
}

.resource-icon-orange svg {
    stroke: #f97316;
}

.resource-icon-indigo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
}

.resource-icon-indigo svg {
    stroke: #6366f1;
}

.resource-icon-teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(20, 184, 166, 0.05));
}

.resource-icon-teal svg {
    stroke: #14b8a6;
}

.resource-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.resource-content strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
}

.resource-content span {
    font-size: 0.75rem;
    color: #64748b;
}