/* ================= HOME PAGE ================= */

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HERO ================= */
.hero {
    background: #000;
}

.hero-bg {
    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
        url("https://images.unsplash.com/photo-1501183638710-841dd1904471") center/cover no-repeat;
    padding: 120px 0;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 18px;
    max-width: 820px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--primary-teal);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

/* ================= SECTIONS ================= */
section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

/* ================= COMPANIES ================= */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.company-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.company-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0,0,0,.12);
}

.company-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.company-card .content {
    padding: 22px;
}

.company-card h3 {
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.company-card p {
    font-size: 15px;
    margin-bottom: 12px;
}

.divisions {
    padding-left: 18px;
    font-size: 14px;
}

.divisions li {
    margin-bottom: 6px;
}

/* ================= CONTACT ================= */
#contact p {
    font-size: 16px;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    section {
        padding: 50px 0;
    }
}
