/* ... (Rest of styles.css content maintained) ... */
/* Expat Section Styles */
.expat-section {
    padding: 100px 0;
    background-color: #f0f4f8;
    /* Soft distinctive background */
    position: relative;
    overflow: hidden;
}

.expat-section:before {
    /* Subtle world map dots pattern or similar via CSS */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#1C4A8D 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: 1;
}

.expat-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 80px;
}

.expat-content {
    flex: 1;
}

.expat-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.expat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e3f2fd;
    color: var(--color-primary);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.highlight-blue {
    color: var(--color-primary);
}

.expat-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 95%;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.req-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check-icon {
    min-width: 24px;
    height: 24px;
    background: var(--color-action);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 3px;
}

.req-text strong {
    display: block;
    color: var(--color-text-main);
    margin-bottom: 3px;
}

.req-text span {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.4;
    display: block;
}

.expat-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.support-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-main);
    font-weight: 500;
}

.support-info ion-icon {
    font-size: 1.5rem;
    color: #25d366;
    /* WhatsApp color */
}

/* Validated Document Card CSS (No Images) */
.passport-card {
    background: white;
    width: 100%;
    max-width: 320px;
    height: 420px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transform: rotate(3deg);
    transition: transform 0.4s ease;
}

.passport-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.passport-header {
    background: var(--color-primary);
    color: white;
    padding: 15px 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.passport-body {
    padding: 30px;
    position: relative;
}

.passport-body h3 {
    text-transform: uppercase;
    font-size: 1.2rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333;
}

.passport-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}

.passport-row span {
    color: #888;
}

.stamp-mark {
    position: absolute;
    border: 3px solid var(--color-action);
    color: var(--color-action);
    padding: 10px 20px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.5rem;
    transform: rotate(-15deg);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    top: 40%;
    right: 15%;
}

.valid-seal {
    margin-top: 40px;
    text-align: center;
    color: #b8860b;
    /* Gold/Bronze */
}

.valid-seal ion-icon {
    font-size: 3rem;
    display: block;
    margin: 0 auto 5px;
}

.valid-seal span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments for Expat Section */
@media (max-width: 900px) {
    .expat-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .expat-actions {
        flex-direction: column;
        gap: 20px;
    }

    .passport-card {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .passport-card {
        height: auto;
        min-height: 420px;
    }
}

/* WhatsApp Floating Button with Pulse Animation */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2000; /* Increased to ensure it's on top */
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

.whatsapp-float ion-icon {
    margin-top: 2px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}