/* ===================================
   GREEN CARD SERVICES PAGE STYLES
   =================================== */

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

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

.gc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    z-index: 0;
}

.gc-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(217, 180, 95, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(217, 180, 95, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

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

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

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--spacing-md);
    font-size: 0.8rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: var(--primary-gold);
    font-weight: 500;
}

.gc-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 180, 95, 0.15);
    color: var(--primary-gold);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(217, 180, 95, 0.3);
}

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

.gc-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.gc-hero-title span {
    color: var(--primary-gold);
}

.gc-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.gc-hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.gc-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.gc-hero-cta.primary {
    background: var(--gold-gradient);
    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) {
    .gc-hero {
        margin-top: 100px;
    }

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

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

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

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

    .breadcrumb {
        justify-content: flex-start;
        font-size: 0.85rem;
    }

    .gc-hero-tag {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .gc-hero-tag svg {
        width: 18px;
        height: 18px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .gc-hero-title {
        font-size: 3.75rem;
    }

    .gc-hero-subtitle {
        font-size: 1.25rem;
        max-width: 550px;
    }
}

/* ===================================
   INTRO SECTION - MOBILE FIRST
   =================================== */

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

.gc-intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 180, 95, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.gc-intro-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.gc-intro-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.gc-intro-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.gc-intro-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #D9B45F, #c9a44f);
    border-radius: 2px;
}

.gc-intro-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
    margin-top: 24px;
}

.gc-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gc-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.gc-benefits-list li:last-child {
    border-bottom: none;
}

.gc-benefits-list li:hover {
    padding-left: 8px;
    background: rgba(217, 180, 95, 0.03);
    margin: 0 -8px;
    padding-right: 8px;
    border-radius: 8px;
}

.gc-benefits-list li svg {
    width: 22px;
    height: 22px;
    color: #D9B45F;
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(217, 180, 95, 0.1);
    padding: 4px;
    border-radius: 50%;
    box-sizing: content-box;
}

.gc-intro-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    width: 100%;
    max-height: 250px;
}

.gc-intro-image:hover {
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.12),
        0 10px 25px rgba(0, 0, 0, 0.08);
}

.gc-intro-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(217, 180, 95, 0.2);
    border-radius: 16px;
    z-index: 2;
    pointer-events: none;
}

.gc-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.gc-intro-image:hover img {
    transform: scale(1.03);
}

.gc-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Intro Section Tablet+ */
@media (min-width: 768px) {
    .gc-intro-section {
        padding: 80px 0;
    }

    .gc-intro-section::before {
        width: 500px;
        height: 500px;
    }

    .gc-intro-grid {
        flex-direction: row;
        gap: 50px;
        align-items: center;
    }

    .gc-intro-content {
        flex: 1;
        text-align: left;
    }

    .gc-intro-title {
        font-size: 2.25rem;
    }

    .gc-intro-title::after {
        left: 0;
        transform: none;
    }

    .gc-intro-text {
        font-size: 1rem;
    }

    .gc-intro-image {
        flex: 1;
        border-radius: 20px;
        max-height: none;
    }

    .gc-intro-image img {
        height: auto;
    }

    .gc-intro-image::before {
        border-radius: 20px;
    }
}

/* Intro Section Desktop+ */
@media (min-width: 1024px) {
    .gc-intro-section {
        padding: 100px 0;
    }

    .gc-intro-section::before {
        width: 600px;
        height: 600px;
    }

    .gc-intro-grid {
        gap: 80px;
    }

    .gc-intro-title {
        font-size: 2.75rem;
        line-height: 1.15;
    }

    .gc-intro-text {
        font-size: 1.1rem;
        line-height: 1.85;
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .gc-intro-image {
        transform: perspective(1000px) rotateY(-2deg);
        box-shadow:
            0 25px 80px rgba(0, 0, 0, 0.12),
            0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .gc-intro-image:hover {
        transform: perspective(1000px) rotateY(0deg);
    }
}

/* ===================================
   GREEN CARD TYPES SECTION - MOBILE FIRST
   =================================== */

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

.gc-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);
}

