/* ============================================
   WORK PERMITS & EAD PAGE STYLES
   ============================================ */

/* ===================================
   HERO SECTION - MOBILE FIRST
   =================================== */

.wp-hero {
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.wp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
}

.wp-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 70%, rgba(217, 180, 95, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(217, 180, 95, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Wrapper - Mobile First (stacked layout) */
.wp-hero-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column-reverse;
}

/* Hero Content - Mobile First */
.wp-hero-content {
    padding: 40px 20px 60px;
    text-align: center;
}

/* Hero Image - Mobile First */
.wp-hero-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.wp-hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #1a1a2e 0%, transparent 100%);
    pointer-events: none;
}

.wp-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wp-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 180, 95, 0.15);
    color: #D9B45F;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.wp-hero-tag svg {
    width: 16px;
    height: 16px;
}

.wp-hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.wp-hero-title span {
    color: #D9B45F;
}

.wp-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.wp-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #D9B45F;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wp-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hero CTA Buttons - Mobile First */
.gc-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.gc-hero-cta.primary {
    background: linear-gradient(135deg, #D9B45F 0%, #c9a44f 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(217, 180, 95, 0.3);
}

.gc-hero-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 180, 95, 0.4);
}

.gc-hero-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gc-hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(217, 180, 95, 0.5);
}

.gc-hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.gc-hero-cta:hover svg {
    transform: translateX(4px);
}

.gc-hero-cta.secondary:hover svg {
    transform: translateY(4px);
}

/* ===================================
   HERO RESPONSIVE - TABLET (768px+)
   =================================== */
@media (min-width: 768px) {
    .wp-hero {
        margin-top: 100px;
    }

    .wp-hero-wrapper {
        flex-direction: row;
        min-height: 500px;
    }

    .wp-hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 40px;
        text-align: left;
    }

    .wp-hero-image {
        flex: 1;
        height: auto;
        min-height: 500px;
    }

    .wp-hero-image::after {
        width: 120px;
        height: 100%;
        top: 0;
        left: 0;
        bottom: auto;
        background: linear-gradient(to right, #1a1a2e 0%, transparent 100%);
    }

    .wp-hero-tag {
        font-size: 0.8rem;
    }

    .wp-hero-title {
        font-size: 2.75rem;
    }

    .wp-hero-subtitle {
        font-size: 1.1rem;
        max-width: 500px;
    }

    .wp-hero-stats {
        flex-direction: row;
        gap: 40px;
    }

    .hero-stat-number {
        font-size: 2.5rem;
    }

    .hero-stat-label {
        font-size: 0.85rem;
    }

    .wp-hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gc-hero-cta {
        width: auto;
        padding: 14px 28px;
    }
}

/* ===================================
   HERO RESPONSIVE - DESKTOP (1024px+)
   =================================== */
@media (min-width: 1024px) {
    .wp-hero {
        margin-top: 110px;
    }

    .wp-hero-wrapper {
        min-height: 550px;
    }

    .wp-hero-content {
        padding: 80px 60px;
        max-width: 600px;
    }

    .wp-hero-image {
        flex: 1.2;
    }

    .wp-hero-title {
        font-size: 3.25rem;
    }

    .wp-hero-subtitle {
        font-size: 1.15rem;
    }

    .gc-hero-cta {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* ===================================
   HERO RESPONSIVE - LARGE DESKTOP (1200px+)
   =================================== */
@media (min-width: 1200px) {
    .wp-hero-wrapper {
        min-height: 600px;
    }

    .wp-hero-content {
        padding: 100px 80px;
    }

    .wp-hero-title {
        font-size: 3.5rem;
    }

    .wp-hero-subtitle {
        font-size: 1.2rem;
        max-width: 550px;
    }
}

/* ===================================
   WORK VISA TYPES SECTION - MOBILE FIRST
   =================================== */

.wp-types-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.wp-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 180, 95, 0.3), transparent);
}

