:root {
    --primary: #047857;
    --primary-hover: #065f46;
    --primary-light: #d1fae5;

    --secondary: #0f172a;
    --secondary-light: #334155;

    --accent: #2563eb;
    --bg-main: #f8fafc;
    --bg-white: #ffffff;

    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #64748b;

    --border: #e2e8f0;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
}

.external-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    transition: var(--transition);
}

.external-link:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 rgba(4, 120, 87, 0.35);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--bg-white);
    color: var(--text-main);
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--text-main);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--secondary);
    background-color: var(--bg-white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

/* Navigation - Premium Government Portal Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: var(--transition);
    margin-top: 40px;
    /* Offset for top bar */
}

/* Top Disclaimer Bar */
.top-disclaimer-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #064e3b 0%, #059669 100%);
    color: white;
    z-index: 1100;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 1.5rem;
    white-space: nowrap;
}

.top-bar-inner i {
    margin-right: 0.75rem;
    font-size: 1rem;
    color: #ffd700;
    /* Gold for notice icon */
}

.top-bar-inner a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
    margin-left: 0.4rem;
    transition: opacity 0.2s;
}

.top-bar-inner a:hover {
    opacity: 0.8;
}

/* Ticker Effect for Mobile */
@media (max-width: 768px) {
    .top-disclaimer-bar {
        height: 36px;
        font-size: 0.8rem;
    }

    .top-bar-inner {
        padding: 0;
        animation: ticker-scroll 20s linear infinite;
        display: inline-block;
        width: auto;
        padding-left: 100%;
    }

    .navbar {
        margin-top: 36px;
    }
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Scrolled state */
.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.03em;
    cursor: pointer;
}

.logo i {
    color: var(--primary);
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    filter: drop-shadow(0 2px 4px rgba(4, 120, 87, 0.2));
}

.logo-img {
    height: clamp(2.2rem, 6vw, 2.8rem);
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: translateY(-2px);
}

.logo span {
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
}

.nav-links-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

/* Base link styles */
.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link i.fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-white);
    min-width: 250px;
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    transform: translateX(5px);
}

.dropdown-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: transparent;
    border: none;
}

.mobile-menu-btn:hover {
    color: var(--primary);
}

.mobile-menu-header {
    display: none;
}

.mobile-menu-close {
    display: none;
}

/* Mobile Nav Styles */
@media (max-width: 1024px) {
    .navbar {
        padding: 0.5rem 0;
        margin-top: 36px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1002;
    }

    .nav-links-container {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 1.5rem 1.5rem 2rem;
        transform: translateX(100%);
        margin-top: 40px;
        /* Offset for top bar */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0.4s,
            opacity 0.4s;
        box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15);
        z-index: 1001;
        align-items: flex-start;
        overflow-y: auto;
        border-left: 1px solid rgba(226, 232, 240, 0.8);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .nav-links-container.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-bottom: 0;
        padding: 0.5rem 0.5rem 0.5rem;
        border-bottom: 2px solid rgba(226, 232, 240, 0.4);
    }

    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: none;
        background: transparent;
        color: var(--secondary);
        font-size: 1.25rem;
        cursor: pointer;
        border-radius: var(--radius-md);
        transition: var(--transition);
        flex-shrink: 0;
    }

    .mobile-menu-close:hover {
        color: var(--primary);
    }

    .nav-links-container.active~.mobile-menu-btn {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0.25rem;
    }

    .nav-links>* {
        border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    }

    .nav-links>*:last-child {
        border-bottom: none;
    }

    .dropdown {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: 1.05rem;
        justify-content: space-between;
        border-radius: var(--radius-md);
    }

    .nav-link.active {
        background-color: var(--primary-light);
        color: var(--primary);
        border-bottom-color: transparent;
    }

    .dropdown .dropdown-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 !important;
        margin: 0 !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: transparent;
        border-radius: 0;
        min-height: 0;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: none;
    }

    .dropdown.active .dropdown-menu {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0.5rem 0 1rem 1.25rem !important;
    }

    .dropdown-item {
        padding: 0.7rem 0.75rem;
        font-size: 0.95rem;
        border-radius: var(--radius-md);
        margin-bottom: 0.25rem;
        white-space: normal;
    }

    .dropdown.active .nav-link {
        color: var(--primary);
        border-bottom-color: transparent;
    }

    .dropdown.active .nav-link i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .nav-actions {
        width: 100%;
        margin-top: 1.25rem;
        padding: 0;
    }

    .nav-actions .btn-primary {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        justify-content: center;
    }

    /* Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 11rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 100%);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: #a7f3d0;
    animation: pulseShape 10s infinite alternate ease-in-out;
}

.shape-2 {
    bottom: -15%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: #e0f2fe;
    animation: pulseShape 12s infinite alternate-reverse ease-in-out;
}

.shape-3 {
    top: 40%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: #fef3c7;
    animation: pulseShape 8s infinite alternate ease-in-out 2s;
}

@keyframes pulseShape {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-20px, 20px);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(4, 120, 87, 0.2);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    line-height: 1.1;
    animation: fadeUp 0.6s ease-out 0.1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 25%;
    bottom: 8px;
    left: 0;
    background-color: rgba(4, 120, 87, 0.15);
    z-index: -1;
    transform: skewX(-15deg);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    animation: fadeUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.hero-audience p {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: fadeUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tag i {
    color: var(--primary);
    opacity: 0.8;
}

.tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Visual Right Column CSS Arts & Glassmorphism */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass);
    padding: 2.25rem;
}

