/* ============ CTA Bars ============ */
.primary-cta-bar {
    background-color: #333;
    padding: var(--space-lg) 0;
}

.secondary-cta-bar {
    background-color: var(--tertiary-2);
    padding: var(--space-lg) 0;
}

.tertiary-cta-bar {
    background-color: var(--secondary-2);
    padding: var(--space-lg) 0;
}

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

.cta-bar-content h3 {
    color: var(--neutral-1);
    margin-bottom: 0;
    font-size: 1.4rem;
    max-width: 70%;
}

.btn-cta {
    background-color: var(--neutral-1);
    color: #333;
    font-weight: 600;
    padding: var(--space-sm) var(--space-xl);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.primary-cta-bar .btn-cta {
    color: #333;
}

.secondary-cta-bar .btn-cta {
    color: var(--tertiary-2);
}

.tertiary-cta-bar .btn-cta {
    color: var(--secondary-2);
}

.btn-cta:hover {
    background-color: var(--neutral-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .cta-bar-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .cta-bar-content h3 {
        max-width: 100%;
    }
    
    .hero-image-container {
        width: 100%;
        height: 300px;
        margin-top: var(--space-md);
    }
}

.contact-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-xxl);
    gap: var(--space-lg);
}

.contact-option {
    flex: 1;
    background-color: var(--neutral-1);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-option i {
    font-size: 2rem;
    color: var(--primary-2);
    margin-bottom: var(--space-md);
}

.contact-option h3 {
    margin-bottom: var(--space-sm);
}

.contact-option p {
    color: var(--neutral-6);
    margin-bottom: 0;
}

.contact-features {
    margin: var(--space-xl) 0;
}

.contact-feature {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.contact-feature i {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 120, 212, 0.1);
    color: var(--primary-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    flex-shrink: 0;
}

.contact-feature h4 {
    margin-bottom: var(--space-xs);
}

.contact-feature p {
    margin-bottom: 0;
    color: var(--neutral-6);
}

select {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid var(--neutral-4);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--neutral-1);
}

select:focus {
    outline: none;
    border-color: var(--primary-2);
}

.form-cta {
    background-color: var(--neutral-2);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
}

.form-cta p {
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--tertiary-2);
}

.implementation-pitfalls {
    margin-top: var(--space-xxl);
    margin-bottom: var(--space-xxl);
}

.implementation-pitfalls h3 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.pitfalls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.pitfall-card {
    background-color: var(--neutral-1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--accent-3);
}

