/* Madden Aeration - Professional Golf Course Technology Platform */

/* Brand Color System */
:root {
    /* Primary Brand Colors - Custom Golf Theme */
    --madden-blue: #0c7cdc;
    --madden-blue-light: #3b94e8;
    --madden-blue-dark: #0a65b8;
    --madden-green: #59883c;
    --madden-green-light: #6fa047;
    --madden-green-dark: #4a7230;
    
    /* Neutral Palette */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-500: #9E9E9E;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* Status Colors - Custom Golf Theme */
    --success: var(--madden-green);
    --warning: #F59E0B;
    --error: #DC2626;
    --info: var(--madden-blue);
    --grass-green: var(--madden-green);
    --sky-blue: var(--madden-blue);
    
    /* Brand Gradients - Enhanced to match new logo */
    --gradient-primary: linear-gradient(135deg, var(--madden-blue) 0%, var(--madden-blue-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--madden-green) 0%, var(--madden-green-light) 100%);
    --gradient-hero: linear-gradient(135deg, var(--madden-blue) 0%, var(--madden-green) 100%);
    --gradient-accent: linear-gradient(135deg, var(--madden-blue-light) 0%, var(--madden-green-light) 100%);
    --gradient-logo: linear-gradient(135deg, var(--madden-blue) 0%, var(--madden-green) 100%);
    
    /* Professional Shadows - Custom Golf Theme */
    --shadow-sm: 0 2px 8px rgba(12, 124, 220, 0.12);
    --shadow-md: 0 8px 24px rgba(12, 124, 220, 0.15);
    --shadow-lg: 0 16px 32px rgba(12, 124, 220, 0.18);
    --shadow-xl: 0 24px 48px rgba(12, 124, 220, 0.22);
    --shadow-green: 0 4px 20px rgba(89, 136, 60, 0.25);
    --shadow-grass: 0 6px 25px rgba(89, 136, 60, 0.2);
    
    /* Modern Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Typography Scale */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
}

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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(25, 118, 210, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: translateY(-1px);
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo {
    width: 30px;
    height: 20px;
    object-fit: contain;
}

.brand-text {
    font-weight: 700;
    font-size: var(--font-size-xl);
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--madden-blue);
}

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

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

.cta-link {
    background: var(--gradient-secondary) !important;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    border: none;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-link::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.bar {
    width: 22px;
    height: 2px;
    background: var(--madden-blue);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--madden-green);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--madden-green);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23grad)"/><circle cx="800" cy="800" r="400" fill="url(%23grad)"/></svg>') no-repeat center center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 800px;
    color: white;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
    border: none;
    border-radius: var(--radius-xl);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Air2G2 Benefits Section */
.air2g2-benefits {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}




/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--gray-200);
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Air2G2 Process */
.air2g2-process {
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.air2g2-process h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

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

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

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--madden-blue), var(--madden-green));
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.6;
}



/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    overflow-x: hidden;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-grass);
}