.main-card {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 2;
    transform: rotateY(-8deg) rotateX(4deg) translateY(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatCard 6s infinite alternate ease-in-out;
}

@keyframes floatCard {
    0% {
        transform: rotateY(-8deg) rotateX(4deg) translateY(0px);
    }

    100% {
        transform: rotateY(-8deg) rotateX(4deg) translateY(-15px);
    }
}

.main-card:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-5px);
    animation-play-state: paused;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-header>i {
    font-size: 2.5rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary-light), #fff);
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}



.card-header h3 {
    font-size: 1.35rem;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

.card-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.skeleton-line {
    height: 12px;
    background-color: rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.skeleton-line.full {
    width: 100%;
}

.skeleton-line.half {
    width: 80%;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #f0fdf4;
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    border: 1px solid #bbf7d0;
}

.stamp-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
    position: relative;
    height: 60px;
}

.stamp {
    position: absolute;
    right: 10px;
    top: -10px;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    border: 4px solid var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 0.5rem;
    transform: rotate(-15deg);
    opacity: 0.9;
    letter-spacing: 4px;
    box-shadow: 0 0 10px rgba(4, 120, 87, 0.1);
    -webkit-mask-image: url("data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=");
    mask-image: url("data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=");
    /* slight distress effect optionally via mask */
}

.card-footer {
    margin-top: 2rem;
    border-top: 1px dashed rgba(226, 232, 240, 0.8);
    padding-top: 1.5rem;
}

.barcode {
    height: 40px;
    width: 100%;
    background-image: repeating-linear-gradient(to right,
            var(--secondary) 0,
            var(--secondary) 2px,
            transparent 2px,
            transparent 5px,
            var(--secondary) 5px,
            var(--secondary) 9px,
            transparent 9px,
            transparent 11px,
            var(--secondary) 11px,
            var(--secondary) 14px,
            transparent 14px,
            transparent 18px);
    opacity: 0.8;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    z-index: 3;
    animation: floatIcon 5s infinite alternate ease-in-out;
    background: rgba(255, 255, 255, 0.9);
}

.card-top {
    top: 40px;
    right: -30px;
    animation-delay: 1s;
}

.card-bottom {
    bottom: 50px;
    left: -40px;
    animation-delay: 2s;
}

@keyframes floatIcon {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-12px);
    }
}

.float-card i {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.text-warning {
    color: #d97706;
    background: #fef3c7;
}

.text-primary {
    color: var(--accent);
    background: #dbeafe;
}

.float-card h4 {
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
    color: var(--secondary);
}

.float-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
    position: relative;
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(4, 120, 87, 0.2);
}

.about-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light), #fff);
    color: var(--primary);
    font-size: 1.75rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.about-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.about-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.highlight-box {
    background-color: #f0fdf4;
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 1.5rem;
}

.highlight-box strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

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

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.grid-list li {
    padding-left: 1.6rem;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.grid-list i {
    top: 0.2rem;
    font-size: 1rem;
}

.info-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    color: var(--secondary-light);
    font-size: 0.925rem;
    line-height: 1.5;
}

.info-note i {
    color: var(--accent);
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

/* Eligibility Section */
.eligibility-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
    position: relative;
    border-bottom: 1px solid var(--border);
}

.eligibility-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 850px;
    margin: 0 auto;
}

