/* CSS Variables & Theme - Light Premium */
:root {
    --bg-base: #ffffff;
    --bg-surface: #f8fafc;
    --bg-accent-soft: #f0f7f0; /* Soft green tint for light UI */
    --bg-accent-deep: #05242D; /* Updated brand deep teal */
    
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-on-accent: #ffffff;
    
    --accent-primary: #52A300; /* Visual Go Green */
    --accent-secondary: #1B6B93; /* Visual Go Blue */
    --accent-highlight: #52A300; /* Linking highlight to brand green */
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif; /* Keep Outfit but use weight more elegantly */
    
    --border-subtle: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Background Decorative Elements */
.glow-blob { display: none; } /* Remove dark mode blobs */

/* Typography - App-like smoothness */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    letter-spacing: -0.025em;
    line-height: 1.1;
}

h1 { 
    font-size: clamp(1.8rem, 4vw, 3rem); 
    font-weight: 800; 
    margin-bottom: 1.5rem; 
    line-height: 1.1;
    letter-spacing: -0.03em;
}
h2 { 
    font-size: clamp(1.6rem, 3.5vw, 2.5rem); 
    font-weight: 700; 
    margin-bottom: 1.5rem; 
    line-height: 1.1;
    letter-spacing: -0.02em;
}
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }

.text-gradient {
    color: var(--accent-primary); /* Remove gradient for cleaner look, or use a subtle one */
}

.text-secondary-label {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 400;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mobile-only { display: none; }
@media (max-width: 768px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; }
}

/* Buttons - Premium Feel */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 99px; /* Pill shape like reference */
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--accent-highlight);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px -10px var(--accent-highlight);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background-color: var(--bg-surface);
    border-color: var(--text-primary);
}

/* Header & Navigation */
.top-bar {
    background-color: var(--bg-accent-deep);
    color: var(--text-on-accent);
    padding: 0;
    font-size: 0.825rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    height: 28px; /* Reduced by 30% from 40px */
}

.top-info span {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.top-info a {
    color: var(--accent-highlight);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.top-right-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-right-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
    opacity: 0.9;
}

.top-right-menu a:hover {
    color: var(--accent-highlight);
    opacity: 1;
}

header {
    background-color: white;
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.header-main {
    height: 117px; /* Set to match the badge height as requested */
    display: flex;
    align-items: center;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 73px; /* Increased by 30% from 56px */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
}

.nav-links li {
    position: relative;
}

/* Dropdown Menu Styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--border-subtle);
    margin-top: 0.5rem;
}

/* Subtle triangle for the dropdown */
.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-top: 1px solid var(--border-subtle);
    border-left: 1px solid var(--border-subtle);
    transform: rotate(45deg);
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 0.85rem 1.5rem;
    color: var(--text-primary) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
    border-radius: 0;
}

.dropdown a:hover {
    background: #f4f8f0;
    color: var(--accent-primary) !important;
    padding-left: 1.75rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.015em;
    transition: all 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-primary);
}

.nav-cta {
    padding: 0.5rem 1.25rem; /* Reduced by 20% */
    background-color: var(--accent-primary);
    color: white;
    border-radius: 8px; /* Modern app-like subtle rounding */
    font-weight: 600;
    text-decoration: none;
    font-size: 0.75rem; /* Reduced by ~15% for better proportion */
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    margin-left: 1.25rem;
}

.nav-cta:hover {
    background-color: var(--bg-accent-deep);
    transform: translateY(-1px);
}

/* Sections Base */
section {
    padding: 10rem 0;
}

/* Glass Panel replacement with Premium Cards */
.glass-panel {
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    padding: 2.5rem;
    transition: var(--transition);
}

.glass-panel:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

/* Badge update */
.badge {
    display: inline-block;
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}