.wp-types-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.wp-type-card {
    background: #fff;
    padding: 26px 22px;
    border-radius: 16px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wp-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #D9B45F, #c9a44f);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wp-type-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.08),
        0 6px 12px rgba(217, 180, 95, 0.1);
    border-color: rgba(217, 180, 95, 0.25);
}

.wp-type-card:hover::before {
    opacity: 1;
}

.wp-type-card.featured {
    border: 2px solid rgba(217, 180, 95, 0.4);
    background: linear-gradient(135deg, #fff 0%, rgba(217, 180, 95, 0.05) 100%);
}

.wp-type-card.featured::before {
    opacity: 1;
}

.wp-type-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.wp-type-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.18) 0%, rgba(217, 180, 95, 0.08) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(217, 180, 95, 0.15);
    transition: all 0.3s ease;
}

.wp-type-card:hover .wp-type-icon {
    transform: scale(1.05) rotate(3deg);
}

.wp-type-icon svg {
    width: 26px;
    height: 26px;
    stroke: #D9B45F;
}

.wp-type-badge {
    display: inline-block;
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.15) 0%, rgba(217, 180, 95, 0.08) 100%);
    color: #D9B45F;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(217, 180, 95, 0.2);
}

.wp-type-badge.transfer {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.2);
}

.wp-type-badge.extraordinary {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.08) 100%);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.2);
}

.wp-type-badge.ead {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

.wp-type-badge.nafta {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.2);
}

.wp-type-badge.treaty {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.2);
}

.wp-type-card h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 700;
}

.wp-type-card > p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
    margin-bottom: 16px;
}

.wp-type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.wp-type-features li {
    font-size: 0.82rem;
    color: #555;
    padding: 7px 0;
    padding-left: 18px;
    position: relative;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.wp-type-features li:hover {
    padding-left: 22px;
    color: #333;
}

.wp-type-features li:last-child {
    border-bottom: none;
}

.wp-type-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #D9B45F, #c9a44f);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(217, 180, 95, 0.3);
}

.wp-type-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Types Grid Tablet (2 columns) */
@media (min-width: 600px) {
    .wp-types-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .wp-type-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

/* Types Section Tablet+ */
@media (min-width: 768px) {
    .wp-types-section {
        padding: 80px 0;
    }

    .wp-types-grid {
        margin-top: 50px;
    }

    .wp-type-card {
        padding: 30px 26px;
    }

    .wp-type-icon {
        width: 58px;
        height: 58px;
    }

    .wp-type-icon svg {
        width: 28px;
        height: 28px;
    }

    .wp-type-card h3 {
        font-size: 1.15rem;
    }

    .wp-type-card > p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .wp-type-features li {
        font-size: 0.85rem;
        padding: 8px 0 8px 20px;
    }
}

/* Types Grid Desktop (3 columns) */
@media (min-width: 1024px) {
    .wp-types-section {
        padding: 100px 0;
    }

    .wp-types-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .wp-type-card {
        padding: 35px 30px;
    }

    .wp-type-icon {
        width: 60px;
        height: 60px;
    }

    .wp-type-card h3 {
        font-size: 1.2rem;
    }
}

/* ===================================
   H-1B PROCESS SECTION - MOBILE FIRST
   =================================== */

.wp-h1b-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    position: relative;
}

.wp-h1b-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 180, 95, 0.3), transparent);
}

