/* Variables for easy color/font management - REMOVED */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif; /* Replaced var(--font-family) */
    line-height: 1.6;
    color: #f0f0f0; /* Replaced var(--text-light) */
    background:url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQNE7bkHYJ7LHE77g9ABWI-ZZXR-BBFw9Tpog&s);
	background-size:100% 15%;
	background-repeat:no-repeat;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
}

h1, h2, h3, h4 {
    color: #f0f0f0; /* Replaced var(--text-light) */
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: #ff6600; /* Replaced var(--primary-color) */
    transition: color 0.3s;
}

ul {
    list-style: none;
}

button, .btn-primary-form {
    cursor: pointer;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-weight: bold;
}


.btn-dark-outline {
    background-color: transparent;
    color: #f0f0f0; /* Replaced var(--text-light) */
    border: 2px solid #f0f0f0; /* Replaced var(--text-light) */
    padding: 12px 30px;
    border-radius: 5px;
    display: inline-block;
}
.btn-dark-outline:hover {
    background-color: #ff6600; /* Replaced var(--primary-color) */
    border-color: #ff6600; /* Replaced var(--primary-color) */
    color: #1a1a1a; /* Replaced var(--bg-dark) */
}
.btn-primary-small {
    background-color: #ff6600; /* Replaced var(--primary-color) */
    color: #1a1a1a; /* Replaced var(--bg-dark) */
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

/* --- 1. Header (Flexbox) --- */
.header-top-bar {
    background-color: #111;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #444444; /* Replaced var(--border-color-dark) */
}

.header-top-bar .container {
    padding: 0;
    /* FLEXBOX: Top bar content arrangement */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-bar .actions {
    /* FLEXBOX: Right side actions */
    display: flex;
    gap: 20px;
    align-items: center;
}
.header-top-bar a {
    color: #ff6600; /* Replaced var(--primary-color) */
}
.header-top-bar .fas {
    color: #f0f0f0; /* Replaced var(--text-light) */
}

.main-header {
    background-color: #1a1a1a; /* Replaced var(--bg-dark) */
}

.main-header .container {
    padding: 10px 0;
    /* FLEXBOX: Logo and Main Nav arrangement */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6600; /* Replaced var(--primary-color) */
}

.main-nav ul {
    /* FLEXBOX: Navigation links */
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #f0f0f0; /* Replaced var(--text-light) */
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}
.main-nav a:hover {
    color: #ff6600; /* Replaced var(--primary-color) */
}

/* --- 2. Hero Section (Flexbox) --- */
.hero-section {
    background-image: url('placeholder-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0 50px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.hero-content-wrapper {
    position: relative;
    /* FLEXBOX: Main content and form card side-by-side */
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff; /* Replaced var(--bg-white) */
    color: #333333; /* Replaced var(--text-dark) */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* Set width explicitly to maintain size */
    width: 350px; 
    flex-shrink: 0; 
    text-align: center;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6600; /* Replaced var(--primary-color) */
    margin-top: -70px;
}

.name-title h4 {
    color: #333333; /* Replaced var(--text-dark) */
    margin-top: 10px;
}
.name-title p {
    color: black;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-form-card form input,
.contact-form-card form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Arial', sans-serif; /* Replaced var(--font-family) */
    outline: none;
    color: #333333; /* Replaced var(--text-dark) */
}

.btn-primary-form {
    background-color: #ff6600; /* Replaced var(--primary-color) */
    color: #1a1a1a; /* Replaced var(--bg-dark) */
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 5px;
}
.btn-primary-form:hover {
    background-color: #cc5500;
}

.privacy-note {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

/* --- 3. Logo Slider/Partners Section (Flexbox) --- */
.partners-section {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #444444; /* Replaced var(--border-color-dark) */
}

.partners-tagline {
    text-align: center;
    color: #999;
    margin-bottom: 20px;
}

.logo-grid {
    /* FLEXBOX: Arranging partner logos */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo {
    font-size: 24px;
    font-weight: bold;
    color:black;
    opacity: 0.6;
}

/* --- 4. Success & Experience Section (Flexbox) --- */
.success-section {
    background-color:#EDEDED;
	color:black;
    padding: 80px 0;
}

.success-grid {
    /* FLEXBOX: Two-column layout */
    display: flex;
    gap: 50px;
	color:black;
    align-items: center;
}

.image-half {
    flex: 1; /* Allows it to take up available space */
	color:black;
    position: relative;
    background-image: url('placeholder-success.jpg');
    background-size: cover;
    background-position: center;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.quote-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    color: #f0f0f0; /* Replaced var(--text-light) */
    font-style: italic;
}
.quote-box .author {
    margin-top: 10px;
    font-weight: bold;
    color: #ff6600; /* Replaced var(--primary-color) */
}

.content-half {
	color:black;
    flex: 1; /* Allows it to take up available space */
}

.content-half h2 {
	color:black;
    font-size: 36px;
    margin-bottom: 30px;
}

.success-points .point {
    margin-bottom: 25px;
}

.success-points h3 {
    font-size: 20px;
    color: black;
    margin-bottom: 5px;
}

.success-points .fas {
    color: black;
    margin-right: 10px;
}

/* --- 5. Our Professional Services (Flexbox) --- */
.services-section {
    padding: 80px 0;
    background-color: white;
}

.section-header {
    /* FLEXBOX: Header content arrangement */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
	color:black;
    font-size: 32px;
}

.view-all-link {
    color: black;
    font-weight: bold;
}
.view-all-link .fas {
    color: #ff6600; /* Replaced var(--primary-color) */
    margin-right: 5px;
}
.view-all-link:hover {
    color: #ff6600; /* Replaced var(--primary-color) */
}

.service-cards-grid {
    /* FLEXBOX: Simulating the 5-column grid using flex-wrap */
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    min-height: 250px;
    justify-content: space-between;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: #333333; /* Replaced var(--secondary-color) */
    position: relative;
    padding: 20px;
    /* FLEXBOX: Align content inside the card */
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
    
    /* Flexbox approximation of 5 equal-width columns */
    flex: 1 1 180px; /* Base width for 5 in a row, allows growing/shrinking */
    height: 250px;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Specific card layouts/images */
.service-card.strategic {
    background-color: #ff6600; /* Replaced var(--primary-color) */
}
.service-card.data-analysis {
    background-image: url('placeholder-data-analysis.jpg');
}
.service-card.financial {
    background-color: #ff6600; /* Replaced var(--primary-color) */
}
.service-card.reports {
    background-image: url('placeholder-reports.jpg');
}
.service-card.marketing {
    background-image: url('placeholder-marketing.jpg');
}

.service-card h3 {
    font-size: 18px;
    color: #f0f0f0; /* Replaced var(--text-light) */
}
.service-card.strategic h3, .service-card.financial h3 {
    color: #1a1a1a; /* Replaced var(--bg-dark) */
}

/* --- 6. About Us Summary Section (Flexbox) --- */
.about-us-summary {
    background-color:white;
    padding: 80px 0;
    text-align: center;
}

.about-content h2 {
    font-size: 48px;
	color:black;
    margin-bottom: 50px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.stats-grid {
    /* FLEXBOX: Centered stats list */
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 40px;
    font-weight: bold;
    color: #ff6600; /* Replaced var(--primary-color) */
    display: block;
    margin-bottom: 5px;
}
.stats-grid p {
    color: #333333; /* Used dark text for white background */
}

/* --- 7. Keeping the Amazing Work Section (Flexbox) --- */
.amazing-work-section {
    padding: 80px 0;
    background-color:#1a1a1a; /* Replaced var(--bg-dark) */
}

.amazing-work-grid {
    /* FLEXBOX: Simulating the three-part layout (Text, Small image, Large image) */
    display: flex;
    flex-direction: row; 
    gap: 30px;
    min-height: 450px;
}
/* Approximate the 1fr 0.5fr 1fr grid with flex properties */
.text-content {
    background-color:black;
    border-radius: 8px;
    padding: 30px;
    /* FLEXBOX: Align content within text card */
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 30%; /* Base for first column */
}
.text-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
/* We use a nested flex container for the two images to maintain their relative sizes */
.image-wrapper {
    display: flex;
    flex-direction: row;
    flex: 1 1 60%;
    gap: 30px;
}
.image-card-small {
    background-image: url('placeholder-document.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    flex: 0.5 1 20%; /* Smaller image */
}
.image-card-large {
    background-image: url('placeholder-graph.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    flex: 1 1 70%; /* Larger image */
}


/* --- 8. Skills That Make for your Business (Flexbox) --- */
.skills-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Replaced var(--bg-dark) */
}

.skills-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}
.skills-section > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.skills-bar-container {
    max-width: 800px;
    margin: 0 auto;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-item p {
    font-weight: bold;
    margin-bottom: 5px;
    color: #f0f0f0; /* Replaced var(--text-light) */
}

.bar-bg {
    background-color: #1a1a1a; /* Replaced var(--bg-dark) */
    height: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    background-color: #ff6600; /* Replaced var(--primary-color) */
    height: 100%;
    color: #1a1a1a; /* Replaced var(--bg-dark) */
    /* FLEXBOX: Align percentage text */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-weight: bold;
}

/* --- 9. Professional Consultants/Team Section (Flexbox) --- */
.team-section {
    padding: 80px 0;
    background-color: white;
}

.team-grid {
    /* FLEXBOX: Simulating a 5-column grid using flex-wrap */
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.team-grid h2 {
    /* To make the H2 span the whole row */
    width: 100%;
    font-size: 32px;
	color:black;
    margin-bottom: 30px;
}

.consultant-card {
    text-align: center;
    background-color: #333333; /* Replaced var(--secondary-color) */
    padding: 20px;
    border-radius: 8px;
    /* Flexbox approximation of 5 equal columns */
    flex: 1 1 180px; 
    max-width: calc(20% - 24px); /* For better control on wider screens */
}

.consultant-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.consultant-card h4 {
    color: #f0f0f0; /* Replaced var(--text-light) */
    margin-bottom: 5px;
}

.consultant-card p {
    color: #ccc;
    font-size: 14px;
}

.ratings {
    color: #ff6600; /* Replaced var(--primary-color) */
    margin-top: 10px;
}

/* --- 10. Latest News/Articles Section (Flexbox) --- */
.news-section {
	
    padding: 80px 0;
    background-color:white;
}

.news-grid {
    /* FLEXBOX: Simulating the 2fr 1fr 1fr grid */
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.news-card-featured {
    /* Featured card is 2x wider */
    flex: 2 1 400px;
    background: #1a1a1a; /* Replaced var(--bg-dark) */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.news-card-featured img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.news-card-featured .date-tag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ff6600; /* Replaced var(--primary-color) */
    color: #1a1a1a; /* Replaced var(--bg-dark) */
    font-size: 36px;
    font-weight: bold;
    padding: 15px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.news-card-featured .content {
    padding: 25px;
}

.news-card-small {
    /* Small cards are 1x width */
    flex: 1 1 200px;
    background: #1a1a1a; /* Replaced var(--bg-dark) */
    border-radius: 8px;
    padding: 25px;
}

.news-card-small h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.news-card-small p {
    margin-bottom: 15px;
}

/* --- 11. Footer (Flexbox) --- */
footer {
    background-color: #1a1a1a; /* Replaced var(--bg-dark) */
    padding-top: 50px;
}

.main-footer-grid {
    /* FLEXBOX: Simulating the 4-column layout (2fr 1.5fr 1.5fr 2fr) */
    display: flex;
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid #444444; /* Replaced var(--border-color-dark) */
    flex-wrap: wrap; /* Important for responsiveness */
}

.footer-col.about {
    flex: 2 1 300px; /* Takes a larger share */
}
.footer-col.links {
    flex: 1.5 1 200px; 
}
.footer-col.info {
    flex: 1.5 1 200px; 
}
.footer-col.subscribe {
    flex: 2 1 300px; /* Takes a larger share */
}


.footer-col h4 {
    color: #f0f0f0; /* Replaced var(--text-light) */
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col.about .logo {
    margin-bottom: 15px;
}

.footer-col.about p {
    margin-bottom: 20px;
}

.social-icons a {
    color: #f0f0f0; /* Replaced var(--text-light) */
    margin-right: 15px;
    font-size: 18px;
}
.social-icons a:hover {
    color: #ff6600; /* Replaced var(--primary-color) */
}

.footer-col.links ul li {
    margin-bottom: 10px;
}

.footer-col.links a {
    color: #ccc;
}
.footer-col.links a:hover {
    color: #ff6600; /* Replaced var(--primary-color) */
}

.footer-col.info p {
    margin-bottom: 10px;
}
.footer-col.info .phone-number {
    font-size: 20px;
    font-weight: bold;
    color: #ff6600; /* Replaced var(--primary-color) */
}

.copyright {
    padding: 20px 0;
    background-color: #111;
}

.copyright .container {
    /* FLEXBOX: Copyright line arrangement */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.copyright p {
    font-size: 14px;
}
.copyright a {
    color: #ff6600; /* Replaced var(--primary-color) */
}

.policy-links a {
    color: #ccc;
    margin-left: 20px;
    font-size: 14px;
}

/* --- FLEXBOX RESPONSIVENESS --- */
@media (max-width: 992px) {
    .main-nav {
        display: none; /* Simplification */
    }
    .hero-content-wrapper {
        /* Stack hero content and form */
        flex-direction: column;
    }
    .contact-form-card {
        max-width: none;
        width: 100%;
        margin-top: 50px;
    }
    .success-grid {
        /* Stack image and content */
        flex-direction: column;
    }
    .service-cards-grid {
        /* Change to 3 columns per row (approx) */
        justify-content: space-around;
    }
    .service-card {
        flex: 1 1 calc(33.33% - 20px);
        max-width: none;
    }
    
    .amazing-work-grid {
        /* Stack the two image cards into one column, keeping text separate */
        flex-direction: column;
        min-height: 350px;
    }
    .image-wrapper {
        /* Image wrapper takes up the full width */
        flex: 1 1 100%;
        flex-direction: row;
        gap: 30px;
    }
    
    .team-grid {
        /* Change to 3 columns per row (approx) */
        justify-content: space-around;
    }
    .consultant-card {
        flex: 1 1 calc(33.33% - 20px);
        max-width: none;
    }
    .news-grid {
        /* Stack news cards */
        flex-direction: column;
    }
    .main-footer-grid {
        /* Change to 2 columns per row */
        justify-content: space-around;
    }
    .footer-col {
        flex: 1 1 calc(50% - 20px);
        max-width: none;
    }
}

@media (max-width: 576px) {
    .logo-grid {
        /* Already handled by flex-wrap */
        gap: 20px;
    }
    .service-cards-grid {
        /* Stack service cards */
        flex-direction: column;
        min-height: 0;
    }
    .service-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .team-grid {
        /* Stack team cards */
        flex-direction: column;
    }
    .consultant-card {
        flex: 1 1 100%;
    }
    .amazing-work-grid {
        /* Already stacked, but now ensure images are also stacked */
        flex-direction: column;
    }
    .image-wrapper {
        flex-direction: column;
    }
    .image-card-small, .image-card-large {
        flex: 1 1 auto;
        min-height: 200px;
    }
    .stats-grid {
        /* Stack stats */
        flex-direction: column;
        gap: 30px;
    }
    .copyright .container {
        /* Stack copyright elements */
        flex-direction: column;
        text-align: center;
    }
    .policy-links {
        margin-top: 10px;
    }
    .policy-links a {
        margin: 0 10px;
    }
    .main-footer-grid {
        /* Stack footer columns */
        flex-direction: column;
    }
}