.gc-section-desc {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    max-width: 650px;
    margin: 15px auto 40px;
    line-height: 1.7;
}

/* Category Block - Mobile First */
.gc-category-block {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gc-category-block::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;
}

.gc-category-block:hover {
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.04),
        0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.gc-category-block:hover::before {
    opacity: 1;
}

.gc-category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.gc-category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.15) 0%, rgba(217, 180, 95, 0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 20px rgba(217, 180, 95, 0.15);
}

.gc-category-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    border: 1px solid rgba(217, 180, 95, 0.2);
}

.gc-category-icon svg {
    width: 28px;
    height: 28px;
    color: #D9B45F;
}

.gc-category-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.gc-category-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Subcategory Grid (Family-Based) - Mobile First */
.gc-subcategory-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

    .gc-section-desc {
        font-size: 1.05rem;
        margin: 15px auto 50px;
    }

    .gc-category-block {
        padding: 36px;
        border-radius: 20px;
        margin-bottom: 28px;
    }

    .gc-category-header {
        flex-direction: row;
        text-align: left;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 22px;
    }

    .gc-category-icon {
        width: 68px;
        height: 68px;
    }

    .gc-category-icon svg {
        width: 30px;
        height: 30px;
    }

    .gc-category-info h3 {
        font-size: 1.4rem;
    }

    .gc-category-info p {
        font-size: 0.95rem;
    }

    .gc-subcategory-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Types Section Desktop+ */
@media (min-width: 1024px) {
    .gc-types-section {
        padding: 100px 0;
    }

    .gc-section-desc {
        font-size: 1.15rem;
        margin: 15px auto 60px;
    }

    .gc-category-block {
        padding: 45px;
        border-radius: 24px;
        margin-bottom: 30px;
    }

    .gc-category-header {
        gap: 24px;
        margin-bottom: 35px;
        padding-bottom: 25px;
    }

    .gc-category-icon {
        width: 72px;
        height: 72px;
        border-radius: 18px;
    }

    .gc-category-icon::after {
        border-radius: 20px;
    }

    .gc-category-icon svg {
        width: 32px;
        height: 32px;
    }

    .gc-category-info h3 {
        font-size: 1.6rem;
    }

    .gc-category-info p {
        font-size: 1rem;
    }
}

/* Subcategory Card - Mobile First */
.gc-subcategory-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 14px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.gc-subcategory-card:hover {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-color: rgba(217, 180, 95, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.gc-subcategory-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.gc-subcategory-card > p {
    font-size: 0.85rem;
    color: #D9B45F;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gc-subcategory-card > p::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #D9B45F;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.gc-subcategory-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.gc-subcategory-card ul li {
    position: relative;
    padding: 8px 0 8px 22px;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.gc-subcategory-card ul li:last-child {
    border-bottom: none;
}

.gc-subcategory-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #D9B45F, #c9a44f);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(217, 180, 95, 0.3);
}

.processing-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.12) 0%, rgba(217, 180, 95, 0.08) 100%);
    color: #b8953d;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(217, 180, 95, 0.2);
}

.processing-time::before {
    content: '⏱';
    font-size: 0.85rem;
}