.hero {
    min-height: 100vh; /* Full viewport height for 'full view' */
    display: flex;
    align-items: center; /* Middle vertically */
    justify-content: flex-start; /* Left align horizontally */
    position: relative;
    background-color: #05242D;
    background-image: linear-gradient(to right, rgba(5, 36, 45, 0.98) 0%, rgba(5, 36, 45, 0.8) 30%, rgba(5, 36, 45, 0.4) 50%, transparent 100%), url('../images/Visual Go Main  Home PC Image 1920 x 1080.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    background-attachment: fixed;
    padding: 2rem 0;
    text-align: left; /* Left align text */
}

.hero .container {
    display: block;
    max-width: 1200px; /* Wider container for left alignment */
}

.hero-text {
    max-width: 700px;
    color: white;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.text-gradient {
    color: var(--accent-primary); /* Remove gradient for cleaner look, or use a subtle one */
}

/* Fallback for service pages which are in subfolders */
.hero-subpage {
    background: url('../../images/Visual Go Main  Home PC Image 1920 x 1080.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh; /* Subpages can be shorter */
}

/* Mobile Hero Override */
@media (max-width: 768px) {
    .hero {
        background: linear-gradient(to bottom, 
            rgba(5, 36, 45, 0.78) 0%, 
            rgba(5, 36, 45, 0.72) 20%, 
            rgba(5, 36, 45, 0.56) 40%, 
            rgba(5, 36, 45, 0.24) 65%, 
            transparent 85%
        ), url('../images/Visual Go Main  Home Mobile Image.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        min-height: 100vh;
        padding: 4rem 0 3rem; /* More top padding to push text down slightly */
        display: flex;
        flex-direction: column;
        text-align: left; /* Left align text */
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        flex: 1;
        justify-content: space-between; /* Pushes content and actions apart */
        height: 100%;
        align-items: flex-start; /* Left align items horizontally */
    }
    
    .hero-text {
        margin-bottom: auto; /* Ensures text stays at the top/middle */
        width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.26rem; /* Increased by another 20% from 1.88rem */
        margin-bottom: 0.75rem;
    }
    
    .hero-text p {
        font-size: 0.8rem; /* Increased by another 20% from 0.67rem */
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-actions {
        flex-direction: row !important;
        gap: 0.5rem; /* Tighter gap to fit side-by-side */
        width: 100%;
        margin-top: 2rem;
    }
    
    .hero-actions .btn {
        padding: 0.75rem 0.5rem; /* Tighter side padding */
        font-size: 0.75rem; /* Slightly smaller text to fit one line */
        white-space: nowrap; /* Force one line */
        flex: 1;
        min-width: 0; /* Allow shrinking below content size if needed */
        text-align: center;
    }
    
    .hero-subpage {
        background: linear-gradient(rgba(5, 36, 45, 0.6), rgba(5, 36, 45, 0.6)), url('../../images/Visual Go Main  Home Mobile Image.jpg');
        background-size: cover;
        background-position: center;
        min-height: 80vh;
    }
}

/* Hero Component Styles continue... */

.hero .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start; /* Left align horizontally */
}

/* Remove side image styling */
.hero-image {
    display: none;
}

/* Services Section */
.services {
    padding: 90px 0; /* Updated to 90px per Design Standard */
    background-color: var(--bg-surface);
}

.excellence-badge {
    display: block;
    margin: 0 auto 1.5rem;
    height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.05));
}

.header-badge {
    height: 117px;
    width: auto;
    margin-right: 0.75rem;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: 0; /* Centered vertically */
    z-index: 1001;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.05));
}

@media (max-width: 1100px) {
    .header-badge {
        display: none; /* Hide in header on smaller screens/tablets */
    }
}

.header-badge-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .top-info {
        height: 34px !important; /* Increased by 20% from 28px */
    }

    .header-main {
        height: 94px !important; /* Reduced by 20% from 117px */
    }

    .header-badge-mobile {
        display: block !important;
        height: 78px; /* Increased by another 30% from 60px */
        width: auto;
        margin-left: auto;
        margin-right: 1rem;
        vertical-align: middle;
    }
}