.eligibility-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.25rem 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.eligibility-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.eligibility-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    border-color: rgba(4, 120, 87, 0.2);
}

.eligibility-card:hover::before {
    opacity: 1;
}

.eligibility-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: #f0fdf4;
    color: var(--primary);
    font-size: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid #bbf7d0;
}

.eligibility-details {
    flex-grow: 1;
}

.eligibility-details h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    color: var(--secondary);
}

.eligibility-details p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.eligibility-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: #f8fafc;
    border-left: 3px solid var(--primary);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--secondary-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 1.25rem;
}

.eligibility-note i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.eligibility-list {
    margin-top: 1rem !important;
}

.eligibility-list li {
    padding-left: 2rem !important;
}

@media (max-width: 768px) {
    .eligibility-card {
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
    }

    .eligibility-card:hover {
        transform: translateY(-4px);
    }
}

/* Application Process Section */
.process-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
    position: relative;
    border-bottom: 1px solid var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-intro {
    text-align: center;
    margin-bottom: 3.5rem;
}

.process-intro h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.process-intro p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.timeline {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 1rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 2px;
    background-color: var(--border);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 2px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 0 6px var(--bg-main);
    transition: var(--transition);
}

.timeline-item:hover .timeline-icon {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 0 6px var(--primary-light);
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 16px;
    height: 16px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    transform: rotate(45deg);
    transition: var(--transition);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-md);
    border-color: rgba(4, 120, 87, 0.2);
    transform: translateX(5px);
}

.timeline-item:hover .timeline-content::before {
    border-bottom-color: rgba(4, 120, 87, 0.2);
    border-left-color: rgba(4, 120, 87, 0.2);
}

.timeline-content h4 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.process-list {
    list-style: none;
    margin: 1.25rem 0 0 0;
    padding: 0;
}

.process-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.process-list li:last-child {
    margin-bottom: 0;
}

.process-list i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    font-size: 0.95rem;
    color: var(--primary);
}

.info-note-small {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    color: #92400e;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 1.5rem;
}

.info-note-small i {
    font-size: 1.25rem;
    color: #d97706;
    margin-top: 0.1rem;
}

.highlight-card {
    background: linear-gradient(135deg, #f0fdf4 0%, var(--bg-white) 100%);
    border-color: #bbf7d0;
}

.highlight-card::before {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
}

.processing-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    background-color: #d1fae5;
    color: #065f46;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    border: 1px solid #a7f3d0;
}

.processing-time i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .process-section {
        padding: 4rem 0;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        box-shadow: 0 0 0 4px var(--bg-main);
    }

    .timeline-item:hover .timeline-icon {
        box-shadow: 0 0 0 4px var(--primary-light);
    }

    .timeline-item {
        padding-left: 4rem;
        margin-bottom: 2rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content::before {
        display: none;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* Required Documents Section */
.documents-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
    position: relative;
    border-bottom: 1px solid var(--border);
}

.documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 950px;
    margin: 0 auto;
}

.document-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.document-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(4, 120, 87, 0.2);
}

.document-card:hover::before {
    opacity: 1;
}

.document-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.document-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    color: var(--primary);
    font-size: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #bbf7d0;
    flex-shrink: 0;
}

.document-card h3 {
    font-size: 1.35rem;
    color: var(--secondary);
    margin: 0;
}

.documents-list {
    margin-top: 0;
    margin-bottom: auto;
}

.documents-list li {
    padding-left: 2.25rem;
    margin-bottom: 1.15rem;
    font-size: 1.05rem;
}

.documents-list i {
    font-size: 1.1rem;
    top: 0.15rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-container {
        gap: 2rem;
    }

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

    .card-top {
        right: -10px;
    }

    .card-bottom {
        left: -10px;
    }
}