/* Subcategory Card Tablet+ */
@media (min-width: 768px) {
    .gc-subcategory-card {
        padding: 28px;
        border-radius: 16px;
    }

    .gc-subcategory-card h4 {
        font-size: 1.15rem;
    }

    .gc-subcategory-card > p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .gc-subcategory-card ul li {
        padding: 10px 0 10px 24px;
        font-size: 0.95rem;
    }

    .gc-subcategory-card ul li::before {
        top: 16px;
        width: 8px;
        height: 8px;
    }

    .processing-time {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Subcategory Card Desktop+ */
@media (min-width: 1024px) {
    .gc-subcategory-card {
        padding: 32px;
    }

    .gc-subcategory-card h4 {
        font-size: 1.2rem;
    }

    .gc-subcategory-card ul {
        margin-bottom: 20px;
    }
}

/* Employment-Based Grid - Enhanced Mobile First */
.gc-eb-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gc-eb-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.gc-eb-card:hover {
    border-color: rgba(217, 180, 95, 0.3);
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(217, 180, 95, 0.1);
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.gc-eb-card-highlight {
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.08) 0%, rgba(217, 180, 95, 0.04) 100%);
    border-color: rgba(217, 180, 95, 0.2);
    position: relative;
}

.gc-eb-card-highlight::after {
    content: '★ Featured';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #D9B45F;
    background: rgba(217, 180, 95, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gc-eb-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D9B45F 0%, #c9a44f 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(217, 180, 95, 0.35);
    width: fit-content;
}

.gc-eb-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.gc-eb-card > p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

.gc-eb-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
    flex-grow: 1;
}

.gc-eb-card ul li {
    position: relative;
    padding: 8px 0 8px 20px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.gc-eb-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #D9B45F, #c9a44f);
    border-radius: 50%;
}

.gc-eb-card ul li strong {
    color: #1a1a2e;
    font-weight: 600;
}

.gc-eb-highlight {
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.12) 0%, rgba(217, 180, 95, 0.06) 100%);
    color: #b8953d;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    border: 1px solid rgba(217, 180, 95, 0.15);
}

/* EB Grid Tablet+ */
@media (min-width: 768px) {
    .gc-eb-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gc-eb-card-highlight {
        grid-column: span 2;
    }

    .gc-eb-card {
        padding: 32px;
    }
}

/* EB Grid Desktop+ */
@media (min-width: 1024px) {
    .gc-eb-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gc-eb-card-highlight {
        grid-column: span 2;
    }
}

/* ===================================
   DIVERSITY VISA CONTENT - MOBILE FIRST
   =================================== */

.gc-dv-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gc-dv-info {
    position: relative;
}

.gc-dv-info h4,
.gc-dv-timeline h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.gc-dv-info h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #D9B45F, transparent);
    border-radius: 2px;
}

.gc-dv-info p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.gc-dv-requirements {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f1f3 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.gc-dv-requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #D9B45F, #c9a44f);
}

.gc-dv-requirements h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gc-dv-requirements h5::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #D9B45F, #c9a44f);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}

.gc-dv-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gc-dv-requirements ul li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.gc-dv-requirements ul li:last-child {
    border-bottom: none;
}

.gc-dv-requirements ul li:hover {
    color: #333;
    padding-left: 32px;
}

.gc-dv-requirements ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #D9B45F, #c9a44f);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(217, 180, 95, 0.3);
}

.gc-dv-timeline {
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.08) 0%, rgba(217, 180, 95, 0.15) 100%);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(217, 180, 95, 0.2);
    position: relative;
}

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

.gc-dv-timeline h4 {
    margin-bottom: 20px;
    padding-left: 0;
    color: #1a1a2e;
}

.gc-dv-timeline h4::before {
    content: '📅';
    margin-right: 8px;
}

.gc-dv-timeline h4::after {
    display: none;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    padding: 12px 0 12px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 18px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid #D9B45F;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    background: #D9B45F;
    transform: scale(1.2);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: #D9B45F;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-event {
    font-size: 0.95rem;
    color: #1a1a2e;
    font-weight: 600;
}

/* DV Content Tablet+ */
@media (min-width: 768px) {
    .gc-dv-content {
        flex-direction: row;
        gap: 30px;
    }

    .gc-dv-info {
        flex: 1.5;
    }

    .gc-dv-timeline {
        flex: 1;
        min-width: 280px;
    }

    .gc-dv-info h4,
    .gc-dv-timeline h4 {
        font-size: 1.15rem;
    }

    .gc-dv-info p {
        font-size: 1rem;
    }

    .gc-dv-requirements {
        padding: 28px;
    }

    .gc-dv-timeline {
        padding: 28px;
    }

    .gc-dv-timeline::before {
        left: 28px;
    }
}