.wp-h1b-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.timeline-item {
    position: relative;
    padding-left: 28px;
    padding-bottom: 20px;
    border-left: 3px solid linear-gradient(180deg, #D9B45F, rgba(217, 180, 95, 0.3));
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #D9B45F 0%, rgba(217, 180, 95, 0.2) 100%);
    border-radius: 2px;
}

.timeline-marker {
    position: absolute;
    left: -14px;
    top: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #D9B45F, #c9a44f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(217, 180, 95, 0.35);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
}

.timeline-marker span {
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.timeline-content {
    padding-top: 0;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}

.timeline-content h3 {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.timeline-note {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #D9B45F;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.12) 0%, rgba(217, 180, 95, 0.06) 100%);
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid rgba(217, 180, 95, 0.15);
}

/* H-1B Fees Grid - Mobile First */
.wp-h1b-fees {
    margin-top: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f1f3 100%);
    padding: 28px 22px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.wp-h1b-fees h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.fees-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.fee-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.fee-item.highlight {
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.12) 0%, rgba(217, 180, 95, 0.06) 100%);
    border-color: rgba(217, 180, 95, 0.25);
}

.fee-label {
    font-size: 0.85rem;
    color: #555;
}

.fee-amount {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
}

.fee-item.highlight .fee-amount {
    color: #D9B45F;
}

/* H-1B Section Tablet */
@media (min-width: 600px) {
    .wp-h1b-timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .fees-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* H-1B Section Tablet+ */
@media (min-width: 768px) {
    .wp-h1b-section {
        padding: 80px 0;
    }

    .wp-h1b-timeline {
        margin-top: 50px;
    }

    .timeline-content {
        padding: 24px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .wp-h1b-fees {
        margin-top: 50px;
        padding: 36px 32px;
    }

    .wp-h1b-fees h3 {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    .fee-item {
        padding: 18px 20px;
    }

    .fee-label {
        font-size: 0.9rem;
    }

    .fee-amount {
        font-size: 1rem;
    }
}

/* H-1B Section Desktop */
@media (min-width: 1024px) {
    .wp-h1b-section {
        padding: 100px 0;
    }

    .wp-h1b-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .wp-h1b-fees {
        margin-top: 60px;
        padding: 40px;
    }

    .wp-h1b-fees h3 {
        font-size: 1.4rem;
    }

    .fees-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ===================================
   EAD SECTION - MOBILE FIRST
   =================================== */

.wp-ead-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #f0f1f3 100%);
    position: relative;
}

.wp-ead-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 180, 95, 0.3), transparent);
}

.wp-ead-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
}

.wp-ead-content h2 {
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: center;
}

.wp-ead-content > p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 28px;
    line-height: 1.7;
    text-align: center;
}

.ead-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ead-category {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.ead-category:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 16px 40px rgba(0, 0, 0, 0.06);
}

.ead-category h4 {
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(217, 180, 95, 0.4);
    font-weight: 700;
}

.ead-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ead-category li {
    font-size: 0.82rem;
    color: #555;
    padding: 7px 0;
    padding-left: 18px;
    position: relative;
    transition: all 0.2s ease;
}

.ead-category li:hover {
    padding-left: 22px;
    color: #333;
}

.ead-category li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #D9B45F, #c9a44f);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(217, 180, 95, 0.3);
}

/* EAD Info Card - Mobile First */
.ead-timeline-card {
    background: #fff;
    padding: 26px;
    border-radius: 18px;
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.03),
        0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ead-timeline-card h3 {
    font-size: 1.15rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.ead-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.ead-info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.ead-info-item .info-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.15) 0%, rgba(217, 180, 95, 0.08) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(217, 180, 95, 0.15);
}

.ead-info-item .info-icon svg {
    width: 20px;
    height: 20px;
    stroke: #D9B45F;
}

.ead-info-item .info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ead-info-item .info-text strong {
    font-size: 0.9rem;
    color: #1a1a2e;
    font-weight: 700;
}

.ead-info-item .info-text span {
    font-size: 0.82rem;
    color: #666;
}

.ead-alert {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.04) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
}

.ead-alert svg {
    width: 22px;
    height: 22px;
    stroke: #ef4444;
    flex-shrink: 0;
}

.ead-alert strong {
    display: block;
    font-size: 0.88rem;
    color: #ef4444;
    margin-bottom: 4px;
    font-weight: 700;
}

.ead-alert p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

/* EAD Section Tablet (2 columns) */
@media (min-width: 600px) {
    .ead-categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ead-info-item {
        flex-direction: row;
        gap: 15px;
    }

    .ead-alert {
        flex-direction: row;
        gap: 15px;
    }
}