@media (max-width: 960px) {
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-section {
        padding: 4.5rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-actions .btn-outline {
        display: none;
    }

    .hero {
        padding: 7rem 0 4rem;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .audience-tags {
        justify-content: center;
    }

    .hero-visual {
        min-height: 450px;
    }

    .main-card {
        transform: rotateY(0deg) rotateX(0deg);
        animation: none;
    }

    .card-top {
        top: -20px;
        right: 10%;
    }

    .card-bottom {
        bottom: -20px;
        left: 10%;
    }
}

@media (max-width: 640px) {
    .documents-section {
        padding: 3.5rem 0;
    }

    .document-card {
        padding: 1.75rem;
    }

    .document-card-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .document-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .document-card h3 {
        font-size: 1.25rem;
    }

    .documents-list li {
        font-size: 0.95rem;
    }

    .hero {
        padding: 6.5rem 0 3rem;
    }

    .hero-container {
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
    }

    .audience-tags {
        gap: 0.5rem;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .hero-visual {
        min-height: auto;
    }

    .main-card {
        padding: 1.5rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .card-header>i {
        font-size: 2rem;
        padding: 0.85rem;
    }

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

    .stamp-wrapper {
        margin-top: 0.5rem;
        justify-content: center;
    }

    .stamp {
        font-size: 1.4rem;
        padding: 0.3rem 0.8rem;
        right: auto;
        top: -15px;
    }

    .float-card {
        display: none;
        /* Hide floating cards on very small screens to avoid clutter */
    }

    .about-section {
        padding: 3.5rem 0;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-card h2 {
        font-size: 1.5rem;
    }

    .about-card p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .about-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .highlight-box {
        padding: 1.25rem;
    }

    .check-list li {
        font-size: 0.95rem;
    }

    .grid-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .info-note {
        flex-direction: column;
        padding: 1.15rem;
        gap: 0.6rem;
    }

    .info-note i {
        margin-top: 0;
    }

    /* Process Section Mobile Tweaks */
    .process-section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .process-intro {
        margin-bottom: 2.5rem;
    }

    .process-intro h3 {
        font-size: 1.25rem;
    }

    .process-intro p {
        font-size: 0.95rem;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
        box-shadow: 0 0 0 3px var(--bg-main);
    }

    .timeline-item:hover .timeline-icon {
        box-shadow: 0 0 0 3px var(--primary-light);
    }

    .timeline-item {
        padding-left: 3.25rem;
        margin-bottom: 1.5rem;
    }

    .timeline-content {
        padding: 1.25rem;
        border-radius: var(--radius-lg);
    }

    .timeline-content h4 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

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

    .process-list {
        margin-top: 1rem;
    }

    .process-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .info-note-small {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        margin-top: 1.25rem;
    }

    .info-note-small i {
        margin-top: 0;
    }

    .processing-time {
        flex-direction: column;
        text-align: center;
        padding: 1.1rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .processing-time i {
        font-size: 1.5rem;
    }
}

/* Status Section */
.status-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
    position: relative;
    border-bottom: 1px solid var(--border);
}

.status-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.status-instructions,
.status-meanings {
    background-color: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.status-instructions:hover,
.status-meanings:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(4, 120, 87, 0.2);
    transform: translateY(-5px);
}

.status-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.status-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), #fff);
    color: var(--primary);
    font-size: 1.8rem;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #bbf7d0;
}

.status-card-header h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin: 0;
}

.step-boxes {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.step-box {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: var(--bg-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.step-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(4, 120, 87, 0.3);
}

.step-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
}

.status-badges {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background-color: var(--bg-white);
    transition: var(--transition);
}

.status-badge:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.status-badge i {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.badge-submitted {
    border-left: 4px solid #3b82f6;
}

.badge-submitted i {
    color: #3b82f6;
    background-color: #eff6ff;
}

.badge-verification {
    border-left: 4px solid #f59e0b;
}

.badge-verification i {
    color: #f59e0b;
    background-color: #fef3c7;
}

.badge-approved {
    border-left: 4px solid #10b981;
}

.badge-approved i {
    color: #10b981;
    background-color: #d1fae5;
}

.badge-rejected {
    border-left: 4px solid #ef4444;
}

.badge-rejected i {
    color: #ef4444;
    background-color: #fee2e2;
}

.status-badge h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.15rem;
    color: var(--secondary);
}

.status-badge p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 960px) {
    .status-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .status-section {
        padding: 4rem 0;
    }

    .status-instructions,
    .status-meanings {
        padding: 1.75rem;
    }

    .status-badge,
    .step-box {
        padding: 1.15rem;
        gap: 1rem;
    }

    .status-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .status-card-header h3 {
        font-size: 1.25rem;
    }
}

/* Unique Design for Common Problems and Solutions */
.problems-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    position: relative;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 960px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transition: height 0.3s ease;
    z-index: 0;
}

.problem-card.card-rejected::before {
    background: #ef4444;
}

.problem-card.card-delay::before {
    background: #f59e0b;
}

.problem-card.card-error::before {
    background: #3b82f6;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-card:hover::before {
    height: 6px;
}

.problem-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.problem-card.card-rejected .problem-icon-wrapper {
    color: #ef4444;
    background: #fee2e2;
}

.problem-card.card-delay .problem-icon-wrapper {
    color: #f59e0b;
    background: #fef3c7;
}

.problem-card.card-error .problem-icon-wrapper {
    color: #3b82f6;
    background: #eff6ff;
}

.problem-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    position: relative;
    z-index: 1;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.problem-list {
    list-style: none;
    margin: 0 0 auto 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.problem-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: var(--secondary-light);
}

.problem-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 0.9rem;
}

