/* ================= GLOBAL ================= */
.ca-hero,
.ca-section,
.ca-grid-section,
.ca-cta {
    background: #000;
    color: #fff;
}

/* ================= HERO ================= */
.ca-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
}

.ca-hero h1 {
    font-size: 46px;
    font-weight: 700;
}

.ca-hero span {
    color: #ff0000;
}

.ca-hero p {
    margin-top: 15px;
    color: #ccc;
    font-size: 18px;
}

/* ================= SECTIONS ================= */
.ca-section {
    padding: 80px 10%;
    text-align: center;
}

.ca-section h2,
.ca-grid-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.ca-section span,
.ca-grid-section span {
    color: #ff0000;
}

.ca-section p {
    max-width: 900px;
    margin: auto;
    color: #ccc;
    line-height: 1.8;
}

/* ================= GRID SECTIONS ================= */
.ca-grid-section {
    padding: 80px 10%;
    text-align: center;
}

.ca-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ca-box {
    background: #111;
    border: 1px solid #222;
    padding: 35px 25px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.ca-box:hover {
    transform: translateY(-6px);
    border-color: #ff0000;
}

.ca-box i {
    font-size: 32px;
    color: #ff0000;
    margin-bottom: 15px;
}

.ca-box h3 {
    margin-bottom: 8px;
}

.ca-box p {
    color: #ccc;
    font-size: 15px;
}

/* ================= LIST ================= */
.ca-list {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

.ca-list li {
    font-size: 18px;
    margin: 14px 0;
    color: #ccc;
}

/* ================= CTA ================= */
.ca-cta {
    padding: 80px 10%;
    text-align: center;
    border-top: 1px solid #222;
}

.ca-cta h2 span {
    color: #ff0000;
}

.ca-cta p {
    margin: 15px 0 25px;
    color: #ccc;
}

.ca-cta .btn {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.ca-cta .btn:hover {
    background: #cc0000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .ca-hero h1 {
        font-size: 34px;
    }

    .ca-section h2,
    .ca-grid-section h2 {
        font-size: 28px;
    }

    .ca-section,
    .ca-grid-section,
    .ca-cta {
        padding: 60px 6%;
    }
}

/* SIMPLE NAVBAR FOR CONTACT PAGE 
.simple-nav {
    width: 100%;
    height: 70px;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-link {
    text-decoration: none;
}

.simple-nav .logo {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
}

.simple-nav .logo .red {
    color: #ff0000;
}

.contact-hero {
    padding-top: 70px;
}*/
