/* ===== SERVICES PAGE — BISCUIT PALETTE (#DFBC94 + white + black) ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --biscuit: #DFBC94;
    --biscuit-dark: #c4a07a;
    --biscuit-light: #f0e0cc;
    --charcoal-soft: #1e1e1e;
    --off-white: #ffffff;
    --warm-sand: #f5ede3;
    --deep-umber: #3d2c1e;
    --text-secondary: #2c2c2c;
    --accent-gradient: linear-gradient(135deg, #DFBC94 0%, #c4a07a 100%);
    --border-organic: rgba(223, 188, 148, 0.35);
    --shadow-elevated: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: var(--charcoal-soft);
    width: 100%;
    position: relative;
}

/* ----- African-inspired backdrop: subtle woven & dotted motifs (biscuit tones) ----- */
.african-heritage-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(223, 188, 148, 0.04) 0px, rgba(223, 188, 148, 0.04) 1px, transparent 1px, transparent 12px),
        repeating-linear-gradient(135deg, rgba(223, 188, 148, 0.04) 0px, rgba(223, 188, 148, 0.04) 2px, transparent 2px, transparent 16px);
}

.african-heritage-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120" opacity="0.10"><path fill="none" stroke="%23DFBC94" stroke-width="1.2" d="M25,30 L35,20 L45,30 L40,45 L25,45 L18,35 L25,30Z M85,80 L95,72 L102,82 L94,92 L82,88 L85,80Z M60,55 L70,48 L78,58 L70,68 L58,66 L60,55Z M15,85 L24,78 L32,86 L26,94 L16,92 L15,85Z M100,20 L108,26 L104,36 L94,32 L96,22 L100,20Z"/><path d="M50,90 L58,84 L66,90 L60,98 L52,96 L50,90Z" fill="%23DFBC94" opacity="0.2"/><circle cx="78" cy="35" r="3.5" stroke="%23DFBC94" stroke-width="1" fill="none"/><path d="M22,62 L30,56 L38,62 L32,70 L24,68 L22,62Z" fill="none" stroke="%23DFBC94" stroke-width="0.9"/></svg>');
    background-repeat: repeat;
    background-size: 48px;
    mix-blend-mode: multiply;
    opacity: 0.20;
}

/* SECTION BASE */
.services {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    color: var(--charcoal-soft);
    margin-left: 0px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    margin-left: -15px;
}

/* TYPOGRAPHY & HEADER */
.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    font-family: 'Cormorant Garamond', serif;
    color: var(--charcoal-soft);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    padding-top: 100px;
}

.section-subtitle {
    text-align: center;
    color: var(--deep-umber);
    max-width: 700px;
    margin: 0 auto 60px auto;
    font-size: 18px;
    line-height: 1.6;
}

/* FEATURED CARD */
.featured-card {
    background: var(--charcoal-soft);
    padding: 50px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.featured-card h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 15px;
}

.featured-card p {
    color: var(--warm-sand);
    font-size: 17px;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
}

/* GRID CONTROLLER */
.boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* REFINED CARDS — BISCUIT BORDERS */
.box {
    background: #ffffff;
    border: 2px solid #DFBC94;
    border-radius: 20px;
    padding: 1.75rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(223, 188, 148, 0.06) 0%, transparent 100%);
    transition: var(--transition);
}

.box:hover {
    transform: translateY(-5px);
    background-color: #f5ede3;
    border-color: #c4a07a;
    color: #1e1e1e;
    box-shadow: 0 12px 24px rgba(223, 188, 148, 0.15);
}

/* CARD HEADINGS & ICONS */
.heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.heading img {
    width: 48px;
    height: 48px;
    padding: 10px;
    background: var(--warm-sand);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.box:hover .heading img {
    background: var(--biscuit-light);
}

.box h2 {
    font-size: 21px;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: var(--biscuit-dark);
    margin: 0;
}

.box p {
    margin: 0;
    color: var(--charcoal-soft);
    line-height: 1.65;
    font-size: 15px;
}

/* CLEAN PURPOSEFUL BUTTON — BISCUIT GRADIENT */
.cta-btn {
    display: inline-block;
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(223, 188, 148, 0.3);
}

.cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(223, 188, 148, 0.4);
}

/* INTENTIONAL CONTENT WIDE STRIP — BISCUIT LIGHT BACKGROUND */
.wide {
    grid-column: span 2;
    background: var(--warm-sand);
    border: 2px solid var(--border-organic);
    border-radius: 20px;
    padding: 45px;
    text-align: center;
}

.wide h1 {
    font-size: 26px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--biscuit-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.wide p {
    color: var(--charcoal-soft);
    font-size: 16px;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== FOOTER (Biscuit theme) ===== */
.footer {
    background: var(--charcoal-soft);
    color: #ffffff;
    padding: 3rem 0 1rem 0;
    border-top: 4px solid var(--biscuit);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: var(--biscuit);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 280px;
}

.footer-links h5,
.footer-contact h5,
.footer-direct h5 {
    color: var(--biscuit);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--biscuit);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--biscuit);
}

.contact-item .material-symbols-outlined {
    font-size: 1.2rem;
    color: var(--biscuit);
}

.direct-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-top: 0.5rem;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.phone-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
}

.phone-item a:hover {
    color: var(--biscuit);
}

.phone-item .material-symbols-outlined {
    color: var(--biscuit);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    font-size: 0.75rem;
    opacity: 0.5;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-accent {
    height: 4px;
    background: var(--biscuit);
    width: 100%;
    margin-top: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .boxes {
        grid-template-columns: 1fr;
    }

    .wide {
        grid-column: span 1;
    }

    .featured-card p {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 390px;
        margin-left: -20px;
    }
    .services {
        padding: 50px 0px;
    }

    .featured-card {
        padding: 35px 25px;
    }

    .section-title {
        font-size: 30px;
    }

    .featured-card h2 {
        font-size: 24px;
    }
}