.problem-card.card-rejected .problem-list li i {
    color: #ef4444;
}

.problem-card.card-delay .problem-list li i {
    color: #f59e0b;
}

.problem-solution {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 2rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.problem-card.card-rejected .problem-solution {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.problem-card.card-delay .problem-solution {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.problem-card.card-error .problem-solution {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.problem-solution i {
    font-size: 1.25rem;
    margin-top: 2px;
}

/* FAQ Layout */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 850px;
    margin: 0 auto;
}

.faq-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.faq-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
    border-color: rgba(4, 120, 87, 0.2);
}

.faq-card:hover::before {
    opacity: 1;
}

.faq-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #f0fdf4;
    color: var(--primary);
    font-size: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #bbf7d0;
}

.faq-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.faq-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-card {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .faq-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .faq-content h3 {
        font-size: 1.15rem;
    }
}

/* Steps Layout */
.steps-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.steps-container .section-header {
    margin-bottom: 4rem;
}

.steps-container .section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.steps-container .section-subtitle {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.steps-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.step-grid {
    display: grid;
    gap: 2rem;
}

.step-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    gap: 1.5rem;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(4, 120, 87, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(4, 120, 87, 0.2);
    transition: var(--transition);
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--secondary);
}

.step-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

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

.step-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-requirement-item {
    background: #e0e7ff;
    color: #4338ca;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
}

.step-payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    background: var(--bg-main);
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
}

.submit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.submit-action {
    flex: 1;
    min-width: 150px;
    background: var(--bg-main);
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border);
}

.submit-action i {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    display: block;
}

.submit-action span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Forms related layout grids */
.form-requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.form-requirement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .steps-container .section-header h2 {
        font-size: 1.75rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .submit-action {
        padding: 1rem;
        min-width: 120px;
    }
}

/* Fee Section Custom Premium Styles */
.fee-section {
    position: relative;
    overflow: hidden;
}

.fee-premium-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.fee-main-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px -10px rgba(4, 120, 87, 0.15);
    border: 1px solid rgba(4, 120, 87, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.fee-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(4, 120, 87, 0.25);
}

.fee-card-header {
    background: linear-gradient(135deg, var(--primary) 0%, #0369a1 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.fee-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.fee-amount {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fee-currency {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.fee-card-body {
    padding: 3rem;
    background: white;
}

.fee-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fee-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 500;
}

.fee-features li i {
    color: var(--primary);
    font-size: 1.25rem;
}

.fee-payment-methods {
    border-top: 1px dashed var(--border);
    padding-top: 2rem;
    text-align: center;
}

