/**
 * ========================================
 * RETAILER SUPPORT CENTER PAGE - COMPLETE CSS
 * Updated: Larger icon on desktop + gray divider line
 * ========================================
 */

/* ========== HERO SECTION ========== */
.support-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
    background: radial-gradient(ellipse at 20% 30%, #2B4150 0%, #2B4150 25%, #207C7E 55%, #1D95D1 100%) !important;
}

.support-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* SVG Pattern */
.support-hero-pattern {
    position: absolute;
    top: -3%;
    left: 40%;
    right: -10%;
    bottom: -3%;
    overflow: hidden;
    background-image: url('https://arrowheadprstg.wpengine.com/wp-content/uploads/2026/01/subelement.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 750px;
    opacity: 1;
    z-index: 2;
}

.support-hero-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.support-hero-content {
    max-width: 750px;
    text-align: left;
    padding: 0;
    margin: 0;
}

/* Label */
.support-hero-label {
    color: #6EB510;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

/* Title */
.support-hero-title {
    color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0;
	max-width: 650px !important;
    animation: fadeInTyping 1.2s ease-out;
}

/* Typing animation - clip-path version */
@keyframes fadeInTyping {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

/* Description */
.support-hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE HERO PATTERN ========== */

/* Small to Medium Desktop (1000px - 1400px) */
@media (min-width: 1000px) and (max-width: 1400px) {
    .support-hero-pattern {
        left: 45% !important;
        right: -12% !important;
        background-position: 100% center !important;
    }
}

/* Hide SVG pattern on screens less than 1000px */
@media (max-width: 999px) {
    .support-hero-pattern {
        display: none !important;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    .support-hero-label,
    .support-hero-title,
    .support-hero-description {
        animation: none;
    }
}

/* ========== ASSISTANCE SECTION ========== */
.support-assistance-section {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.support-assistance-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.assistance-card {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr; /* INCREASED from 180px for larger icon */
    gap: var(--spacing-xl);
    align-items: start;
    position: relative;
}

/* Gray vertical divider line between icon and content */
.assistance-card::after {
    content: '';
    position: absolute;
    left: 220px; /* Position at icon column end */
    top: 0;
    bottom: 0;
    width: 1px;
    background: #E5E5E5;
    margin-left: calc(var(--spacing-xl) / 2); /* Center it in the gap */
}

/* Assistance Icon - LARGER */
.assistance-icon {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
}

.assistance-icon svg {
    width: 200px; /* INCREASED from 160px */
    height: 200px; /* INCREASED from 160px */
    filter: drop-shadow(0 4px 12px rgba(29, 149, 209, 0.15));
}

.assistance-icon-image {
    width: 200px; /* INCREASED from 160px */
    height: 200px; /* INCREASED from 160px */
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(29, 149, 209, 0.15));
}

.assistance-content {
    color: #2B4150;
}

/* Assistance Title */
.assistance-title {
    color: #1D95D1;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 32px 0;
}

.assistance-info {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.assistance-info p {
    margin: 0 0 8px 0;
}

.assistance-info p:last-child {
    margin-bottom: 0;
}

.email-link,
.phone-link {
    color: #1D95D1;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover,
.phone-link:hover {
    color: #6EB510;
    text-decoration: none;
}

/* Assistance Description */
.assistance-description {
    margin-top: 20px;
    padding: 20px;
    background: #F5F9FC;
    border-radius: 8px;
    border-left: 4px solid #1D95D1;
}

.questionnaire-note {
    margin-top: 32px;
    font-style: italic;
    color: #666666;
}

.questionnaire-note a {
    color: #1D95D1;
    font-weight: 600;
    text-decoration: none;
}

.questionnaire-note a:hover {
    text-decoration: none;
}

/* ========== RESOURCES SECTION ========== */
.support-resources-section {
    background-color: #F8F8F8;
    padding: 100px 0;
}

.support-resources-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Title */
.section-title {
    color: #1D95D1;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 var(--spacing-xl) 0;
    text-align: left;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.resource-card {
    width: 100%;
    max-width: 380px;
}

/* Resource Card */
.resource-card {
    width: 100%;
    max-width: 380px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Card Icon */
.resource-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 16px;
    margin-bottom: 20px;
    color: #5CC2CF;
    transition: color 0.3s ease;
}

.resource-card:hover .resource-card-icon {
    color: #1D95D1;
}

.resource-card-icon svg {
    width: 58px;
    height: 58px;
}

/* Card Title */
.resource-card-title {
    color: #2B4150;
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px 0;
}

.resource-card-description {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.resource-card-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

/* Resource Button */
.resource-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #2B4150;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.resource-button:hover {
    background: #2B4150;
    color: #FFFFFF;
    transform: translateX(4px);
}

.resource-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.resource-button:hover svg {
    transform: translateX(4px);
}

.resource-button-secondary {
    background: transparent;
    color: #2B4150;
    border: 2px solid #2B4150;
}

.resource-button-secondary:hover {
    background: #2B4150;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.resource-button-secondary:hover svg {
    transform: translateY(2px);
}

/* ========== INFO SECTION (2 COLUMNS) ========== */
.support-info-section {
    background-color: #FFFFFF;
    padding: 100px 0;
    border-top: 1px solid #E5E5E5;
}

.support-info-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.info-two-column-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.info-column {
    padding: 32px;
}

.info-column-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Info Icon */
.info-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background: #5CC2CF;
    border-radius: 16px;
    color: #FFFFFF;
    margin-bottom: 32px;
    transition: background 0.3s ease;
}

.info-icon:hover {
    background: #1D95D1;
}

.info-icon svg {
    width: 54px;
    height: 54px;
}

/* Info Title */
.info-title {
    color: #1D95D1;
    font-family: 'Urbanist', sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 32px 0;
}

/* Info Content */
.info-content {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2B4150;
}

.info-content p {
    margin: 0 0 20px 0;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.info-content strong {
    font-weight: 700;
    color: #2B4150;
}

.info-column-right {
    background: #F8F8F8;
    border-radius: 12px;
    border: 2px solid #E5E5E5;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.info-html-embed {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.info-html-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 10px;
}

/* Style any embedded form elements */
.info-html-embed input,
.info-html-embed select,
.info-html-embed textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.info-html-embed input:focus,
.info-html-embed select:focus,
.info-html-embed textarea:focus {
    border-color: #1D95D1;
    outline: none;
}

.info-html-embed button,
.info-html-embed input[type="submit"] {
    background: #1D95D1;
    color: #FFFFFF;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.info-html-embed button:hover,
.info-html-embed input[type="submit"]:hover {
    background: #6EB510;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet */
@media (max-width: 1024px) {
    .support-hero-title {
        font-size: 42px;
    }
    
    .support-hero-description {
        font-size: 16px;
    }
    
    .assistance-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Hide divider line on tablet/mobile */
    .assistance-card::after {
        display: none;
    }
    
    .assistance-icon {
        justify-content: center;
        padding-top: 0;
    }
    
    .assistance-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resource-card {
        max-width: 100%;
    }
    
    .address-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .address-icon {
        margin: 0 auto;
    }
    
    .address-title {
        font-size: 32px;
    }
    
    .info-two-column-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .info-column-left {
        align-items: center;
        text-align: center;
    }
    
    .info-title {
        font-size: 32px;
    }
    
    .search-title {
        font-size: 28px;
    }
}

/* Mobile - Left aligned text, centered cards */
@media (max-width: 768px) {
    .support-hero-wrapper,
    .support-assistance-section > .container,
    .support-resources-section > .container,
    .support-info-section > .container {
        padding: 0 20px;
    }
    
    .support-hero-section {
        padding: 80px 0;
        min-height: 400px;
    }
    
    .support-hero-title {
        font-size: 40px !important;
    }
    
    .support-hero-description {
        font-size: 16px;
    }
    
    .support-assistance-section,
    .support-resources-section,
    .support-info-section {
        padding: 80px 0 !important;
    }
    
    /* Assistance Section - Left align text, center icon */
    .assistance-card {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    /* Hide divider line on mobile */
    .assistance-card::after {
        display: none;
    }
    
    .assistance-icon {
        justify-content: center;
        margin-bottom: 24px;
    }
    
    .assistance-content {
        text-align: left;
    }
    
    .assistance-title {
        font-size: 28px;
        text-align: left;
    }
    
    .assistance-info {
        text-align: left;
    }
    
    /* Resources Section */
    .section-title {
        font-size: 28px;
        text-align: left;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .resource-card {
        text-align: center;
        align-items: flex-start;
        max-width: 100%;
    }
    
    /* Keep icon centered on mobile */
    .resource-card-icon {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Left align title and description */
    .resource-card-title {
        text-align: center !important;
        width: 100%;
    }
    
    .resource-card-description {
        text-align: left;
        width: 100%;
    }
    
    /* Full width buttons */
    .resource-card-actions {
        width: 100%;
    }
    
    .resource-button,
    .resource-button-secondary {
        width: 100%;
    }
    
    /* Info Section - Left align */
    .info-two-column-wrapper {
        grid-template-columns: 1fr;
    }
    
    .info-column-left {
        align-items: flex-start;
        text-align: left;
    }
    
    /* Center icon on mobile */
    .info-icon {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }
    
    .info-title {
        font-size: 28px;
        text-align: left;
    }
    
    .info-content {
        text-align: left;
    }
    
    /* Address Section (if exists) */
    .address-wrapper {
        text-align: left;
    }
    
    .address-icon {
        margin: 0 auto 24px auto;
    }
    
    .address-title {
        font-size: 28px;
        text-align: left;
    }
    
    .address-details {
        font-size: 16px;
        text-align: left;
    }
}

/* Small Mobile - Additional refinements */
@media (max-width: 480px) {
    .support-hero-title {
        font-size: 28px;
    }
    
    .assistance-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .assistance-icon svg,
    .assistance-icon-image {
        width: 130px;
        height: 130px;
    }
    
    .resource-card {
        padding: 24px;
    }
    
    .resource-card-icon {
        width: 58px;
        height: 58px;
    }
    
    .resource-card-icon svg {
        width: 44px;
        height: 44px;
    }
    
    /* Ensure consistent left alignment on small mobile */
    .resource-card-title,
    .resource-card-description,
    .info-title,
    .info-content,
    .assistance-title,
    .assistance-info,
    .assistance-description,
    .address-title,
    .address-details {
        text-align: left;
    }
    
    .address-icon {
        width: 72px;
        height: 72px;
    }
    
    .address-icon svg {
        width: 44px;
        height: 44px;
    }
    
    .info-icon {
        width: 72px;
        height: 72px;
    }
    
    .info-icon svg {
        width: 44px;
        height: 44px;
    }
    
    .info-title {
        font-size: 24px;
    }
    
    .info-content {
        font-size: 16px;
    }
}