/* ===========================
   CSS VARIABLES & RESET
   =========================== */
:root {
    --primary-color: #ff2500;
    --primary-dark: #cc1e00;
    --primary-light: #ff5233;
    --secondary-color: #161317;
    --text-dark: #161317;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #1a1a1a;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Marcellus', serif;
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   NAVIGATION BAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.logo-accent {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 37, 0, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(22, 19, 23, 0.85), rgba(255, 37, 0, 0.15)),
                url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(22, 19, 23, 0.4), rgba(22, 19, 23, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 37, 0, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--bg-white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.accent-text {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 37, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background: var(--bg-white);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--bg-white);
    border-radius: 50px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--bg-white);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ===========================
   SECTIONS COMMON STYLES
   =========================== */
.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Marcellus', serif;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.about-image .image-placeholder {
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.image-placeholder i {
    font-size: 5rem;
    opacity: 0.3;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff, #fff9f8);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--primary-color);
    margin-top: 3px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 1rem;
}

/* ===========================
   SUPPORT SECTION
   =========================== */
.support-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.support-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.support-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.support-list {
    list-style: none;
    margin-bottom: 2rem;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.support-list li:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transform: translateX(10px);
}

.support-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.support-image .image-placeholder {
    height: 500px;
    background: linear-gradient(135deg, var(--secondary-color), var(--text-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

/* ===========================
   PROCESS SECTION
   =========================== */
.process-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-size: 4rem;
    font-family: 'Marcellus', serif;
    color: var(--primary-color);
    opacity: 0.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--text-dark));
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.footer-tagline {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.copyright {
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-bottom-links span {
    opacity: 0.5;
}

/* ===========================
   SCROLL TO TOP BUTTON
   =========================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 37, 0, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .about-content,
    .support-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image,
    .support-image {
        order: -1;
    }

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

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

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .about-image .image-placeholder,
    .support-image .image-placeholder {
        height: 350px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-card,
    .process-step {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* ===========================
   ABOUT PAGE STYLES
   =========================== */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, rgba(22, 19, 23, 0.85), rgba(255, 37, 0, 0.25)),
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80') center/cover;
}

.page-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    position: relative;
    padding-top: 80px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Intro Section */
.about-intro-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.bbee-badge {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2.5rem;
    border-left: 4px solid var(--primary-color);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 1.8rem;
    color: var(--bg-white);
}

.badge-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.badge-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.about-intro-image .image-placeholder {
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

/* Purpose Section */
.purpose-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.purpose-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.purpose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.purpose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.purpose-icon i {
    font-size: 2.2rem;
    color: var(--bg-white);
}

.purpose-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.purpose-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image .image-placeholder {
    height: 550px;
    background: linear-gradient(135deg, var(--secondary-color), var(--text-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mission-statement {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mission-list {
    list-style: none;
    margin-top: 2rem;
}

.mission-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.mission-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.mission-list strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.mission-list span {
    color: var(--text-light);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleY(1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-number {
    font-size: 3rem;
    font-family: 'Marcellus', serif;
    color: var(--primary-color);
    opacity: 0.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.why-choose-text > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-feature {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.why-feature:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--bg-white);
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.why-choose-image .image-placeholder {
    height: 500px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

/* About Page Responsive */
@media (max-width: 992px) {
    .page-hero-content h1 {
        font-size: 2.8rem;
    }

    .about-intro-content,
    .mission-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-intro-image,
    .mission-image,
    .why-choose-image {
        order: -1;
    }

    .about-intro-image .image-placeholder,
    .mission-image .image-placeholder,
    .why-choose-image .image-placeholder {
        height: 400px;
    }

    .purpose-grid,
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
    }

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

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

    .about-intro-text h2,
    .mission-text h2,
    .why-choose-text h2 {
        font-size: 2rem;
    }

    .purpose-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .bbee-badge {
        flex-direction: column;
        text-align: center;
    }

    .why-feature {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    .purpose-card,
    .value-card {
        padding: 2rem 1.5rem;
    }

    .value-number {
        font-size: 2.5rem;
    }
}

/* ===================================
   SERVICES PAGE STYLES
   =================================== */

.services-hero {
    background: linear-gradient(135deg, rgba(22, 19, 23, 0.85), rgba(255, 37, 0, 0.25)),
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1920&q=80') center/cover;
}

/* Services Intro Section */
.services-intro-section {
    padding: 5rem 0 3rem;
    background: var(--bg-light);
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-header.centered p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Main Services Section */
.services-main-section {
    padding: 4rem 0 6rem;
    background: var(--bg-white);
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card-large {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large i {
    font-size: 2rem;
    color: white;
}

.service-card-header h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 0.5rem 0 0 0;
    line-height: 1.3;
}

.service-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-card-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.service-card-footer .btn {
    width: 100%;
    text-align: center;
}

/* Service Process Section */
.service-process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(22, 19, 23, 0.97), rgba(255, 37, 0, 0.1));
    color: white;
}

.service-process-section .section-header {
    margin-bottom: 4rem;
}

.service-process-section .section-label {
    color: var(--primary-light);
}

.service-process-section h2 {
    color: white;
}

.service-process-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 37, 0, 0.3);
}

.process-content h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.process-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.7;
    font-size: 1rem;
}

/* Target Clients Section */
.target-clients-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.target-clients-section .section-header {
    margin-bottom: 3rem;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.target-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.target-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 37, 0, 0.3);
}

.target-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 37, 0, 0.1), rgba(255, 37, 0, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.target-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.target-card h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.target-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.target-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.target-benefits li {
    padding: 0.75rem 0 0.75rem 1.75rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.target-benefits li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.75rem;
    top: 0.95rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background: white;
}

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

.philosophy-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.philosophy-text h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: var(--bg-light);
    transition: var(--transition);
}

.philosophy-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.philosophy-icon i {
    font-size: 1.5rem;
    color: white;
}

.philosophy-item h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.philosophy-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Services Page Responsive */
@media (max-width: 992px) {
    .services-grid-main {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

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

    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-intro-section {
        padding: 3rem 0 2rem;
    }

    .services-main-section {
        padding: 3rem 0 4rem;
    }

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

    .service-card-large {
        padding: 2rem;
    }

    .service-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-card-header h3 {
        font-size: 1.4rem;
    }

    .service-process-section {
        padding: 4rem 0;
    }

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

    .target-clients-section,
    .philosophy-section {
        padding: 4rem 0;
    }

    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-card-large {
        padding: 1.5rem;
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
    }

    .service-icon-large i {
        font-size: 1.75rem;
    }

    .process-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

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

    .target-card {
        padding: 2rem 1.5rem;
    }

    .philosophy-text h2 {
        font-size: 1.8rem;
    }
}

/* ============================================
   BUSINESS SUPPORT PAGE STYLES
   ============================================ */

.support-hero {
    background: linear-gradient(135deg, rgba(22, 19, 23, 0.95), rgba(255, 37, 0, 0.85)),
                url('images/business-support-bg.jpg') center/cover;
    min-height: 60vh;
}

.support-intro-section {
    padding: 6rem 0 4rem;
    background: white;
}

.support-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.support-intro-content h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.support-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.support-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.support-categories-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white, var(--light-gray));
}

.support-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.support-category-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.support-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.support-category-card.featured {
    border-color: var(--primary-red);
    background: linear-gradient(to bottom, white, rgba(255, 37, 0, 0.02));
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), #ff4520);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.category-header h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    color: var(--primary-black);
    margin: 0;
}

.support-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-services-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.support-services-list li:last-child {
    border-bottom: none;
}

.support-services-list i {
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.support-services-list span {
    color: var(--text-muted);
    line-height: 1.6;
}

.why-support-section {
    padding: 6rem 0;
    background: white;
}

.why-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-support-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.why-support-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), #ff4520);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.why-content h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.why-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.support-process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(22, 19, 23, 0.97), rgba(255, 37, 0, 0.1));
    color: white;
}

.support-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.support-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.support-step:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1.5rem;
}

.support-step h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.support-step p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
}

.support-cta-section {
    padding: 6rem 0;
    background: white;
}

.support-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.support-cta-content h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.support-cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
}

/* Responsive styles for business support page */
@media (max-width: 992px) {
    .support-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .support-intro-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .support-hero {
        min-height: 50vh;
    }

    .support-intro-section {
        padding: 4rem 0 3rem;
    }

    .support-categories-section,
    .why-support-section,
    .support-process-section,
    .support-cta-section {
        padding: 4rem 0;
    }

    .support-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .support-category-card {
        padding: 2rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .why-support-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .support-cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .support-intro-content h2 {
        font-size: 1.6rem;
    }

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

    .support-categories-grid {
        grid-template-columns: 1fr;
    }

    .support-process-steps {
        grid-template-columns: 1fr;
    }

    .support-cta-content h2 {
        font-size: 1.8rem;
    }
}