/* EAD Section Tablet+ */
@media (min-width: 768px) {
    .wp-ead-section {
        padding: 80px 0;
    }

    .wp-ead-content h2 {
        font-size: 1.9rem;
        text-align: left;
    }

    .wp-ead-content > p {
        font-size: 1.05rem;
        text-align: left;
        margin-bottom: 32px;
    }

    .ead-category {
        padding: 25px;
    }

    .ead-category h4 {
        font-size: 1rem;
    }

    .ead-category li {
        font-size: 0.85rem;
        padding: 8px 0 8px 18px;
    }

    .ead-timeline-card {
        padding: 32px;
    }

    .ead-timeline-card h3 {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }

    .ead-info-list {
        gap: 18px;
        margin-bottom: 24px;
    }

    .ead-info-item .info-icon {
        width: 45px;
        height: 45px;
    }

    .ead-info-item .info-icon svg {
        width: 22px;
        height: 22px;
    }

    .ead-info-item .info-text strong {
        font-size: 0.95rem;
    }

    .ead-info-item .info-text span {
        font-size: 0.85rem;
    }

    .ead-alert {
        padding: 20px;
    }

    .ead-alert strong {
        font-size: 0.9rem;
    }

    .ead-alert p {
        font-size: 0.85rem;
    }
}

/* EAD Section Desktop */
@media (min-width: 1024px) {
    .wp-ead-section {
        padding: 100px 0;
    }

    .wp-ead-grid {
        flex-direction: row;
        gap: 50px;
        align-items: flex-start;
    }

    .wp-ead-content {
        flex: 1;
    }

    .ead-timeline-card {
        flex: 1;
        padding: 35px;
    }

    .wp-ead-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .wp-ead-content > p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .ead-timeline-card h3 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .ead-info-list {
        gap: 20px;
        margin-bottom: 25px;
    }
}

/* ============================================
   TEMPORARY WORKERS SECTION - Mobile First
   ============================================ */
.wp-temp-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.wp-temp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(217, 180, 95, 0.3) 50%, transparent 100%);
}

.wp-temp-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.wp-temp-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.wp-temp-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.wp-temp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #D9B45F 0%, #c9a44f 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wp-temp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1),
                0 10px 25px rgba(217, 180, 95, 0.08);
    border-color: rgba(217, 180, 95, 0.3);
}

.wp-temp-card:hover::before {
    opacity: 1;
}

.wp-temp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.wp-temp-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.2) 0%, rgba(217, 180, 95, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wp-temp-card:hover .wp-temp-icon {
    background: linear-gradient(135deg, #D9B45F 0%, #c9a44f 100%);
    transform: rotate(-5deg);
}

.wp-temp-icon svg {
    width: 22px;
    height: 22px;
    stroke: #D9B45F;
    transition: stroke 0.3s ease;
}

.wp-temp-card:hover .wp-temp-icon svg {
    stroke: #fff;
}

.wp-temp-header h3 {
    font-size: 1.1rem;
    color: #2A2A2A;
    font-weight: 600;
    line-height: 1.3;
}

.wp-temp-card > p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
}

.wp-temp-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    padding: 10px 15px;
}

.wp-temp-card li {
    font-size: 0.85rem;
    color: #555;
    padding: 10px 0;
    padding-left: 22px;
    position: relative;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.wp-temp-card li:last-child {
    border-bottom: none;
}

.wp-temp-card li:hover {
    padding-left: 26px;
    color: #333;
}

.wp-temp-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #D9B45F 0%, #c9a44f 100%);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.wp-temp-card li:hover::before {
    transform: translateY(-50%) scale(1.2);
}

