/* ============ LABORER USA WEBSITE - STYLESHEET ============ */
/* This CSS file contains all styling for the LABORER USA website */
/* Include this file in your HTML with: <link rel="stylesheet" href="styles.css"> */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

/* ============ HEADER & NAVIGATION ============ */
header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0052cc;
    letter-spacing: -0.5px;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0052cc;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #0052cc 0%, #0041a3 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.4);
}

/* ============ HERO SECTION ============ */
.hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0052cc;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-content .description {
    font-size: 1rem;
    color: #777;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ============ COLLAGE SECTION ============ */
.collage-section {
    padding: 2rem 0;
    background: #ffffff;
}

.collage-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.collage-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* ============ SERVICES OVERVIEW ============ */
.services-overview {
    padding: 6rem 2rem;
    background: #f8fbff;
}

.services-overview-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #3b5bdb;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 2px;
}

.services-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.services-columns-group {
    display: flex;
    gap: 4rem;
    flex: 1;
}

.services-image {
    flex: 1;
    max-width: 500px;
}

.service-preview-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #0052cc;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0052cc, #0041a3);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    margin-bottom: 3rem;
}

.services-column h3.service-title-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #4a6fa5;
    margin-bottom: 1.2rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.services-list-plain {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0;
}

.services-list-plain li {
    list-style: none;
    color: #4a6fa5;
    font-size: 1rem;
    font-weight: 400;
}

/* ============ FEATURED SERVICES ============ */
.featured-services {
    padding: 3rem 2rem;
    background: #f8fbff;
}

.featured-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-rows {
    display: flex;
    flex-direction: column;
}

.featured-row {
    display: grid;
    grid-template-columns: 350px 1fr;
    padding: 3rem 0;
    border-top: 1px solid #d0e4ff;
    align-items: flex-start;
}

.featured-row:last-child {
    border-bottom: 1px solid #d0e4ff;
}

.row-title {
    font-size: 2rem;
    font-weight: 600;
    color: #3b5bdb;
    margin: 0;
}

.row-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4c6ef5;
    margin-bottom: 0.8rem;
}

.row-description {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
    max-width: 500px;
    color: #4a6fa5;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0052cc 0%, #0041a3 100%);
    color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.contact-item-value {
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.8;
}

/* ============ FOOTER ============ */
footer {
    background: #1a2332;
    color: #aaa;
    padding: 3rem 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0052cc;
    margin-bottom: 1rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0052cc;
}

.footer-credit {
    color: #777;
    font-size: 0.85rem;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .collage-container {
        padding: 0 1rem;
    }

    .services-main-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .services-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .services-columns-group {
        flex-direction: column;
        gap: 2rem;
    }

    .services-image {
        max-width: 100%;
    }

    nav {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-image img {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-row {
        grid-template-columns: 1fr;
        padding: 2rem 0;
        gap: 1rem;
    }

    .row-title {
        font-size: 1.6rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .section-title,
    .featured-title {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    nav {
        display: none;
    }

    .header-container {
        justify-content: space-between;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title,
    .featured-title {
        font-size: 1.6rem;
    }

    .service-card-title {
        font-size: 1.1rem;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-item-value {
        font-size: 1.1rem;
    }
}

/* ============ SMOOTH ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.featured-grid {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
