/* ============================================
   U.S. VISA SERVICES PAGE STYLES
   ============================================ */

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

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

.visa-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;
}

.visa-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) */
.visa-hero-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column-reverse;
}

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

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

.visa-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;
}

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

.visa-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;
}

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

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

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

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

.visa-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.visa-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;
}

.visa-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;
}

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

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

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

.visa-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;
}

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

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

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

.visa-type-badge.student {
    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);
}

.visa-type-badge.fiance {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(236, 72, 153, 0.08) 100%);
    color: #ec4899;
    border-color: rgba(236, 72, 153, 0.2);
}

.visa-type-badge.exchange {
    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);
}

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

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

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

.visa-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;
}

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

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

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

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

.info-item {
    font-size: 0.78rem;
    color: #666;
}

.info-item strong {
    color: #1a1a2e;
    font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.visa-process-step {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.visa-process-step:hover {
    background: #fff;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.06),
        0 4px 10px rgba(217, 180, 95, 0.08);
    transform: translateY(-4px);
}

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

.visa-process-step.final {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: none;
}

.visa-process-step.final h3,
.visa-process-step.final p {
    color: #fff;
}

.visa-process-step.final .step-note {
    color: rgba(255, 255, 255, 0.7);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.18) 0%, rgba(217, 180, 95, 0.1) 100%);
    color: #D9B45F;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 4px 10px rgba(217, 180, 95, 0.2);
}

.visa-process-step.final .step-number {
    background: linear-gradient(135deg, #D9B45F, #c9a44f);
    color: #fff;
    box-shadow: 0 4px 12px rgba(217, 180, 95, 0.4);
}

.visa-process-step.final .step-number svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
}

.step-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(217, 180, 95, 0.12) 0%, rgba(217, 180, 95, 0.06) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.visa-process-step:hover .step-icon {
    transform: scale(1.08);
}

.step-icon svg {
    width: 22px;
    height: 22px;
    stroke: #D9B45F;
}

.visa-process-step.final .step-icon {
    background: rgba(217, 180, 95, 0.2);
}

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

.visa-process-step p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.step-note {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #D9B45F;
    font-weight: 700;
}

.step-note::before {
    content: '⏱';
    font-size: 0.7rem;
}

/* Process Grid Tablet (3 columns) */
@media (min-width: 600px) {
    .visa-process-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

/* Process Section Tablet+ */
@media (min-width: 768px) {
    .visa-process-section {
        padding: 80px 0;
    }

    .visa-process-grid {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 50px;
    }

    .visa-process-step {
        padding: 28px 22px;
    }

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

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }

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

    .visa-process-step h3 {
        font-size: 1rem;
    }

    .visa-process-step p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
}

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

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

    .visa-process-step {
        padding: 30px 25px;
    }

    /* Show arrows on desktop */
    .visa-process-step::after {
        content: '';
        display: block;
        position: absolute;
        right: -12px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid #D9B45F;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

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

/* ===================================
   VISA TIPS SECTION - MOBILE FIRST
   =================================== */

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

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

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

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

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

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tip-item {
    display: flex;
    gap: 14px;
    background: #fff;
    padding: 18px;
    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;
}

.tip-item:hover {
    transform: translateX(4px);
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.04),
        0 15px 35px rgba(0, 0, 0, 0.06);
}

.tip-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tip-icon.do {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0.1) 100%);
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.2);
}

.tip-icon.do svg {
    width: 18px;
    height: 18px;
    stroke: #22c55e;
}

.tip-icon.dont {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.18) 0%, rgba(239, 68, 68, 0.1) 100%);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.15);
}

.tip-icon.dont svg {
    width: 18px;
    height: 18px;
    stroke: #ef4444;
}

.tip-content h4 {
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 4px;
    font-weight: 700;
}

.tip-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* Denial Reasons Card - Mobile First */
.denial-reasons {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 28px 24px;
    border-radius: 18px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.denial-reasons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D9B45F, #c9a44f);
}