.section-header {
    margin-bottom: 8rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.section-header p {
    font-size: 1.1rem; /* Decreased size */
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(360px, auto); /* Increased from 300px (20%) */
    gap: 2rem;
}

.service-card {
    position: relative;
    background: var(--bg-base);
    border-radius: 32px;
    border: 1px solid var(--border-subtle);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Bento Grid Sizing */
.service-card:nth-child(1) { grid-column: span 8; }
.service-card:nth-child(2) { grid-column: span 4; }
.service-card:nth-child(3) { grid-column: span 4; }
.service-card:nth-child(4) { grid-column: span 8; }

@media (max-width: 992px) {
    .service-card { grid-column: span 12 !important; }
}

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

.service-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 2.5rem;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.92) 25%, #ffffff);
    width: 100%;
}

.service-icon {
    display: none; /* Removed as requested */
}

.service-card h3 {
    font-size: 1.5rem; /* Slightly smaller heading */
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.service-card p {
    font-size: 0.95rem; /* Decreased size */
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 0;
}

.service-card .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem; /* Reduced margin */
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

/* Value Proposition Section */
.about {
    padding: 90px 0; /* Updated to 90px per Design Standard */
    background: linear-gradient(135deg, #f0f7f0 0%, #ffffff 50%, #f0f4f7 100%); /* Soft brand green to brand blue gradient */
    position: relative;
    overflow: hidden;
}

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

/* Image Collage */
.collage-container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 1.5rem;
    position: relative;
}

.collage-main {
    grid-row: span 2;
}

.collage-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.collage-sub img {
    width: 100%;
    height: 217px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.collage-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: -1;
    opacity: 0.3;
}

/* About Text & Features */
.about-text .badge {
    color: var(--accent-primary);
    background: rgba(14, 77, 68, 0.05);
    margin-bottom: 1.5rem;
}

.about-text h2 {
    font-size: clamp(1.875rem, 3.75vw, 2.625rem);
    margin-bottom: 2.25rem;
    line-height: 1.2;
    color: var(--bg-accent-deep);
}

.feature-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
    list-style: none;
}

.feature-list-item {
    display: flex;
    gap: 1.5rem;
}

.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: var(--accent-primary);
}

.feature-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--bg-accent-deep);
}

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

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about .container {
        padding: 0 1.25rem; /* Tighter padding for a better fit */
    }
    
    .collage-container {
        grid-template-columns: 1fr 0.8fr;
        gap: 0.75rem;
    }
    
    .collage-main img {
        height: 280px;
    }
    
    .collage-sub img {
        height: 136px;
    }
}

/* Footer - Reference inspired dark green footer */
footer {
    background-color: var(--bg-accent-deep);
    color: var(--text-on-accent);
    padding: 8rem 0 4rem;
}



/* ── NEW PROFESSIONAL FOOTER ── */
.footer {
    background-color: #01161a;
    color: #fff;
    padding: 90px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer .container {
    max-width: 1200px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 60px;
}

.footer-brand-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.brand-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

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

.footer-col h4 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-primary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-col ul li a:hover,
.footer-col ul li a.active {
    color: var(--accent-primary);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact-item .icon {
    color: var(--accent-primary);
    margin-top: 0.2rem;
}

.footer-contact-item a, 
.footer-contact-item p {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-policies {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-policies a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: #fff;
}

.footer-copyright p {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    margin: 0;
}

/* Mobile Adjustments for Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 40px; /* Reduced to 40px per Design Standard */
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
    }

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

    .footer-policies {
        justify-content: center;
        gap: 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-col {
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu implementation in JS */
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-actions {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .services {
        padding: 40px 0; /* Reduced to 40px per Design Standard */
    }

    .about {
        padding: 40px 0; /* Reduced to 40px per Design Standard */
    }

    .excellence-badge {
        height: 70px; /* Smaller on mobile */
        margin-bottom: 1rem;
    }

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

/* Hero Stats Sidebar - For About and Service Pages */
.hero-stats-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 3rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats-sidebar .stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stats-sidebar .stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stats-sidebar .stat-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-top: 0.25rem;
    font-weight: 700;
}

/* Adjust hero containers for sidebar layout */
.about-hero .container,
.svc-hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .about-hero .container,
    .svc-hero .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .hero-stats-sidebar {
        padding-left: 0;
        border-left: none;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        min-width: 100%;
    }
}
