/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    height: 100%;
    background-color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 20;
    color: white;
}

.logo {
    font-weight: 700;
    font-size: 1.8rem;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.services-link:hover {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text x='0' y='20' font-size='20'>🔧</text><text x='12' y='28' font-size='16'>⚙️</text></svg>") 0 0, pointer;
}

.team-link:hover, .careers-link:hover {
    cursor: pointer;
}

.contact-link:hover {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'><text x='0' y='24' font-size='24'>✉️</text></svg>") 0 0, pointer;
}

.cta-btn {
    background-color: #e63946;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #c1121f;
}

/* Banner */
.banner {
    height: 70vh;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    /* Default background for index.html and others if not overridden */
    background-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.15)
    ), url('banner.png');
    background-size: cover;
    background-position: center;
}

/* Banner with Blur (About, Careers) */
.banner.banner-blur {
    background-image: none; /* Remove default bg */
}

.banner.banner-blur::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.15)
    ), url('banner.png');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1.1);
    z-index: -1;
}

/* Small Banner (Services) */
.banner.banner-small {
    height: 50vh;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 60px;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Content */
.content {
    margin-top: 70vh;
    background-color: white;
    padding: 50px 20px 0px 0px;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.1);
}

.content.content-small-banner {
    margin-top: 50vh;
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Process Section */
.process-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}
.process-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}
.process-icon {
    font-size: 3rem;
    color: #e63946;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Animations */
@keyframes drive {
    0% { transform: translateX(-20px); }
    50% { transform: translateX(20px); }
    100% { transform: translateX(-20px); }
}
@keyframes load {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
@keyframes unload {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.fa-truck-fast {
    animation: drive 3s infinite ease-in-out;
}
.fa-dolly {
    animation: load 2s infinite ease-in-out;
}
.fa-box-open {
    animation: unload 2.5s infinite ease-in-out;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 50px;
}

.social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    min-width: 260px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    border-radius: 5px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    margin-top: 10px;
}

.dropdown-content::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.dropdown-content a {
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    text-align: left;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #333;
    opacity: 1;
}

.services-dropdown .dropdown-content a {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px 20px;
}

.services-dropdown .dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 25px;
}

.services-dropdown .dropdown-content a i {
    margin-right: 12px;
    color: #e63946;
    width: 20px;
    text-align: center;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    animation: animatetop 0.4s;
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Forms */
.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
}
.required-asterisk {
    color: red;
}
input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
}

button:disabled {
    background-color: #ccc !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

#form-status {
    margin-top: 10px;
    font-weight: bold;
    text-align: center;
}
.success { color: green; }
.error { color: red; }

/* Responsive */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 3rem;
    }
    .navbar {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }
}

/* Index Page Specifics */
.value-proposition-section, .services-overview-section, .why-choose-us-section {
    margin: 80px 0;
    text-align: center;
}

.value-grid, .services-grid, .reasons-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.value-item, .service-card, .reason-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.value-item:hover, .service-card:hover, .reason-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 15px;
}

.service-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
}

.reason-item {
    border-left: 4px solid #e63946;
    text-align: left;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.map-section {
    margin: 80px auto;
    max-width: 1000px;
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease-in-out;
}

.map-section.visible {
    opacity: 1;
    transform: scale(1);
}

.map-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Services Page Specifics */
.services-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.service-item:hover {
    background-color: #f9f9f9;
}

.service-icon {
    font-size: 2rem;
    color: #e63946;
    margin-right: 20px;
    width: 50px;
    text-align: center;
}

.service-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.service-text p {
    margin: 0;
    color: #666;
}

/* About/Careers Page Banner with Blur */
.banner.banner-blur {
    background-image: none;
}

.banner.banner-blur::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.15)
    ), url('banner.png');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transform: scale(1.1);
    z-index: -1;
}

/* Immigration Support Section */
.immigration-support {
    background-color: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.immigration-support h2 {
    color: #333;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.support-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.support-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.support-item i {
    font-size: 3rem;
    color: #e63946;
    margin-bottom: 25px;
}

.support-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.support-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Hero Subheadline */
.hero-subheadline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}
