/* ============================= */
/* 🎨 COLOR VARIABLES */
/* ============================= */
:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-orange: #f4731f;
    --color-orange-hover: #ff8a42;
    --color-gray-light: #f8f9fa;
    --color-text-dark: #333;
    --color-text-muted: #555;
    --color-accent-bg: #fff8f3;
}

/* ============================= */
/* ✍️ BASE TYPOGRAPHY & BODY */
/* ============================= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: var(--color-black);
    color: var(--color-text-dark);
}

h1, h2 {
    color: var(--color-black);
}

h2 {
    margin-top: 0;
    position: relative;
    text-transform: uppercase;
}

h2::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: var(--color-orange);
    position: absolute;
    left: -16px;
    top: 18px;
}

/* ============================= */
/* 📦 LAYOUT STRUCTURE */
/* ============================= */
main {
    background: var(--color-gray-light);
}

section {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    line-height: 1.6;
    animation: fadeIn 2s ease-in-out;
}

.hidden {
    position: absolute;
    top: -100000px;
    left: -10000px;
}

/* ============================= */
/* 🧭 HEADER */
/* ============================= */
header {
    color: var(--color-white);
    padding: 40px 0;
    text-align: center;
    background: var(--color-gray-light);
}

header .statement {
    background-color: var(--color-black);
    padding: 30px;
    font-size: 1.2em;
}

header img {
    max-height: 80px;
    display: block;
    margin: 0 auto 40px;
    max-width: 75%;
}

/* ============================= */
/* 📋 LISTS */
/* ============================= */
ul {
    padding-left: 20px;
    margin-top: 10px;
    list-style: none;
}

li::before {
    content: "✓";
    color: var(--color-orange);
    font-weight: bold;
    margin-right: 8px;
}

/* ============================= */
/* 🚀 CTA */
/* ============================= */
.cta {
    text-align: center;
    margin-top: 40px;
}

.cta a {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--color-orange);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta a:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
}

/* ============================= */
/* 🧩 SERVICES SECTION */
/* ============================= */
.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.service {
    flex: 1 1 calc(33% - 20px);
    background: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service h3 {
    color: var(--color-orange);
    margin: 15px 0 10px;
    font-size: 1.2em;
}

.service img {
    max-width: 120px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 6px;
}

.service ul {
    padding-left: 0;
    list-style: none;
    margin-top: 10px;
}

.service ul li {
    margin-bottom: 6px;
    font-size: 0.95em;
    color: var(--color-text-muted);
    text-align: left;
}

/* ============================= */
/* 🧠 CONSULTING SECTION */
/* ============================= */
.consulting {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    margin-top: 40px;
}

.consulting-icon {
    flex: 0 0 120px;
    text-align: center;
}

.consulting-icon img {
    max-width: 100px;
    height: auto;
    border-radius: 8px;
}

.consulting-content {
    flex: 1;
}

.consulting-content ul {
    padding-left: 0;
    margin-top: 15px;
}

.consulting-content li {
    margin-bottom: 8px;
    font-size: 0.95em;
    color: var(--color-text-muted);
    position: relative;
    padding-left: 20px;
}

.testimonial {
    margin-top: 25px;
    font-style: italic;
    background-color: var(--color-accent-bg);
    border-left: 4px solid var(--color-orange);
    padding: 15px 20px;
    border-radius: 6px;
    color: var(--color-text-dark);
}

/* ============================= */
/* 🧱 FOOTER */
/* ============================= */
footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 20px;
    margin-top: 50px;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

footer a {
    color: var(--color-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--color-orange-hover);
}

footer p {
    text-align: center;
    font-size: 0.9em;
    margin: 0;
}

/* ============================= */
/* 📱 RESPONSIVE DESIGN */
/* ============================= */
@media (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }

    .service {
        flex: 1 1 100%;
        max-width: 500px;
    }

    .service img {
        max-width: 100px;
    }
}

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