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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modern Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

p {
    line-height: 1.7;
    color: #555;
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1a5d1a 0%, #4ade80 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 93, 26, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 93, 26, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: white;
    color: #1a5d1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

/* Modern Card Styles */
.feature-card, .value-card, .faq-card, .team-member-card, .comparison-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-card:nth-child(1), .value-card:nth-child(1), .faq-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2), .value-card:nth-child(2), .faq-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3), .value-card:nth-child(3), .faq-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4), .value-card:nth-child(4), .faq-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5), .value-card:nth-child(5), .faq-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6), .value-card:nth-child(6), .faq-card:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Focus States */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1a5d1a, #4ade80);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #15803d, #22c55e);
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #1a5d1a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-success {
    background: linear-gradient(135deg, #1a5d1a 0%, #4ade80 100%);
}

.gradient-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.gradient-info {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

/* Modern Shadows */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Modern Border Radius */
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Enhanced Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Modern Spacing Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Section Spacing */
section {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

/* Modern Badge Styles */
.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* Enhanced Navigation Hover Effects */
.nav-menu a {
    position: relative;
    overflow: hidden;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ade80;
    transition: width 0.3s ease;
}

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

/* Modern Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Stats Animation */
.stat-number {
    font-variant-numeric: tabular-nums;
    transition: all 0.3s ease;
}

.feature-card:hover .stat-number {
    transform: scale(1.1);
    color: #1a5d1a;
}

/* Modern Progress Bars */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a5d1a, #4ade80);
    border-radius: 4px;
    transition: width 1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Enhanced Mobile Menu */
@media (max-width: 768px) {
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Modern Focus Indicators */
.focus-ring:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.3);
}

/* Enhanced Print Styles */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    .btn {
        border: 1px solid black !important;
        background: white !important;
        color: black !important;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
header {
    background: linear-gradient(135deg, #1a5d1a 0%, #4ade80 100%);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 2px;
}

.logo span {
    font-size: 14px;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-menu a:hover {
    opacity: 0.8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a5d1a 0%, #4ade80 100%);
    color: white;
    display: flex;
    align-items: center;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6,
.hero p,
.hero span,
.hero div {
    color: white !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,208C672,235,768,245,864,224C960,203,1056,149,1152,138.7C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image {
    position: relative;
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
    border: 3px solid rgba(255,255,255,0.2);
}

.animated-dashboard {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-end;
    padding: 20px;
    pointer-events: none;
}

.overlay-text {
    background: rgba(26, 93, 26, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transform: translateX(0);
    animation: slideIn 0.5s ease-out;
}

.overlay-text:nth-child(1) {
    animation-delay: 0.2s;
}

.overlay-text:nth-child(2) {
    animation-delay: 0.4s;
}

.overlay-text:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Overview */
.features-overview {
    padding: 80px 0;
    background: white;
}

.features-overview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a5d1a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.feature-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a5d1a;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.feature-card p {
    color: #666;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a5d1a 0%, #4ade80 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats h1,
.stats h2,
.stats h3,
.stats h4,
.stats h5,
.stats h6,
.stats p,
.stats span,
.stats div {
    color: white !important;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,218.7C672,203,768,149,864,149.3C960,149,1056,203,1152,208C1248,213,1344,171,1392,149.3L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 0;
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat p {
    font-size: 18px;
    opacity: 0.9;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Demo Section */
.demo {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5d1a 0%, #4ade80 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.demo h1,
.demo h2,
.demo h3,
.demo h4,
.demo h5,
.demo h6,
.demo p,
.demo span,
.demo div,
.demo li {
    color: white !important;
}

.demo h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.demo > .container > p {
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.demo-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.demo-text ul, .feature-list {
    list-style: none;
    padding: 0;
}

.demo-text li, .feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: white;
}

.demo-text li:before, .feature-list li:before {
    content: "✓";
    color: white;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Image Carousel Styles */
.demo-gallery {
    width: 100%;
    position: relative;
}

.image-carousel {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.carousel-slide {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    transform: scale(0.95);
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: scale(1);
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    display: block;
    object-fit: cover;
}

.image-caption {
    padding: 20px;
    background-color: rgba(26, 93, 26, 0.95);
    color: white;
    text-align: center;
}

.image-caption h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.image-caption p {
    font-size: 16px;
    opacity: 0.9;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    background: #f8f9fa;
    border-radius: 0 0 10px 10px;
}

.prev-btn, .next-btn {
    background: #1a5d1a;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.prev-btn:hover, .next-btn:hover {
    background: #4ade80;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #1a5d1a;
}

.dot:hover {
    background: #4ade80;
}

/* Add hover effects to feature cards */
.feature-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-section p {
    margin-bottom: 10px;
    color: #ccc;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.footer-section ul {
    list-style: none;
}

.footer-section h3 {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4ade80;
}

/* Page-specific hero styles for other pages */
.page-hero {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, #1a5d1a 0%, #4ade80 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,208C672,235,768,245,864,224C960,203,1056,149,1152,138.7C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced feature cards */
.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f0 100%);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a5d1a, #4ade80);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease-out;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 93, 26, 0.1);
    border-color: rgba(74, 222, 128, 0.5);
}

.feature-card:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
/* Consistent contact form styling */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #1a5d1a;
    box-shadow: 0 0 0 3px rgba(26, 93, 26, 0.2);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Enhanced About Page Styles */
.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a5d1a, #4ade80);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content h2 {
    font-size: 36px;
    color: #1a5d1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.story-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-highlights {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1a5d1a;
}

.highlight-number {
    font-size: 24px;
    font-weight: 700;
    color: #1a5d1a;
    min-width: 60px;
}

.highlight-text {
    color: #333;
    font-weight: 500;
}

.story-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 93, 26, 0.9));
    color: white;
    padding: 30px;
    text-align: center;
}

.story-overlay h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.story-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

/* Mission & Vision Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mission-card, .vision-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a5d1a, #4ade80);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a5d1a, #4ade80);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(26, 93, 26, 0.3);
}

.icon-large {
    font-size: 36px;
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 28px;
    color: #1a5d1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-card p, .vision-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.mission-focus, .vision-goals {
    display: grid;
    gap: 15px;
}

.focus-item, .goal-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.focus-icon {
    background: #f0f9f0;
    color: #1a5d1a;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.goal-number {
    background: #1a5d1a;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a5d1a, #4ade80);
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a5d1a, #4ade80);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(26, 93, 26, 0.3);
}

.avatar-text {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.member-info h3 {
    font-size: 24px;
    color: #1a5d1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.member-role {
    color: #4ade80;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.member-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.member-experience {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f0f9f0;
    padding: 10px 15px;
    border-radius: 25px;
}

.experience-years {
    font-size: 18px;
    font-weight: 700;
    color: #1a5d1a;
}

.experience-field {
    color: #666;
    font-size: 14px;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1a5d1a, #4ade80);
}

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

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5d1a, #4ade80);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 15px rgba(26, 93, 26, 0.3);
}

.value-icon {
    font-size: 28px;
    color: white;
}

.value-card h3 {
    font-size: 22px;
    color: #1a5d1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Timeline Section */
.timeline-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1a5d1a, #4ade80);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 50%;
}

.timeline-item:nth-child(even) {
    padding-left: 0;
    padding-right: 50%;
    text-align: right;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #1a5d1a, #4ade80);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(26, 93, 26, 0.3);
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-year {
    left: auto;
    right: 50%;
    transform: translate(50%, -50%);
}

.timeline-content {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-top: 20px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: auto;
    right: -10px;
    border-right: none;
    border-left: 10px solid white;
}

.timeline-content h4 {
    font-size: 20px;
    color: #1a5d1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* About page layout improvements */
.story-content h2,
.features-section h2,
.team-section h2,
.values-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a5d1a;
}

/* Enhanced Features Page Styles */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-stats {
    display: flex;
    gap: 20px;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-badge:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #1a5d1a;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-card-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    align-items: start;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    grid-template-areas:
        "header visual"
        "body visual";
}

.feature-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #1a5d1a, #4ade80);
    border-radius: 20px 0 0 20px;
}

.feature-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-card-enhanced.reverse {
    direction: rtl;
}

.feature-card-enhanced.reverse .feature-header {
    direction: ltr;
}

.feature-card-enhanced.reverse .feature-body {
    direction: ltr;
}

.feature-header {
    grid-area: header;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
    align-self: start;
}

.feature-icon-wrapper {
    background: linear-gradient(135deg, #1a5d1a, #4ade80);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(26, 93, 26, 0.3);
    flex-shrink: 0;
    margin-bottom: 10px;
}

.feature-icon-large {
    font-size: 36px;
    color: white;
}

.feature-header h3 {
    font-size: 28px;
    color: #1a5d1a;
    margin: 0;
    line-height: 1.3;
}

.feature-body {
    grid-area: body;
    flex: 1;
    align-self: start;
}

.feature-body p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.feature-benefits {
    display: grid;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.benefit-icon {
    background: #f0f9f0;
    color: #1a5d1a;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    color: #333;
    font-weight: 500;
}

.feature-visual {
    grid-area: visual;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    align-self: start;
}

.feature-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 93, 26, 0.9));
    color: white;
    padding: 20px;
    text-align: center;
}

.feature-overlay span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Demo Cards */
.feature-demo-card, .security-demo-card, .production-demo-card, .compliance-demo-card {
    background: linear-gradient(135deg, #1a5d1a, #4ade80);
    color: white;
    padding: 25px;
    border-radius: 15px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(26, 93, 26, 0.3);
}

.demo-header, .security-header, .production-header, .compliance-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.demo-icon, .security-icon, .production-icon, .compliance-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.demo-header h4, .security-header h4, .production-header h4, .compliance-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.demo-content {
    flex: 1;
}

.demo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-label {
    opacity: 0.9;
}

.demo-value {
    font-weight: 600;
}

.demo-value.paid {
    color: #4ade80;
}

.demo-footer {
    margin-top: 20px;
}

.demo-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Security Demo Card */
.security-metrics {
    display: grid;
    gap: 15px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.metric-label {
    opacity: 0.9;
}

.metric-status {
    background: rgba(74, 222, 128, 0.8);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Production Demo Card */
.production-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.prod-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Compliance Demo Card */
.compliance-items {
    display: grid;
    gap: 12px;
    flex: 1;
}

.compliance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.compliance-item.compliant {
    border-left: 3px solid #4ade80;
}

.status {
    font-size: 14px;
    font-weight: 600;
}

/* Features Comparison Section */
.features-comparison {
    margin-top: 80px;
    text-align: center;
}

.features-comparison h2 {
    font-size: 36px;
    color: #1a5d1a;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.comparison-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #1a5d1a;
}

.comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.comp-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.comparison-item h4 {
    font-size: 22px;
    color: #1a5d1a;
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Enhanced Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-method-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.contact-method-card:nth-child(1) {
    border-top-color: #4ade80;
}

.contact-method-card:nth-child(2) {
    border-top-color: #f59e0b;
}

.contact-method-card:nth-child(3) {
    border-top-color: #3b82f6;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.method-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a5d1a, #4ade80);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 15px rgba(26, 93, 26, 0.3);
}

.method-icon {
    font-size: 28px;
    color: white;
}

.method-content h3 {
    font-size: 22px;
    color: #1a5d1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.method-detail {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.method-response {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.method-action {
    display: inline-block;
    background: linear-gradient(135deg, #1a5d1a, #4ade80);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.method-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 93, 26, 0.3);
}

.office-hours {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.office-hours h3 {
    color: #1a5d1a;
    margin-bottom: 20px;
    font-size: 20px;
}

.hours-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #666;
}

.emergency-contact {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.emergency-contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.emergency-contact a:hover {
    text-decoration: underline;
}

/* Modern Form Styles */
.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #1a5d1a;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 18px;
}

.modern-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-wrapper, .select-wrapper, .textarea-wrapper {
    position: relative;
}

.field-icon, .select-icon, .textarea-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a5d1a;
    font-size: 18px;
    pointer-events: none;
}

.select-icon {
    font-size: 12px;
    color: #666;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #1a5d1a;
    box-shadow: 0 0 0 3px rgba(26, 93, 26, 0.1);
    outline: none;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding-right: 50px;
}

.select-wrapper select {
    appearance: none;
    background: #fafafa;
    cursor: pointer;
}

.form-options {
    margin: 25px 0;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #f0f9f0;
    border-radius: 10px;
    border-left: 4px solid #1a5d1a;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
    accent-color: #1a5d1a;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: #333;
    line-height: 1.5;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-icon {
    transition: transform 0.3s ease;
}

.form-submit:hover .submit-icon {
    transform: rotate(15deg);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.faq-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #1a5d1a;
}

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

.faq-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a5d1a, #4ade80);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 10px rgba(26, 93, 26, 0.3);
}

.faq-icon {
    font-size: 24px;
    color: white;
}

.faq-content h3 {
    font-size: 20px;
    color: #1a5d1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Location Section */
.location-section {
    background: linear-gradient(135deg, #1a5d1a 0%, #4ade80 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,208C672,235,768,245,864,224C960,203,1056,149,1152,138.7C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 0;
}

.location-section .container {
    position: relative;
    z-index: 1;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.location-info h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.address-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.address-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.location-icon {
    font-size: 32px;
}

.address-header h3 {
    margin: 0;
    color: #1a5d1a;
    font-size: 24px;
}

.address-details p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.address-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.location-features {
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.feature-check {
    background: #4ade80;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.location-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.location-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 93, 26, 0.9));
    color: white;
    padding: 30px;
    text-align: center;
}

.location-overlay h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.location-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsive Design Improvements */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .page-hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-image img {
        max-width: 100%;
    }

    .demo-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-year {
        left: 30px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-year {
        left: 30px;
        right: auto;
    }

    .timeline-content::before {
        left: -10px;
        right: auto;
        border-right: 10px solid white;
        border-left: none;
    }

    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
        border-right: 10px solid white;
        border-left: none;
    }

    .feature-card-enhanced {
        grid-template-columns: 1fr;
        gap: 15px 25px;
        padding: 30px;
        text-align: center;
        align-items: start;
        grid-template-areas:
            "header"
            "visual"
            "body";
    }

    .feature-card-enhanced.reverse {
        direction: ltr;
    }

    .feature-header {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .production-stats {
        flex-direction: column;
        gap: 20px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modern-form {
        padding: 30px 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .address-actions {
        flex-direction: column;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

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