.pitfall-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(210, 50, 56, 0.1);
    color: var(--accent-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.pitfall-card h4 {
    margin-bottom: var(--space-sm);
    color: var(--accent-2);
}

.pitfall-card p {
    color: var(--neutral-6);
    margin-bottom: 0;
}

.clients-section {
    margin-top: var(--space-xxl);
    text-align: center;
}

.clients-section h3 {
    margin-bottom: var(--space-lg);
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.client-logo {
    background-color: var(--neutral-1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-apex-cta {
    margin-top: var(--space-xxl);
    text-align: center;
    background-color: var(--primary-2);
    color: var(--neutral-1);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.why-apex-cta p {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.why-apex-cta .btn {
    background-color: var(--tertiary-2);
    color: var(--neutral-1);
}

.why-apex-cta .btn:hover {
    background-color: var(--tertiary-1);
}

.methodology-timeline {
    max-width: 900px;
    margin: 0 auto var(--space-xxl);
    position: relative;
}

.methodology-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 29px;
    width: 2px;
    background-color: var(--primary-2);
}

.timeline-phase {
    display: flex;
    margin-bottom: var(--space-xl);
    position: relative;
}

.phase-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-2);
    color: var(--neutral-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-right: var(--space-lg);
    position: relative;
    z-index: 1;
}

.phase-content {
    background-color: var(--neutral-1);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    flex: 1;
    position: relative;
}

.phase-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: var(--neutral-1);
    transform: rotate(45deg);
}

.phase-content h3 {
    color: var(--primary-2);
    margin-bottom: var(--space-sm);
}

.phase-deliverables {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.phase-deliverables li {
    margin-bottom: var(--space-xs);
    position: relative;
    list-style-type: disc;
}

.phase-duration {
    display: inline-block;
    background-color: var(--secondary-4);
    color: var(--secondary-1);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
}

.methodology-cta {
    text-align: center;
    background-color: var(--neutral-2);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xxl);
}

.methodology-cta p {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.ai-advantage {
    color: var(--primary-2);
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background-color: rgba(0, 120, 212, 0.1);
    border-radius: var(--radius-md);
    margin-top: var(--space-sm);
}

/* 
 * ApexCTRM Website Styles
 * Based on Microsoft Fluent 2 Design System
 */

/* ============ CSS Reset & Base Styles ============ */
:root {
    /* Primary Colors - Blues (Top Row) */
    --primary-1: #1a4480;       /* Dark blue */
    --primary-2: #2e6db4;       /* Medium blue */
    --primary-3: #4285f4;       /* Light blue */
    --primary-4: #5b9bd5;       /* Lighter blue */
    
    /* Secondary Colors - Purples (Second Row) */
    --secondary-1: #2d2a4a;     /* Dark purple */
    --secondary-2: #494170;     /* Medium purple */
    --secondary-3: #6b639b;     /* Light purple */
    --secondary-4: #9c95c9;     /* Lighter purple */
    
    /* Accent Colors - Reds (Third Row) */
    --accent-1: #6e1a36;        /* Dark red */
    --accent-2: #a4262c;        /* Medium red */
    --accent-3: #d13438;        /* Light red */
    --accent-4: #e6808a;        /* Lighter red */
    
    /* Tertiary Colors - Oranges (Fourth Row) */
    --tertiary-1: #752f0b;      /* Dark orange */
    --tertiary-2: #ca5010;      /* Medium orange */
    --tertiary-3: #da3b01;      /* Light orange */
    --tertiary-4: #f7894a;      /* Lighter orange */
    
    /* Green Colors (Fifth Row) */
    --success-1: #0d4f25;       /* Dark green */
    --success-2: #107c10;       /* Medium green */
    --success-3: #36a01e;       /* Light green */
    --success-4: #6cc655;       /* Lighter green */
    
    /* Neutral Colors */
    --neutral-1: #ffffff;       /* White */
    --neutral-2: #f5f5f5;       /* Off-white */
    --neutral-3: #edebe9;       /* Light gray */
    --neutral-4: #d2d0ce;       /* Medium gray */
    --neutral-5: #a19f9d;       /* Dark gray */
    --neutral-6: #605e5c;       /* Darker gray */
    --neutral-7: #3b3a39;       /* Very dark gray */
    --neutral-8: #252423;       /* Almost black */
    --neutral-9: #1f1f1f;       /* Black */
    
    /* Contextual Colors */
    --success: #107c10;         /* Green */
    --warning: #ca5010;         /* Orange */
    --error: #d13438;           /* Red */
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --space-xxxl: 64px;
    
    /* Typography */
    --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    
    /* Border Radius */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: var(--font-family);
    color: var(--neutral-7);
    line-height: 1.5;
    background-color: var(--neutral-1);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary-1);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-2);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

section {
    padding: var(--space-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xxl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--neutral-6);
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--tertiary-2);
    color: var(--neutral-1);
}

.btn-primary:hover {
    background-color: var(--tertiary-1);
    color: var(--neutral-1);
}

.btn-secondary {
    background-color: var(--neutral-2);
    color: var(--primary-1);
}

.btn-secondary:hover {
    background-color: var(--neutral-3);
}

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

.btn-outline:hover {
    background-color: var(--primary-1);
    color: var(--neutral-1);
}

.full-width {
    width: 100%;
}

/* ============ Header & Navigation ============ */
header {
    padding: var(--space-md) 0;
    background-color: var(--neutral-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo span {
    font-weight: 700;
    color: var(--primary-1);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    color: var(--neutral-7);
    font-weight: 500;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--primary-1);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.search-btn {
    background: none;
    border: none;
    color: var(--neutral-6);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--primary-1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--neutral-7);
    transition: all 0.3s ease;
}

/* ============ Hero Section ============ */
.hero {
    padding: var(--space-xxxl) 0;
    background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-3) 100%);
    color: var(--neutral-1);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: var(--space-lg);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
}

.cta-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-4);
    background-color: rgba(255, 255, 255, 0.15);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: 0;
    display: inline-block;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

#hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-container:hover #hero-background-image {
    transform: scale(1.05);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.7) 0%, rgba(60, 90, 180, 0.4) 50%, rgba(120, 60, 190, 0.7) 100%);
    mix-blend-mode: multiply;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ============ Key Benefits ============ */
.key-benefits {
    padding: var(--space-xxl) 0;
    background-color: var(--neutral-2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.benefit-card {
    background-color: var(--neutral-1);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.benefit-card .icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 120, 212, 0.1);
    color: var(--primary-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--space-md);
}

.benefit-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--neutral-6);
    margin-bottom: var(--space-md);
}

.benefit-metric {
    margin-top: auto;
    background-color: var(--secondary-4);
    color: var(--neutral-8);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
}

.benefit-metric span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-1);
}

/* ============ Services Section ============ */
.services {
    padding: var(--space-xxl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xxl);
}

.service-card {
    background-color: var(--neutral-1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 120, 212, 0.1);
    color: var(--primary-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--success-3);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
}

.service-card h3 {
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: var(--neutral-6);
    margin-bottom: var(--space-md);
}

.service-features {
    margin-bottom: var(--space-md);
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--success-2);
    margin-right: var(--space-xs);
    font-size: 0.8rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-2);
    font-weight: 500;
}

.card-link i {
    margin-left: var(--space-xs);
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(3px);
}