.denial-reasons::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(217, 180, 95, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.denial-reasons h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.denial-reasons h3::before {
    content: '⚠️';
    font-size: 1rem;
}

.denial-reasons ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.denial-reasons li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.denial-reasons li:hover {
    padding-left: 8px;
    border-color: rgba(217, 180, 95, 0.3);
}

.denial-reasons li:last-child {
    border-bottom: none;
}

.reason-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #D9B45F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reason-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.denial-cta {
    font-size: 0.85rem;
    color: #D9B45F;
    font-weight: 700;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(217, 180, 95, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.denial-cta::after {
    content: '→';
}

/* Tips Section Tablet+ */
@media (min-width: 768px) {
    .visa-tips-section {
        padding: 80px 0;
    }

    .visa-tips-content h2 {
        font-size: 1.9rem;
        text-align: left;
    }

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

    .tips-list {
        gap: 18px;
    }

    .tip-item {
        padding: 20px;
    }

    .tip-icon {
        width: 40px;
        height: 40px;
    }

    .tip-icon.do svg,
    .tip-icon.dont svg {
        width: 20px;
        height: 20px;
    }

    .tip-content h4 {
        font-size: 1rem;
    }

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

    .denial-reasons {
        padding: 36px 32px;
    }

    .denial-reasons h3 {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    .denial-reasons li {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        padding: 16px 0;
    }

    .reason-number {
        font-size: 1rem;
        min-width: 50px;
    }

    .reason-text {
        font-size: 0.95rem;
    }
}

/* Tips Section Desktop */
@media (min-width: 1024px) {
    .visa-tips-section {
        padding: 100px 0;
    }

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

    .visa-tips-content {
        flex: 1;
    }

    .denial-reasons {
        flex: 1;
        padding: 40px;
    }

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

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

    .tips-list {
        gap: 20px;
    }

    .denial-reasons h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .denial-reasons ul {
        margin-bottom: 25px;
    }

    .reason-number {
        font-size: 1.2rem;
    }
}

/* ===================================
   VISA SERVICES SECTION - MOBILE FIRST
   =================================== */

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

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

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

.visa-service-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 26px 22px;
    border-radius: 16px;
    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;
}

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

.visa-service-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.08),
        0 5px 10px rgba(217, 180, 95, 0.1);
    border-color: rgba(217, 180, 95, 0.2);
}

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

.visa-service-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(217, 180, 95, 0.1);
    line-height: 1;
}

.visa-service-icon {
    width: 52px;
    height: 52px;
    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;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(217, 180, 95, 0.15);
    transition: all 0.3s ease;
}

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

.visa-service-icon svg {
    width: 24px;
    height: 24px;
    stroke: #D9B45F;
}

.visa-service-card h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

.visa-service-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
}

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

/* Services Section Tablet+ */
@media (min-width: 768px) {
    .visa-services-section {
        padding: 80px 0;
    }

    .visa-services-grid {
        margin-top: 50px;
    }

    .visa-service-card {
        padding: 32px 26px;
    }

    .visa-service-number {
        font-size: 2.25rem;
    }

    .visa-service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 22px;
    }

    .visa-service-icon svg {
        width: 26px;
        height: 26px;
    }

    .visa-service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 14px;
    }

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

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

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

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

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

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

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

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

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

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

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

    .visa-hero-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

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

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

    .visa-type-card,
    .visa-process-step,
    .visa-service-card {
        padding: 22px 18px;
    }

    .visa-type-card h3,
    .visa-service-card h3 {
        font-size: 1rem;
    }

    .tip-item {
        padding: 14px;
        gap: 12px;
    }

    .tip-icon {
        width: 34px;
        height: 34px;
    }

    .tip-content h4 {
        font-size: 0.9rem;
    }

    .tip-content p {
        font-size: 0.8rem;
    }

    .denial-reasons {
        padding: 24px 20px;
    }

    .denial-reasons h3 {
        font-size: 1.1rem;
    }
}