/* DV Content Desktop+ */
@media (min-width: 1024px) {
    .gc-dv-content {
        gap: 40px;
    }

    .gc-dv-requirements {
        padding: 32px;
    }

    .gc-dv-requirements ul li {
        font-size: 0.95rem;
    }

    .gc-dv-timeline {
        padding: 32px;
    }
}

/* ===================================
   PROCESS SECTION - MOBILE FIRST
   =================================== */

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

.gc-process-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);
}

.gc-process-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 180, 95, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gc-process-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gc-process-step {
    text-align: center;
    position: relative;
    padding: 24px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 10px 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);
}

.gc-process-step:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 20px rgba(0, 0, 0, 0.06),
        0 20px 50px rgba(217, 180, 95, 0.12);
    border-color: rgba(217, 180, 95, 0.2);
}

/* Hide connector arrows on mobile */
.gc-process-step::after {
    display: none;
}

.gc-step-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(217, 180, 95, 0.1);
    z-index: 0;
    line-height: 1;
}

.gc-step-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #D9B45F 0%, #c9a44f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow:
        0 8px 20px rgba(217, 180, 95, 0.35),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gc-process-step:hover .gc-step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 30px rgba(217, 180, 95, 0.45),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.gc-step-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(217, 180, 95, 0.3);
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gc-step-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.gc-process-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.gc-process-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

/* Process Grid Tablet (2 columns) */
@media (min-width: 600px) {
    .gc-process-section {
        padding: 80px 0;
    }

    .gc-process-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gc-process-step {
        padding: 28px 24px;
    }

    .gc-process-step:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Process Grid Tablet+ (3 columns) */
@media (min-width: 768px) {
    .gc-process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .gc-process-step:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .gc-process-step:nth-child(4),
    .gc-process-step:nth-child(5) {
        grid-column: span 1;
    }

    .gc-step-number {
        font-size: 3rem;
    }

    .gc-step-icon {
        width: 70px;
        height: 70px;
    }

    .gc-step-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* Process Grid Desktop (5 columns) */
@media (min-width: 1024px) {
    .gc-process-section {
        padding: 100px 0;
    }

    .gc-process-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }

    .gc-process-step {
        padding: 32px 16px;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .gc-process-step:hover {
        transform: translateY(-8px);
        box-shadow: none;
    }

    /* Show connector arrows on desktop */
    .gc-process-step::after {
        content: '';
        display: block;
        position: absolute;
        top: 52px;
        right: -12%;
        width: 24%;
        height: 2px;
        background: linear-gradient(90deg, #D9B45F 0%, rgba(217, 180, 95, 0.2) 100%);
    }

    .gc-process-step:last-child::after {
        display: none;
    }

    .gc-step-number {
        top: 8px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        font-size: 3.5rem;
    }

    .gc-step-icon {
        width: 76px;
        height: 76px;
        margin-bottom: 20px;
    }

    .gc-process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .gc-process-step p {
        font-size: 0.9rem;
        max-width: none;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .gc-process-grid {
        gap: 24px;
    }

    .gc-step-icon {
        width: 80px;
        height: 80px;
    }

    .gc-step-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* ===================================
   SMALL MOBILE ADJUSTMENTS (480px and below)
   =================================== */

@media (max-width: 480px) {
    .gc-hero-title {
        font-size: 1.6rem;
    }

    .gc-hero-subtitle {
        font-size: 0.9rem;
    }

    .gc-intro-title {
        font-size: 1.5rem;
    }

    .gc-eb-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .gc-eb-card {
        padding: 24px;
    }

    .gc-eb-card h4 {
        font-size: 1.05rem;
    }

    .gc-process-step {
        padding: 20px 16px;
    }

    .gc-step-icon {
        width: 56px;
        height: 56px;
    }

    .gc-step-icon svg {
        width: 24px;
        height: 24px;
    }

    .gc-step-number {
        font-size: 2rem;
    }
}
