/* Existing Styles (Re-including everything + new story styles) */
/* ... (Since I cannot append, I must rewrite the full file. I will combine previous styles with new ones) */

:root {
    --primary: #FFD700;
    --primary-dark: #ccac00;
    --secondary: #3b82f6;
    --secondary-dark: #1e3a8a;
    --bg-dark: #0B1F4D;
    --bg-card: rgba(15, 30, 70, 0.8);
    --text-white: #ffffff;
    --text-muted: #cbd5e1;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent: #10b981; /* Success Green */
    --danger: #ef4444;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ai-shimmer: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
}

/* Premium Animations */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse-ai {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, #1e3a8a 0%, #0a192f 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Updated to Family Image */
    background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2021&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.6;
}


@media (max-width: 768px) {
    .hero-overlay {
        /* Shift image to the left on mobile to show the car/family */
        background-position: 70% center;
        opacity: 0.7;
        /* Slightly brighter on mobile */
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--secondary-dark);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #4c1d95;
}

/* Stats */
.stats {
    background: rgba(10, 25, 47, 0.8);
    padding: 3rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Destinations Card Grid */
.destinations {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 600px;
    margin: 0 auto;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.card-image {
    height: 200px;
    background: #1e293b;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
}

.card-content {
    padding: 2rem;
}

.card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.btn-text {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    gap: 0.8rem;
    color: var(--primary);
}

/* Card Gradients */
.card-canada .card-image {
    background: linear-gradient(45deg, #ef4444, #7f1d1d);
}

.card-spain .card-image {
    background: linear-gradient(45deg, #fbbf24, #d97706);
}

.card-poland .card-image {
    background: linear-gradient(45deg, #dc2626, #991b1b);
}

.card-usa .card-image {
    background: linear-gradient(45deg, #3b82f6, #1e3a8a);
}

/* Features */
.features {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Success Stories Section (NEW) */
.success-stories {
    padding: 6rem 0;
    background: var(--bg-dark);
    /* Same as features for continuity */
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.story-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.story-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-img img {
    transform: scale(1.05);
}

.story-text {
    padding: 2rem;
}

.story-text h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.location {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.story-text p:last-child {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* Contact */
.contact {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0f172a);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
    margin-top: 2rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.contact-list i {
    color: var(--primary);
    width: 25px;
}

/* Form */
.lead-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.form-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.form-header h3 {
    color: var(--primary);
}

.form-step {
    display: none;
    opacity: 0;
}

.form-step.active {
    display: block;
    animation: fadeInStep 0.4s forwards ease;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.full-width {
    width: 100%;
}

.btn-secondary-outline {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary-outline:hover {
    border-color: #fff;
    color: #fff;
}

/* MODALS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #1e293b;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: none;
}

.modal-content.active-modal {
    display: block;
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.modal-header i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-header h2 {
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Header Colors */
.header-canada {
    background: linear-gradient(135deg, #ef4444, #991b1b);
}

.header-spain {
    background: linear-gradient(135deg, #fbbf24, #d97706);
}

.header-poland {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.header-usa {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
}

.modal-body {
    padding: 2rem;
    color: var(--text-white);
}

.modal-body h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-left: 4px solid var(--primary);
    padding-left: 10px;
}

.modal-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.job-list {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.job-list h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.job-list ul {
    list-style: none;
}

.job-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.job-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.job-list li strong {
    color: #e2e8f0;
}

.modal-cta-box {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.modal-cta-box .btn-primary {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
}

/* Scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #0a192f;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

/* Official Links Section */
.official-links {
    padding: 3rem 0;
    background: #0f172a;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.official-links h3 {
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.official-links p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.official-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    color: var(--text-white);
}

.official-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.official-link i {
    color: var(--text-muted);
    transition: var(--transition);
}

.official-link:hover i {
    color: var(--primary);
}

.disclaimer {
    color: #64748b !important;
    font-size: 0.8rem !important;
    margin-top: 2rem;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-container,
    .stats-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .modal-content {
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in {
    opacity: 0;
    transition: all 1s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive Optimization */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    
    .ai-toggle-btn {
        width: 55px !important;
        height: 55px !important;
    }

    .ai-toggle-btn i {
        font-size: 1.5rem !important;
    }

    .whatsapp-m {
        width: 55px !important;
        height: 55px !important;
        bottom: 95px !important;
        right: 25px !important;
    }

    .ai-assistant-wrap {
        bottom: 25px !important;
        right: 25px !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem !important; }
}

/* JOB PORTAL STYLES */
.job-portal { padding: 8rem 0; background: radial-gradient(circle at center, #0B1F4D 0%, #070e1b 100%); position: relative; }
.job-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 4rem; }
.job-card { background: var(--bg-card); border: 1px solid var(--glass-border); padding: 2.5rem; border-radius: 20px; transition: 0.4s; position: relative; overflow: hidden; }
.job-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 15px 40px rgba(251, 191, 36, 0.1); }
.job-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1.5rem; display: block; }
.job-card h4 { font-size: 1.4rem; color: white; margin-bottom: 1rem; }
.job-card p { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; }
.job-tag { position: absolute; top: 20px; right: 20px; background: rgba(16, 185, 129, 0.2); color: #10b981; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; }

.job-form-box { margin-top: 5rem; background: white; padding: 3.5rem; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.4); max-width: 800px; margin-left: auto; margin-right: auto; }
.job-form-box h3 { color: #0B1F4D; font-size: 2.2rem; text-align: center; margin-bottom: 2.5rem; font-weight: 800; }
.job-input-group { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.job-field { margin-bottom: 1.5rem; }
.job-field label { display: block; color: #475569; font-weight: 700; margin-bottom: 0.5rem; font-size: 0.9rem; }
.job-field input, .job-field select { width: 100%; padding: 1rem; border: 2px solid #e2e8f0; border-radius: 12px; outline: none; transition: 0.3s; font-size: 1rem; color: #000; }
.job-field input:focus { border-color: var(--primary); }
.btn-job { background: #0B1F4D; color: white; border: none; padding: 1.2rem; border-radius: 12px; width: 100%; font-weight: 800; font-size: 1.1rem; cursor: pointer; transition: 0.3s; margin-top: 1rem; }
.btn-job:hover { background: #fbbf24; color: #0B1F4D; transform: scale(1.02); }

@media (max-width: 768px) { .job-input-group { grid-template-columns: 1fr; } .job-form-box { padding: 2rem; } }
