/* ------------------------------
   🔵 Firefly Immigration - Custom CSS (Landing Page Style)
   ------------------------------ */

/* 🌍 Global Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

section {
    padding: 80px 20px;
    text-align: center;
}

h2 {
    font-size: 2.2rem;
    color: #002855;
    margin-bottom: 20px;
}

p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
}

/* 🏠 Header Styling */
header {
    background-color: #002855;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

header p {
    color: #ffffff;
    font-size: 1.2rem;
}

/* 🔗 Navigation */
nav {
    display: flex;
    justify-content: center;
    background: #004080;
    flex-wrap: wrap;
    padding: 10px 0;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
}

nav a:hover {
    background: #FFD700;
    color: #002855;
    border-radius: 5px;
}

/* 📌 Section Backgrounds */
#work-permits {
    background-color: #ffffff;
}

#family-sponsorship {
    background-color: #f1f5fb;
}

#express-entry {
    background-color: #ffffff;
}

#inadmissibility {
    background-color: #f1f5fb;
}

/* 🔘 Call to Action & Buttons */
.call-to-action {
    background: linear-gradient(to right, #002855, #004080);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
}

.call-to-action h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.call-to-action a {
    display: inline-block;
    background: #FFD700;
    color: #002855;
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
}

.call-to-action a:hover {
    background: white;
    color: #004080;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* 📅 Booking Section */
#booking {
    background-color: #ffffff;
    text-align: center;
}

iframe.booking-calendar {
    width: 100%;
    max-width: 800px;
    height: 600px;
    border: none;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* 📄 Forms */
input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input:focus, textarea:focus {
    border-color: #004080;
    outline: none;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    nav {
        flex-direction: column;
    }

    h2 {
        font-size: 1.6rem;
    }

    .call-to-action {
        padding: 40px 15px;
    }

    iframe.booking-calendar {
        height: 500px;
    }
}