.wp-temp-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.temp-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #D9B45F;
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.15) 0%, rgba(217, 180, 95, 0.08) 100%);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(217, 180, 95, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.temp-fee {
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
}

.temp-fee strong {
    color: #D9B45F;
}

/* Temporary Workers Tablet */
@media (min-width: 600px) {
    .wp-temp-section {
        padding: 70px 0;
    }

    .wp-temp-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .wp-temp-card {
        padding: 28px 25px;
    }

    .wp-temp-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Temporary Workers Desktop */
@media (min-width: 1024px) {
    .wp-temp-section {
        padding: 100px 0;
    }

    .wp-temp-grid {
        gap: 30px;
        margin-top: 50px;
    }

    .wp-temp-card {
        padding: 35px 30px;
    }

    .wp-temp-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .wp-temp-icon svg {
        width: 24px;
        height: 24px;
    }

    .wp-temp-header h3 {
        font-size: 1.2rem;
    }

    .wp-temp-card > p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .wp-temp-card li {
        font-size: 0.9rem;
    }
}

/* Temporary Workers Large Desktop */
@media (min-width: 1200px) {
    .wp-temp-section {
        padding: 120px 0;
    }

    .wp-temp-card {
        padding: 40px 35px;
    }

    .wp-temp-header h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   SERVICES SECTION - Mobile First
   ============================================ */
.wp-services-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.wp-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(217, 180, 95, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(217, 180, 95, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.wp-services-section .section-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.wp-services-section .section-tag {
    color: #D9B45F;
    background: rgba(217, 180, 95, 0.15);
    border-color: rgba(217, 180, 95, 0.3);
}

.wp-services-section .section-title {
    color: #fff;
}

.wp-services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.wp-services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.wp-service-card {
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.wp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D9B45F 0%, #c9a44f 50%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.wp-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(217, 180, 95, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wp-service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3),
                0 15px 30px rgba(217, 180, 95, 0.1);
    border-color: rgba(217, 180, 95, 0.3);
}

.wp-service-card:hover::before {
    transform: scaleX(1);
}

.wp-service-card:hover::after {
    opacity: 1;
}

.wp-service-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(217, 180, 95, 0.12);
    line-height: 1;
    transition: all 0.3s ease;
}

.wp-service-card:hover .wp-service-number {
    color: rgba(217, 180, 95, 0.25);
    transform: scale(1.1);
}

.wp-service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.2) 0%, rgba(217, 180, 95, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(217, 180, 95, 0.15);
}

.wp-service-card:hover .wp-service-icon {
    background: linear-gradient(135deg, #D9B45F 0%, #c9a44f 100%);
    transform: rotate(-5deg) scale(1.05);
    border-color: transparent;
}

.wp-service-icon svg {
    width: 24px;
    height: 24px;
    stroke: #D9B45F;
    transition: stroke 0.3s ease;
}

.wp-service-card:hover .wp-service-icon svg {
    stroke: #1a1a2e;
}

.wp-service-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.wp-service-card:hover h3 {
    color: #D9B45F;
}

.wp-service-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* Services Tablet */
@media (min-width: 600px) {
    .wp-services-section {
        padding: 70px 0;
    }

    .wp-services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .wp-service-card {
        padding: 30px 25px;
    }

    .wp-service-number {
        font-size: 2.2rem;
    }
}

/* Services Desktop */
@media (min-width: 1024px) {
    .wp-services-section {
        padding: 100px 0;
    }

    .wp-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

    .wp-service-card {
        padding: 35px 30px;
    }

    .wp-service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
    }

    .wp-service-icon svg {
        width: 28px;
        height: 28px;
    }

    .wp-service-number {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .wp-service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .wp-service-card p {
        font-size: 0.95rem;
    }
}

/* Services Large Desktop */
@media (min-width: 1200px) {
    .wp-services-section {
        padding: 120px 0;
    }

    .wp-services-grid {
        gap: 35px;
    }

    .wp-service-card {
        padding: 40px 35px;
    }

    .wp-service-number {
        font-size: 3rem;
    }

    .wp-service-card h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   SMALL MOBILE ADJUSTMENTS (max-width for edge cases)
   ============================================ */

@media (max-width: 380px) {
    /* Extra small device adjustments */
    .wp-type-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .fee-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .ead-info-item {
        flex-direction: column;
        gap: 8px;
    }

    .ead-alert {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