.service-card.featured {
    background: var(--gradient-hero);
    color: white;
    transform: scale(1.05);
    box-shadow: var(--shadow-green);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: var(--shadow-xl), var(--shadow-green);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: rgba(46, 122, 211, 0.1);
    color: var(--madden-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-card.featured .feature {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-link {
    color: var(--madden-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card.featured .service-link {
    color: white;
}

.service-link:hover {
    text-decoration: underline;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.about-subtitle {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

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

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(22, 163, 74, 0.1);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-feature-icon {
    font-size: 2rem;
    min-width: 60px;
    color: var(--madden-green);
}

.about-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.about-feature p {
    color: var(--gray-600);
    line-height: 1.5;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(22, 163, 74, 0.1);
    width: 100%;
    max-width: 400px;
}

.about-card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--madden-green);
}

.about-card-header h4 {
    font-size: 1.1rem;
    color: var(--madden-green);
    font-weight: 700;
}

.about-card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}

.area-label {
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.area-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--madden-green);
}

.metric-value.good {
    color: #10b981;
}

.metric-value.optimal {
    color: #3b82f6;
}

.metric-value.warning {
    color: #f59e0b;
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: white;
}

/* Deer Island Report Section */
.deer-island-report {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.report-content {
    max-width: 1000px;
    margin: 0 auto;
}

.report-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.report-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.report-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.report-placeholder {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.placeholder-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.placeholder-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.placeholder-feature {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.report-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.report-actions .btn {
    min-width: 180px;
}

/* Report Preview Cards */
.report-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.preview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4f46e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.preview-card h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.preview-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Comprehensive Report Styling */
.comprehensive-report {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.report-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.report-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.report-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4f46e5;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.overview-item {
    background: rgba(79, 70, 229, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4f46e5;
}

.overview-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.overview-item p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Satellite Analysis */
.satellite-analysis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.aerial-findings, .course-layout {
    background: rgba(16, 185, 129, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #10b981;
}

.aerial-findings h4, .course-layout h4 {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 1rem;
}

.aerial-findings ul, .course-layout ul {
    list-style: none;
    padding: 0;
}

.aerial-findings li, .course-layout li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.aerial-findings li:last-child, .course-layout li:last-child {
    border-bottom: none;
}

/* Soil Analysis */
.soil-analysis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.soil-data, .condition-assessment {
    background: rgba(251, 191, 36, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
}

.soil-data h4, .condition-assessment h4 {
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.soil-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-weight: 700;
    font-size: 1rem;
}

.metric-value.good {
    color: #10b981;
}

.metric-value.excellent {
    color: #059669;
}

.metric-value.optimal {
    color: #4f46e5;
}

.condition-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.condition-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.rating.good {
    color: #10b981;
    font-weight: 600;
}

.rating.excellent {
    color: #059669;
    font-weight: 600;
}

/* Aeration Analysis */
.aeration-analysis {
    margin-top: 1.5rem;
}

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

.need-item {
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
}

.need-item.high {
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid #ef4444;
}

.need-item.medium {
    background: rgba(251, 191, 36, 0.05);
    border-left: 4px solid #fbbf24;
}

.priority {
    position: absolute;
    top: -8px;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.need-item.high .priority {
    background: #ef4444;
}

.need-item.medium .priority {
    background: #fbbf24;
}

.need-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

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

.timeline-item {
    display: flex;
    flex-direction: column;
    background: rgba(79, 70, 229, 0.05);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid #4f46e5;
}

.timeline-item .month {
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.timeline-item .treatment {
    font-size: 0.9rem;
    color: #666;
}

/* GPS Mapping */
.gps-mapping {
    margin-top: 1.5rem;
}

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

.area-item {
    background: rgba(239, 68, 68, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ef4444;
}

.area-item h5 {
    color: #ef4444;
    font-weight: 600;
    margin-bottom: 1rem;
}

.precision-mapping {
    background: rgba(79, 70, 229, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4f46e5;
}

.precision-mapping h4 {
    color: #4f46e5;
    margin-bottom: 1rem;
}

.precision-mapping ul {
    list-style: none;
    padding: 0;
}

.precision-mapping li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

.precision-mapping li:last-child {
    border-bottom: none;
}

/* Recommendations */
.recommendations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.rec-category {
    background: rgba(16, 185, 129, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #10b981;
}

.rec-category h4 {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rec-category ul {
    list-style: none;
    padding: 0;
}

.rec-category li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.rec-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.rec-category li:last-child {
    border-bottom: none;
}

/* Cost Analysis */
.cost-analysis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.investment-breakdown, .benefits-projected {
    background: rgba(251, 191, 36, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
}

.investment-breakdown h4, .benefits-projected h4 {
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cost-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cost-item.total {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    font-weight: 700;
}

.cost {
    font-weight: 600;
    color: #f59e0b;
}

.cost-item.total .cost {
    color: white;
}

.benefits-projected ul {
    list-style: none;
    padding: 0;
}

.benefits-projected li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.benefits-projected li:before {
    content: "📈";
    position: absolute;
    left: 0;
}

.benefits-projected li:last-child {
    border-bottom: none;
}

/* Implementation Timeline */
.implementation {
    margin-top: 1.5rem;
}

.phase {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
}

.phase-1 {
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid #ef4444;
}

.phase-2 {
    background: rgba(251, 191, 36, 0.05);
    border-left: 4px solid #fbbf24;
}

.phase-3 {
    background: rgba(16, 185, 129, 0.05);
    border-left: 4px solid #10b981;
}

.phase h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.phase-1 h4 {
    color: #ef4444;
}

.phase-2 h4 {
    color: #f59e0b;
}

.phase-3 h4 {
    color: #10b981;
}

.phase ul {
    list-style: none;
    padding: 0;
}

.phase li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 1.5rem;
}

.phase li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.phase-1 li:before {
    color: #ef4444;
}

.phase-2 li:before {
    color: #f59e0b;
}

.phase-3 li:before {
    color: #10b981;
}

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

/* Comprehensive Report Page Styles */
.report-header {
    background: var(--gradient-hero);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.report-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23grad)"/><circle cx="800" cy="600" r="400" fill="url(%23grad)"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content h2 {
    font-size: var(--font-size-xl);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.report-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.meta-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.meta-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.meta-item .label {
    display: block;
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.meta-item .value {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.report-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
    background: var(--gray-50);
}

.report-section {
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.report-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.report-section h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--madden-blue);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
    position: relative;
}

.report-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-secondary);
}

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

.summary-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--madden-blue);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

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

.summary-card:nth-child(2) {
    border-left-color: var(--madden-green);
}

.summary-card:nth-child(3) {
    border-left-color: var(--madden-blue-light);
}

.summary-card h3 {
    color: var(--madden-blue);
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.investment-breakdown {
    margin-top: 1rem;
}

.investment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.investment-item.total {
    background: var(--gradient-secondary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    border: none;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.amount {
    font-weight: 700;
    color: var(--madden-green);
    font-size: var(--font-size-lg);
}

.investment-item.total .amount {
    color: white;
}

/* Course Analysis */
.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.analysis-card {
    background: rgba(59, 130, 246, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.analysis-card h3 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.location-details p, .course-specs .spec-row {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hole Analysis */
.holes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.hole-card {
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid;
    position: relative;
}

.hole-card.priority-high {
    background: rgba(239, 68, 68, 0.05);
    border-left-color: #ef4444;
}

.hole-card.priority-medium {
    background: rgba(251, 191, 36, 0.05);
    border-left-color: #fbbf24;
}

.hole-card.priority-low {
    background: rgba(16, 185, 129, 0.05);
    border-left-color: #10b981;
}

.hole-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hole-number {
    background: #1e3a8a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.priority-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.priority-badge.high {
    background: #ef4444;
}

.priority-badge.medium {
    background: #fbbf24;
}

.priority-badge.low {
    background: #10b981;
}

.holes-summary {
    background: rgba(99, 102, 241, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
    margin-top: 2rem;
}

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

.soil-card {
    background: rgba(168, 85, 247, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #a855f7;
}

.soil-card h3 {
    color: #7c3aed;
    margin-bottom: 1.5rem;
}

.composition-chart {
    margin: 1.5rem 0;
}

.composition-item {
    margin-bottom: 1rem;
}

.bar-container {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.bar {
    height: 20px;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    border-radius: 10px;
    margin-right: 1rem;
    transition: width 0.3s ease;
}

.percentage {
    font-weight: 600;
    color: #7c3aed;
}

.chemical-analysis, .physical-properties {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chemical-item, .property-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value.optimal {
    color: #059669;
    font-weight: 600;
}

.value.good {
    color: #10b981;
    font-weight: 600;
}

.value.warning {
    color: #f59e0b;
    font-weight: 600;
}

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

.turf-area {
    background: rgba(34, 197, 94, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

.turf-area h3 {
    color: #15803d;
    margin-bottom: 1.5rem;
}

.condition-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.metric span:last-child.excellent {
    color: #059669;
    font-weight: 600;
}

.metric span:last-child.good {
    color: #10b981;
    font-weight: 600;
}

.metric span:last-child.fair {
    color: #f59e0b;
    font-weight: 600;
}

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

.env-card {
    background: rgba(6, 182, 212, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #06b6d4;
}

.env-card h3 {
    color: #0891b2;
    margin-bottom: 1.5rem;
}

.climate-data, .water-data {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.climate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.efficiency-metrics {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.efficiency-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wildlife-data ul {
    list-style: none;
    padding: 0;
}

.wildlife-data li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.wildlife-data li:before {
    content: "🦅";
    position: absolute;
    left: 0;
}

/* Technology Analysis */
.tech-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.tech-card {
    background: rgba(99, 102, 241, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
}

.tech-card h3 {
    color: #4f46e5;
    margin-bottom: 2rem;
}

.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.capability {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.capability .icon {
    font-size: 1.5rem;
    background: white;
    padding: 0.75rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.capability-content h4 {
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.implementation-timeline {
    background: rgba(139, 69, 19, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #a3a3a3;
}

.implementation-timeline h3 {
    color: #525252;
    margin-bottom: 2rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-phase {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.phase-marker {
    background: #4f46e5;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.phase-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
}

.phase-content h4 {
    color: #4f46e5;
    margin-bottom: 1rem;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 1.5rem;
}

.phase-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Financial Analysis */
.financial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cost-breakdown, .benefits-analysis {
    background: rgba(251, 191, 36, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
}

.cost-breakdown h3, .benefits-analysis h3 {
    color: #f59e0b;
    margin-bottom: 2rem;
}

.cost-categories, .benefits-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cost-category, .benefit-category {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cost-category h4, .benefit-category h4 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.cost-items, .benefit-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cost-item, .benefit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(251, 191, 36, 0.05);
    border-radius: 6px;
}

.cost-item.total, .benefit-item.total {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
    font-weight: 700;
}

.roi-calculation {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.roi-calculation h4 {
    color: #059669;
    margin-bottom: 1.5rem;
}

.roi-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roi-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 8px;
}

.roi-metric.highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.recommendation-category {
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid;
}

.recommendation-category.immediate {
    background: rgba(239, 68, 68, 0.05);
    border-left-color: #ef4444;
}

.recommendation-category.seasonal {
    background: rgba(251, 191, 36, 0.05);
    border-left-color: #fbbf24;
}

.recommendation-category.longterm {
    background: rgba(16, 185, 129, 0.05);
    border-left-color: #10b981;
}

.recommendation-category h3 {
    margin-bottom: 2rem;
}

.recommendation-category.immediate h3 {
    color: #dc2626;
}

.recommendation-category.seasonal h3 {
    color: #f59e0b;
}

.recommendation-category.longterm h3 {
    color: #059669;
}

.action-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.action-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.action-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.action-title {
    font-weight: 600;
    color: #1e3a8a;
}

.urgency {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.urgency.high {
    background: #ef4444;
}

.urgency.medium {
    background: #fbbf24;
}

.seasonal-schedule {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.season-month {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.season-month h4 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.season-month ul {
    list-style: none;
    padding: 0;
}

.season-month li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 1.5rem;
}

.season-month li:before {
    content: "🌱";
    position: absolute;
    left: 0;
}

.strategy-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.strategy-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.strategy-item h4 {
    color: #059669;
    margin-bottom: 1rem;
}

/* Conclusion */
.conclusion-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.conclusion-summary {
    background: rgba(99, 102, 241, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
}

.conclusion-summary p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.next-steps {
    background: rgba(16, 185, 129, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.next-steps h3 {
    color: #059669;
    margin-bottom: 2rem;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #10b981;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.step-content h4 {
    color: #059669;
    margin-bottom: 0.5rem;
}

/* Report Footer */
.report-footer {
    background: #1e3a8a;
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

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

.footer-info p, .footer-contact p {
    margin-bottom: 0.5rem;
}

/* Responsive Design for Report */
@media (max-width: 768px) {
    .report-header {
        padding: 2rem 0;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-content h2 {
        font-size: 1.2rem;
    }
    
    .report-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .report-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .summary-grid,
    .analysis-grid,
    .soil-grid,
    .turf-grid,
    .environmental-grid,
    .financial-grid,
    .tech-overview,
    .conclusion-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .holes-grid {
        grid-template-columns: 1fr;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
    
    .condition-metrics {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

.solution-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.solution-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.solution-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.solution-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--gray-50);
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.contact-header p {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    overflow-x: hidden;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    width: 100%;
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--madden-blue);
}

.contact-card h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.contact-card p {
    color: var(--gray-600);
    margin: 0;
}

.contact-card a {
    color: var(--madden-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--madden-green);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #10b981;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #10b981;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .nav-container {
        padding: 0.75rem 15px;
        max-width: 100%;
        height: 60px;
        overflow-x: hidden;
    }
    
    .nav-menu {
        position: fixed;
        left: 0;
        top: 60px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100vw;
        transform: translateX(-100%);
        text-align: center;
        transition: transform 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 0;
        z-index: 1000;
        height: auto;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
        padding: 0.25rem;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
    }

    .nav-logo {
        height: 40px;
    }

    .brand-text {
        font-size: 1.1rem;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .benefit-card {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    /* Air2G2 Section Mobile Styles */
    .air2g2-benefits {
        padding: 4rem 0;
    }

    .air2g2-process {
        padding: 2rem 1.5rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .service-card {
        width: 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
        box-sizing: border-box;
    }

    .service-card.featured {
        transform: none;
    }

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

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

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

    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }

    /* Air2G2 Section 480px Mobile Styles */
    .air2g2-benefits {
        padding: 3rem 0;
    }

    .air2g2-process {
        padding: 1.5rem 1rem;
    }

    .air2g2-process h3 {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-grid {
        gap: 1rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .nav-logo {
        height: 45px;
    }
}

/* Animations and Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.solution-item,
.tech-feature,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #3730a3, #6b21a8);
} 