:root {
    --brand-orange: #F36F21;
    --dark-charcoal: #1a1a1a;
    --light-grey: #f8f9fa;
    --text-grey: #555555;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--dark-charcoal); line-height: 1.6; background: var(--white); overflow-x: hidden; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; font-weight: 800; letter-spacing: -0.5px; }
.highlight-orange { color: var(--brand-orange); }
.text-center { text-align: center; }

/* ===== BACKGROUND PATTERN (Faint orange dots) ===== */
.bg-pattern {
    background-image: radial-gradient(var(--brand-orange) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    opacity: 0.08;
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar { background: var(--white); padding: 20px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo img { max-height: 45px; width: auto; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--dark-charcoal); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.nav-links a:hover { color: var(--brand-orange); }
.btn-primary-nav { background: var(--brand-orange); color: #fff !important; padding: 10px 25px; border-radius: 50px; transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary-nav:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(243, 111, 33, 0.3); }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; background: var(--brand-orange); color: #fff; padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; border: none; cursor: pointer;}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(243, 111, 33, 0.25); }
.btn-outline { display: inline-block; border: 2px solid var(--dark-charcoal); color: var(--dark-charcoal); padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; background: transparent;}
.btn-outline:hover { background: var(--dark-charcoal); color: #fff; }
.btn-link { color: var(--brand-orange); text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-link:hover { padding-left: 5px; }

/* ===== HERO ===== */
.hero-simple { padding: 100px 0; position: relative; overflow: hidden; }
.hero-simple h1 { font-size: 3.5rem; max-width: 800px; margin: 0 auto 20px; line-height: 1.2; }
.hero-simple p { font-size: 1.2rem; color: var(--text-grey); max-width: 600px; margin: 0 auto 40px; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== STATS BAR ===== */
.stats-bar { padding: 50px 0; background: var(--white); border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.stats-bar .container { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 30px; }
.stat .number { display: block; font-size: 2.8rem; font-weight: 800; color: var(--brand-orange); font-family: 'Montserrat', sans-serif; }
.stat .label { color: var(--text-grey); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== INTRO SECTION ===== */
.simple-intro { padding: 100px 0; text-align: center; position: relative; background: var(--light-grey); }
.simple-intro h2 { max-width: 700px; margin: 0 auto 20px; font-size: 2.2rem; }
.simple-intro p { max-width: 650px; margin: 0 auto 30px; color: var(--text-grey); font-size: 1.1rem; }

/* ===== BLOG GRID ===== */
.blog-archive { padding: 80px 0; }
.blog-archive h1 { margin-bottom: 20px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; margin-top: 40px; }
.blog-card { background: var(--white); border: 1px solid #eee; border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.3s, box-shadow 0.3s; display: block; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.06); }
.blog-image { height: 220px; background-color: #f0f0f0; background-size: cover; background-position: center; }
.blog-content { padding: 25px; }
.blog-content h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.4; }
.blog-content p { color: var(--text-grey); font-size: 0.95rem; margin-bottom: 15px; }
.read-more { color: var(--brand-orange); font-weight: 600; display: inline-block; font-size: 0.9rem; }

/* ===== FOOTER ===== */
.footer { padding: 40px 0; border-top: 1px solid #eee; text-align: center; color: var(--text-grey); font-size: 0.9rem; background: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar .container { flex-direction: column; gap: 15px; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .hero-simple h1 { font-size: 2.5rem; }
    .hero-simple p { font-size: 1rem; }
    .stats-bar .container { flex-direction: column; gap: 20px; }
}

/* ===== NAVBAR OVERRIDES FOR HAMBURGER ===== */
.navbar .container { position: relative; }
.nav-links { display: flex; }
.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}
.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-charcoal);
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-overlay.active { display: flex; opacity: 1; }
.mobile-overlay-content {
    text-align: center;
    position: relative;
}
.close-menu {
    position: absolute;
    top: -40px;
    right: -20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--dark-charcoal);
    cursor: pointer;
}
.mobile-overlay-content ul { list-style: none; padding: 0; margin: 0; }
.mobile-overlay-content ul li { margin: 20px 0; }
.mobile-overlay-content ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    text-decoration: none;
    transition: color 0.3s;
}
.mobile-overlay-content ul li a:hover { color: var(--brand-orange); }
.mobile-overlay-content ul li a.mobile-cta {
    display: inline-block;
    background: var(--brand-orange);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
}

/* ===== NEW VISUAL ELEMENTS FOR HOME PAGE ===== */
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px; /* Increased gap so graphic doesn't hug the text */
    padding: 40px 0;
    position: relative;
}
.hero-text-col { 
    flex: 1; 
    min-width: 340px; 
    text-align: left; 
}
.hero-text-col h1 { 
    font-size: 3.5rem; 
    line-height: 1.15; 
    margin-bottom: 25px; 
}
.hero-text-col p { 
    font-size: 1.15rem; 
    color: var(--text-grey); 
    max-width: 520px; 
    margin-bottom: 35px; 
}
.hero-graphic-col {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-graphic-col svg {
    width: 100%;
    max-width: 480px; /* Made slightly larger */
    height: auto;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-text-col h1 { font-size: 2.8rem; }
}
@media (max-width: 768px) {
    .hamburger-menu { display: flex; }
    .nav-links { display: none; }
    
    /* Stack the columns on mobile */
    .hero-layout { 
        flex-direction: column-reverse; 
        text-align: center; 
        padding: 20px 0;
        gap: 30px; 
    }
    .hero-text-col { 
        text-align: center; 
        min-width: 100%;
    }
    .hero-text-col p { 
        margin: 0 auto 30px; 
        max-width: 100%;
    }
    .hero-text-col h1 { font-size: 2.2rem; }
    .hero-graphic-col { min-width: 100%; }
    .hero-graphic-col svg { max-width: 320px; }
}