.methods-title {
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.methods-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.method-badge {
    background: #f8fafc;
    border: 1px solid var(--border);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.method-badge:hover {
    background: #f0fdf4;
    border-color: #86efac;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.fee-warning-alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 5px solid #ef4444;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
}

.warning-icon {
    background: #fee2e2;
    color: #ef4444;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.warning-text {
    flex: 1;
}

.warning-text h4 {
    color: #991b1b;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.warning-text p {
    color: #7f1d1d;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .fee-card-body {
        padding: 2rem 1.5rem;
    }

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

    .fee-warning-alert {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
}

/* Processing Time Section Responsive Styles */
.time-factors-card {
    background: var(--bg-main);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.time-factors-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(4, 120, 87, 0.2);
}

.time-factors-header {
    font-size: 1.35rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(4, 120, 87, 0.1);
    padding-bottom: 0.75rem;
    display: inline-block;
}

.time-factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.time-factor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.time-factor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.time-factor-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.time-factor-icon.users {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.time-factor-icon.docs {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.time-factor-icon.address {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.time-factor-icon.holidays {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.time-factor-text {
    font-weight: 500;
    color: var(--secondary);
}

.time-explanation-box {
    background: linear-gradient(135deg, var(--primary), #059669);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(4, 120, 87, 0.2);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.time-explanation-box:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 30px rgba(4, 120, 87, 0.3);
}

.time-explanation-bg {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.1;
    transform: scale(3) translate(10%, -10%);
    pointer-events: none;
}

.time-explanation-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.time-explanation-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
}

.time-explanation-text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0;
}

.time-advice-box {
    border-left: 4px solid #f59e0b;
    background: rgba(245, 158, 11, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
}

.time-advice-box:hover {
    background: rgba(245, 158, 11, 0.1);
}

.time-advice-icon {
    background: #f59e0b;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.time-advice-text {
    color: var(--secondary);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .time-factors-card {
        padding: 1.5rem;
    }

    .time-factors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .time-explanation-box {
        padding: 1.5rem;
    }

    .time-explanation-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .time-advice-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        border-left: none;
        border-top: 4px solid #f59e0b;
        border-radius: var(--radius-lg);
    }
}

/* Delayed Status Section Responsive Styles */
.delayed-section {
    padding: 5rem 0;
    background-color: var(--bg-main);
}

.delayed-container {
    max-width: 850px;
    margin: 3rem auto 0 auto;
}

.delayed-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid #ef4444;
    position: relative;
    overflow: hidden;
}

.delayed-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 15rem;
    color: rgba(239, 68, 68, 0.03);
    z-index: 0;
}

.delayed-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.delayed-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--bg-main);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.delayed-item.border-blue:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.delayed-item.border-orange:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.delayed-item.border-green:hover {
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.delayed-item.border-purple:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.delayed-item.alert-style {
    background: linear-gradient(to right, rgba(239, 68, 68, 0.05), transparent);
    border-color: rgba(239, 68, 68, 0.2);
}

.delayed-item.alert-style:hover {
    border-color: rgba(239, 68, 68, 0.5);
    background: linear-gradient(to right, rgba(239, 68, 68, 0.08), transparent);
    transform: translateX(5px);
}

.delayed-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.delayed-icon-box.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.delayed-icon-box.orange {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.delayed-icon-box.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.delayed-icon-box.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.delayed-icon-box.red-fill {
    background: #ef4444;
    color: white;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.delayed-text {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 500;
    line-height: 1.5;
}

.delayed-text.bold {
    font-weight: 600;
}

@media (max-width: 768px) {
    .delayed-section {
        padding: 4rem 0;
    }

    .delayed-card {
        padding: 1.5rem;
    }

    .delayed-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem;
        gap: 1rem;
    }

    .delayed-item:hover,
    .delayed-item.alert-style:hover {
        transform: translateY(-3px);
    }

    .delayed-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .delayed-text {
        font-size: 1rem;
    }
}

/* Official Fee Details Section */
.fee-details-section {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
}

.fee-title-wrapper {
    text-align: center;
    margin-bottom: 3.5rem;
}

.fee-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.fee-title span {
    color: #4f46e5;
    display: block;
}

.fee-title-underline {
    height: 4px;
    width: 60px;
    background: #4f46e5;
    border-radius: 2px;
    margin: 1rem auto 0;
}

.fee-subtitle {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.fee-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.fee-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0) 100%);
    border-radius: 0 24px 0 100%;
    z-index: 0;
    pointer-events: none;
}

.fee-card-content {
    position: relative;
    z-index: 1;
}

.fee-info-text {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.fee-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.fee-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.fee-list-item:hover {
    transform: translateX(5px);
}

.fee-list-item.blue {
    border-left: 4px solid #4f46e5;
}

.fee-list-item.blue .icon {
    color: #4f46e5;
}

.fee-list-item.orange {
    border-left: 4px solid #f59e0b;
}

.fee-list-item.orange .icon {
    color: #f59e0b;
}

.fee-list-item.green {
    border-left: 4px solid #10b981;
    margin-bottom: 0;
}

.fee-list-item.green .icon {
    color: #10b981;
}

.fee-list-item .icon {
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.fee-list-item .text {
    font-size: 1.05rem;
    color: #1e293b;
    font-weight: 500;
}

.fee-list-item .text-sub {
    color: #64748b;
    font-weight: 400;
    font-size: 0.95rem;
}

.fee-notice {
    background: #eff6ff;
    border: 1px dashed #bfdbfe;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.fee-notice .icon {
    color: #3b82f6;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.fee-notice p {
    font-size: 1.05rem;
    color: #1e3a8a;
    line-height: 1.6;
    margin: 0;
}

.fee-warning-card {
    background: white;
    border: 1px solid #fee2e2;
    border-radius: 20px;
    padding: clamp(1.5rem, 5vw, 2rem);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.fee-warning-card:hover {
    transform: translateY(-3px);
}

.fee-warning-badge {
    position: absolute;
    top: -16px;
    left: 2rem;
    background: #ef4444;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.fee-warning-text {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.7;
    margin: 0;
    padding-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.fee-warning-text strong {
    color: #b91c1c;
    font-weight: 600;
}

.fee-warning-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.03;
    font-size: 8rem;
    color: #ef4444;
    line-height: 0.8;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 20px;
}

/* Foreign Use Section Settings */
.foreign-use-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid #f1f5f9;
}

.foreign-use-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.foreign-use-title-wrapper {
    text-align: center;
    margin-bottom: 3.5rem;
}

.foreign-use-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
}

.foreign-use-title span {
    color: #4f46e5;
}

.foreign-use-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #10b981);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.foreign-use-desc {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.foreign-use-desc strong {
    color: #334155;
}

.foreign-use-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.foreign-use-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: default;
}

.foreign-use-card:hover {
    transform: translateY(-5px);
}

.foreign-use-card-left-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

.border-orange {
    background: #f59e0b;
}

.border-green {
    background: #10b981;
}

.foreign-use-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.foreign-use-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.bg-orange {
    background: #fffbeb;
    color: #f59e0b;
}

.bg-green {
    background: #ecfdf5;
    color: #10b981;
}

.foreign-use-card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.foreign-use-card-desc {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.foreign-use-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.foreign-use-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.foreign-use-list-icon {
    margin-top: 0.15rem;
}

.text-orange {
    color: #f59e0b;
}

.foreign-use-list span {
    color: #334155;
    font-weight: 500;
    font-size: 1.05rem;
}

.foreign-use-list-boxed {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.foreign-use-list-boxed li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8fafc;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.foreign-use-list-boxed-icon {
    width: 24px;
}

.text-indigo {
    color: #4f46e5;
}

.text-blue {
    color: #3b82f6;
}

.text-purple {
    color: #8b5cf6;
}

.foreign-use-list-boxed span {
    color: #334155;
    font-weight: 600;
    font-size: 1.05rem;
}

.foreign-use-note {
    background: linear-gradient(135deg, #4f46e5 0%, #38bdf8 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: white;
    box-shadow: 0 15px 35px -10px rgba(56, 189, 248, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    flex-wrap: wrap;
}

.foreign-use-note-bg-1 {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(20px);
}

.foreign-use-note-bg-2 {
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(15px);
}

.foreign-use-note-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.foreign-use-note-content {
    z-index: 1;
    flex: 1;
    min-width: 250px;
}

.foreign-use-note-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
}

.foreign-use-note-content p {
    margin: 0 0 0.75rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
}

.foreign-use-note-highlight {
    margin: 0 !important;
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
    color: #e0f2fe !important;
    font-weight: 500;
}

/* ============================================
   FOOTER - Minimal Bar
   ============================================ */

/* ============================================
   FOOTER - Premium Multi-Column
   ============================================ */

.footer {
    background: #ffffff;
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
    color: var(--text-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f1f5f9;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(4, 120, 87, 0.2);
}

/* Specific Brand Colors on Hover */
.social-link.facebook:hover {
    background-color: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.social-link.x-twitter:hover {
    background-color: #000000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

.social-link.linkedin:hover {
    background-color: #0a66c2;
    box-shadow: 0 5px 15px rgba(10, 102, 194, 0.3);
}

.social-link.youtube:hover {
    background-color: #ff0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.footer-nav-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-nav-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-nav-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.footer-nav-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }


    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Feature Image Styling */
.feature-image-container {
    max-width: 1000px;
    margin: 3.5rem auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    padding: 12px;
    animation: fadeUp 0.8s ease-out forwards;
}

.feature-image-container:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 70px rgba(4, 120, 87, 0.18);
    border-color: rgba(4, 120, 87, 0.3);
}

.feature-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.8s ease;
}

.feature-image-container:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .feature-image-container {
        margin: 2.5rem 1rem;
        padding: 8px;
        border-radius: 16px;
    }
    
    .feature-image-container img {
        border-radius: 10px;
    }
}