.industry-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.industry-tab {
    padding: var(--space-sm) var(--space-md);
    background: var(--neutral-1);
    border: 1px solid var(--neutral-4);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.industry-tab.active, .industry-tab:hover {
    background-color: var(--primary-2);
    color: var(--neutral-1);
    border-color: var(--primary-2);
}

.services-cta {
    text-align: center;
    background-color: var(--neutral-2);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: var(--neutral-7);
}

/* ============ Products & Solutions ============ */
.solutions {
    padding: var(--space-xxl) 0;
    background-color: var(--neutral-2);
}

.solutions-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxl);
}

.solution-item {
    display: flex;
    gap: var(--space-xl);
    background-color: var(--neutral-1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.solution-item.reverse {
    flex-direction: row-reverse;
}

.solution-content {
    flex: 1;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-content h3 {
    color: var(--primary-1);
    margin-bottom: var(--space-md);
}

.solution-content p {
    margin-bottom: var(--space-lg);
}

.solution-image {
    flex: 1;
    min-height: 350px;
    background-color: var(--neutral-3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-list {
    margin-bottom: var(--space-lg);
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.feature-list i {
    color: var(--success);
    margin-right: var(--space-sm);
}

/* ============ Why ApexCTRM ============ */
.why-apex {
    padding: var(--space-xxl) 0;
}

.comparison {
    max-width: 900px;
    margin: 0 auto var(--space-xxl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-header {
    display: flex;
}

.comparison-header > div {
    flex: 1;
    padding: var(--space-md);
    text-align: center;
}

.comparison-header .legacy {
    background-color: var(--neutral-4);
}

.comparison-header .apex {
    background-color: var(--primary-1);
    color: var(--neutral-1);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--neutral-3);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    flex: 1;
    padding: var(--space-md);
    display: flex;
    align-items: center;
}

.comparison-row .legacy {
    background-color: var(--neutral-2);
}

.comparison-row .apex {
    background-color: var(--neutral-1);
}

.comparison-row i {
    margin-right: var(--space-sm);
}

.comparison-row .fa-times {
    color: var(--error);
}

.comparison-row .fa-check {
    color: var(--success);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    position: relative;
    background-color: var(--neutral-2);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.quote i {
    font-size: 2rem;
    color: var(--primary-1);
    opacity: 0.2;
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
}

.quote p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-left: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: var(--space-md);
}

.author-info h4 {
    margin-bottom: var(--space-xs);
}

.author-info p {
    margin-bottom: 0;
    color: var(--neutral-6);
}

/* ============ Contact Section ============ */
.contact {
    padding: var(--space-xxl) 0;
    background-color: var(--neutral-2);
}

.contact-content {
    display: flex;
    gap: var(--space-xxl);
}

.contact-form {
    flex: 1;
    background-color: var(--neutral-1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group.full-width {
    grid-column: span 2;
}

label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid var(--neutral-4);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-1);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.info-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 120, 212, 0.1);
    color: var(--primary-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
}

.info-item p {
    margin-bottom: 0;
}

/* ============ Footer ============ */
footer {
    background-color: var(--neutral-8);
    color: var(--neutral-1);
    padding: var(--space-xxl) 0 var(--space-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-xxl);
}

.footer-logo {
    max-width: 300px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
}

.footer-logo span {
    color: var(--primary-3);
}

.footer-links {
    display: flex;
    gap: var(--space-xxl);
}

.link-group h3 {
    color: var(--neutral-3);
    font-size: 1rem;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.link-group ul li {
    margin-bottom: var(--space-sm);
}

.link-group a {
    color: var(--neutral-4);
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--primary-3);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid var(--neutral-7);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    color: var(--neutral-4);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

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

/* ============ Responsive Design ============ */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }
    
    .link-group {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: var(--space-xl);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .fluid-shape {
        width: 300px;
        height: 300px;
    }
    
    .solution-item, .solution-item.reverse {
        flex-direction: column;
    }
    
    .solution-image {
        min-height: 250px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex-direction: column;
    }
}

/* New Commodity Support Styles */
.commodity-support {
    background: linear-gradient(to right, rgba(0, 120, 212, 0.05), rgba(120, 60, 190, 0.05));
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.support-intro {
    margin-bottom: var(--space-md);
}

.support-intro i {
    font-size: 2.5rem;
    color: var(--primary-2);
    margin-bottom: var(--space-sm);
}

.support-intro h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-xs);
}

.support-intro p {
    color: var(--neutral-6);
    max-width: 600px;
    margin: 0 auto;
}

.commodity-types {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.commodity-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    min-width: 120px;
}

.commodity-type i {
    font-size: 1.8rem;
    color: var(--primary-2);
    margin-bottom: var(--space-sm);
    background-color: rgba(0, 120, 212, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.commodity-type span {
    font-weight: 500;
    color: var(--neutral-7);
}

.commodity-type:hover i {
    transform: translateY(-5px);
    background-color: rgba(0, 120, 212, 0.2);
}

/* Media queries for commodity support */
@media (max-width: 768px) {
    .commodity-types {
        gap: var(--space-sm);
    }
    
    .commodity-type {
        min-width: 100px;
        padding: var(--space-sm);
    }
}
