/* --- Global & Layout --- */
body { margin: 0; font-family: 'Segoe UI', sans-serif; background: #f8fafc; color: #1e293b; overflow-x: hidden; top: 0px !important; }
.section { padding: 5rem 10%; }
.section.alt { background: #fff; }
.left-align-container { text-align: left; max-width: 900px; margin: 0 auto; }

/* --- Reactive Navigation --- */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 10%; background: #0f172a; position: sticky; top: 0; z-index: 1000; }
.nav-links { display: flex; list-style: none; gap: 2rem; margin-left: auto; }
.nav-links a { color: #f1f5f9; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: #facc15; }

/* --- Modern Hero --- */
.hero { position: relative; height: 80vh; background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d') center/cover; color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; }
.overlay { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.75); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.2; }

/* --- Reactive Buttons --- */
.btn { 
    background: #facc15; color: #0f172a; padding: 1rem 2.5rem; border-radius: 50px; 
    font-weight: 700; text-decoration: none; display: inline-block; border: none; 
    cursor: pointer; transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn:hover { transform: translateY(-3px); background: #eab308; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn:active { transform: translateY(0) scale(0.98); }

/* --- Visual Trust Badge --- */
.trust-badge-visual { display: inline-flex; align-items: center; background: #1e293b; color: #facc15; padding: 8px 16px; border-radius: 50px; font-weight: bold; font-size: 0.8rem; border: 1px solid #facc15; margin-top: 1rem; }
.trust-badge-visual i { margin-right: 8px; }

/* --- How It Works --- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.step-card { background: #f8fafc; padding: 2rem; border-radius: 12px; border: 1px solid #e2e8f0; }
.step-number { width: 35px; height: 35px; background: #facc15; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 1rem; }

/* --- Career Bullets --- */
.modern-bullets { list-style: none; padding: 0; margin-bottom: 2rem; }
.modern-bullets li { position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem; }
.modern-bullets li::before { content: "•"; color: #facc15; position: absolute; left: 0; font-weight: bold; font-size: 1.2rem; }

/* --- Left Aligned Form --- */
.form-container { max-width: 600px; margin: 0 auto 0 0; }
.form-group { margin-bottom: 1.2rem; text-align: left; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; }
input, select, textarea { width: 100%; padding: 0.85rem; border: 1px solid #cbd5e1; border-radius: 8px; font-family: inherit; box-sizing: border-box; }

/* --- Modern Partners --- */
.partners-label { font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; color: #94a3b8; display: block; margin-bottom: 1.5rem; }
.partners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.partner-item { padding: 1rem; border: 1px solid #e2e8f0; color: #64748b; font-size: 0.8rem; font-weight: 700; border-radius: 4px; text-transform: uppercase; text-align: center; }

/* --- Testimonials --- */
.carousel-container { position: relative; overflow: hidden; width: 100%; }
.carousel-track { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.testimonial-card { min-width: 100%; box-sizing: border-box; }
.testimonial-card img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid #facc15; margin-bottom: 1rem; }
.text-content { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; height: 1.5em; transition: 0.3s; font-style: italic; }
.text-content.expanded { -webkit-line-clamp: unset; height: auto; }
.read-more-btn { background: none; border: none; color: #3b82f6; font-weight: 600; cursor: pointer; margin-top: 0.5rem; }
.carousel-btns { display: flex; gap: 10px; margin-top: 1.5rem; }
.carousel-nav { background: #0f172a; color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; }

/* --- FAQ --- */
.faq-item { border-bottom: 1px solid #e2e8f0; }
.accordion { width: 100%; padding: 1.5rem 0; background: none; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 1.1rem; font-weight: 600; text-align: left; }
.icon { position: relative; width: 16px; height: 16px; }
.icon::before, .icon::after { content: ""; position: absolute; background: #0f172a; transition: 0.3s; }
.icon::before { width: 100%; height: 2px; top: 7px; left: 0; }
.icon::after { width: 2px; height: 100%; top: 0; left: 7px; }
.accordion.active .icon { transform: rotate(45deg); }
.panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }

/* --- Footer & WhatsApp --- */
footer { background: #0f172a; color: #94a3b8; text-align: center; padding: 4rem 10%; margin-top: 3rem; }
.footer-links a { color: #facc15; text-decoration: none; margin: 0 10px; }
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; background: #22c55e; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; z-index: 999; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }

/* --- Germany Landing Page Specifics --- */
.germany-hero {
    /* New reliable high-res Germany architecture image */
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), 
                url('https://images.pexels.com/photos/1467300/pexels-photo-1467300.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 80vh !important;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Back Button Styling (Reactive) */
.btn-back {
    font-weight: 600;
    color: #facc15 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 2px solid #facc15;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-back:hover {
    background: #facc15;
    color: #0f172a !important;
    transform: translateX(-5px);
}

/* --- Australia Landing Page Specifics --- */
.australia-hero {
    /* High-res Sydney Harbour / Modern Australia Cityscape */
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), 
                url('https://images.pexels.com/photos/1878293/pexels-photo-1878293.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 80vh !important;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shared Back Button Styling (Reactive) */
.btn-back {
    font-weight: 600;
    color: #facc15 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 2px solid #facc15;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 0.85rem;
}

.btn-back:hover {
    background: #facc15;
    color: #0f172a !important;
    transform: translateX(-5px);
}

/* Form Container left-alignment for regional pages */
.form-container {
    margin: 0 auto 0 0; 
    max-width: 600px;
    text-align: left;
}
/* --- UK Landing Page Specifics --- */
.uk-hero {
    /* High-res London Skyline / Tower Bridge area */
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), 
                url('https://images.pexels.com/photos/460672/pexels-photo-460672.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 80vh !important;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Back Button Styling (Shared across AU/DE/UK) */
.btn-back {
    font-weight: 600;
    color: #facc15 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 2px solid #facc15;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 0.85rem;
}

.btn-back:hover {
    background: #facc15;
    color: #0f172a !important;
    transform: translateX(-5px);
}

/* Form Container alignment */
.form-container {
    margin: 0 auto 0 0; 
    max-width: 600px;
    text-align: left;
}
/* --- US Landing Page Specifics --- */
.us-hero {
    /* High-res New York / Manhattan Skyline */
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), 
                url('https://images.pexels.com/photos/313782/pexels-photo-313782.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 80vh !important;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shared Back Button Styling (Unified for AU/DE/UK/US) */
.btn-back {
    font-weight: 600;
    color: #facc15 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 2px solid #facc15;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 0.85rem;
}

.btn-back:hover {
    background: #facc15;
    color: #0f172a !important;
    transform: translateX(-5px);
}

/* Form Container left-alignment */
.form-container {
    margin: 0 auto 0 0; 
    max-width: 600px;
    text-align: left;
}

/* --- Global Regions Grid --- */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.region-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.region-card i {
    font-size: 1.5rem;
    color: #facc15;
}

.region-card h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.region-card span {
    font-size: 0.8rem;
    color: #64748b;
}

/* Reactive Hover State */
.region-card:hover {
    transform: translateY(-5px);
    border-color: #facc15;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.region-card:hover h4 {
    color: #0f172a;
}

/* Pulsing Animation for WhatsApp */
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite; /* Added pulse */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    animation: none; /* Stops pulsing when the user hovers */
}

/* Allows the Google Translate bar to push the content down instead of overlapping */
body {
    top: 0px !important;
    position: static !important;
}

.goog-te-banner-frame.skiptranslate {
    display: block !important;
    visibility: visible !important;
}

/* Prevents the Google Translate bar from overlapping your sticky navbar */
body {
    top: 0px !important; 
    position: static !important;
}

/* Fixes potential white space at the top */
.skiptranslate {
    display: inline !important;
}

/* Optional: Hide the "Powered by Google" text for a cleaner look */
.goog-logo-link {
    display: none !important;
}
.goog-te-gadget {
    color: transparent !important;
}

/* --- Mobile Responsiveness (Global) --- */
@media (max-width: 768px) {
    /* Navbar: Stack links or hide them for better spacing */
    .navbar {
        padding: 1rem 5%;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Hero Sections: Adjust height and font size */
    .hero {
        height: 60vh !important;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem !important;
    }

    .hero p {
        font-size: 1rem !important;
        padding: 0 10px;
    }

    /* Left-Aligned Containers: Center them on mobile for better balance */
    .left-align-container {
        padding: 2rem 5% !important;
        text-align: center !important;
    }

    /* Regional Grid: Switch from 4 columns to 1 or 2 */
    .regions-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    /* Forms: Make them full width */
    .form-container {
        max-width: 100% !important;
        margin: 0 !important;
    }

    form {
        padding: 1.5rem !important;
    }

    /* Testimonials: Ensure they don't overflow */
    .testimonial-slide {
        padding: 1rem !important;
    }

    /* WhatsApp Button: Shrink slightly so it doesn't block content */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Extra Small Devices (Phones) */
@media (max-width: 480px) {
    .btn-back {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .logo {
        height: 40px;
    }
}

