/* 
 * eExpense Control - Main Stylesheet
 * Domain: efcontrol.shop
 */

/* Base Styles and Variables */
:root {
    --background-color: #F8FAFC;
    --border-color: #E2E8F0;
    --accent-color: #85BB65;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: #6a9951;
}

ul {
    list-style: none;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #6a9951;
    color: white;
}

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

.btn-secondary:hover {
    background-color: #f1f5f9;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 200px;
}

.cookie-link {
    margin-left: 15px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(248, 250, 252, 0.95);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    padding: 15px 0;
    backdrop-filter: blur(5px);
}

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

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    gap: 30px;
    /* Base styles that won't be overridden by media queries */
    position: static;
    background-color: transparent;
    box-shadow: none;
    width: auto;
}

nav ul li a {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding-top: 150px;
    padding-bottom: 100px;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 1));
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Dashboard Section */
.dashboard-section {
    background-color: white;
}

.dashboard-demo {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dashboard-metrics {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.metric-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

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

.metric-icon img {
    width: 50px;
    height: 50px;
}

.metric-data h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.live-data {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

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

.unit {
    font-size: 1rem;
    color: var(--text-secondary);
}

.trend {
    font-size: 0.9rem;
    font-weight: 600;
}

.trend.positive {
    color: var(--accent-color);
}

.trend.negative {
    color: #e53e3e;
}

.dashboard-preview {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

/* Security Section */
.security-section {
    background-color: var(--background-color);
}

.security-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.security-text {
    flex: 1;
}

.security-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.security-text p {
    margin-bottom: 20px;
}

.security-features {
    margin-top: 20px;
}

.security-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.security-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.security-visual {
    flex: 1;
}

.crypto-3d-schema {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-form-container {
    flex: 2;
}

.contact-form {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(133, 187, 101, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    accent-color: var(--accent-color);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.limit-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.limit-demo-cta {
    margin-top: 30px;
}

/* Partner Ecosystem Section */
.partner-ecosystem-section {
    background-color: #f1f5f9;
}

.partner-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.partner-text, .partner-carousel {
    flex: 1;
    min-width: 300px;
}

.partner-stats {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.carousel-container {
    position: relative;
    height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
    opacity: 0;
    transform: rotateY(180deg) translateZ(300px);
}

.carousel-item.active {
    opacity: 1;
    transform: rotateY(0) translateZ(0);
    z-index: 10;
}

.carousel-item:nth-child(2) {
    transform: rotateY(60deg) translateZ(200px);
    opacity: 0.7;
    z-index: 9;
}

.carousel-item:nth-child(3) {
    transform: rotateY(120deg) translateZ(200px);
    opacity: 0.4;
    z-index: 8;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.carousel-prev, .carousel-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
}

.dot.active {
    background-color: var(--accent-color);
}

/* Dark Side of Savings Section */
.dark-side-section {
    background-color: var(--background-color);
}

.dark-side-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.dark-side-visual, .dark-side-text {
    flex: 1;
    min-width: 300px;
}

.loss-animation {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.animation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.money-drain {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 0, 0, 0.2);
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

.loss-counter {
    margin-top: 20px;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.counter-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.counter-label {
    font-size: 1rem;
}

.loss-categories {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.loss-category {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.category-icon img {
    width: 40px;
    height: 40px;
}

.loss-meter {
    margin-top: 10px;
    height: 10px;
    background-color: #e2e8f0;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background-color: #ef4444;
    border-radius: 5px;
}

.meter-value {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 0.8rem;
    color: #ef4444;
    font-weight: 600;
}

.dark-side-cta {
    margin-top: 30px;
}

/* Voice Assistant Section */
.voice-assistant-section {
    background-color: #f1f5f9;
}

.voice-assistant-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.voice-assistant-text, .voice-assistant-visual {
    flex: 1;
    min-width: 300px;
}

.voice-commands {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.command-example {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 15px;
    box-shadow: var(--shadow-sm);
}

.command-icon img {
    width: 30px;
    height: 30px;
}

.command {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.response {
    color: var(--text-secondary);
    font-style: italic;
}

.assistant-interface {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.voice-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.voice-wave {
    width: 100%;
    height: 40px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCw1MCBRMjUsMzAgNTAsNTAgUTc1LDcwIDEwMCw1MCIgc3Ryb2tlPSJ3aGl0ZSIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIj48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJkIiBkdXI9IjJzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgdmFsdWVzPSJNMCw1MCBRMjUsMzAgNTAsNTAgUTc1LDcwIDEwMCw1MDsgTTAsNTAgUTI1LDcwIDUwLDUwIFE3NSwzMCAxMDAsNTA7IE0wLDUwIFEyNSwzMCA1MCw1MCBRNzUsNzAgMTAwLDUwIi8+PC9wYXRoPjwvc3ZnPg==');
    background-size: cover;
    opacity: 0.7;
}

.assistant-prompt {
    margin: 10px 0;
    text-align: center;
}

.voice-trigger {
    background-color: var(--accent-color);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.voice-trigger:hover {
    transform: scale(1.1);
}

.voice-trigger img {
    width: 30px;
    height: 30px;
}

/* Disaster Recovery Section */
.disaster-recovery-section {
    background-color: var(--background-color);
}

.recovery-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.recovery-visual, .recovery-text {
    flex: 1;
    min-width: 300px;
}

.recovery-visual {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.protection-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.data-shield {
    width: 120px;
    height: 120px;
    background-color: rgba(133, 187, 101, 0.3);
    border-radius: 50%;
    position: relative;
    animation: shield-pulse 3s infinite;
}

@keyframes shield-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(133, 187, 101, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(133, 187, 101, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(133, 187, 101, 0);
    }
}

.recovery-metrics {
    display: flex;
    justify-content: space-around;
    width: 100%;
    position: absolute;
    bottom: 30px;
}

.metric {
    text-align: center;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.metric-label {
    font-size: 0.8rem;
}

.recovery-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recovery-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.compliance-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    background-color: #f1f5f9;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Client Club Section */
.client-club-section {
    background-color: #f1f5f9;
}

/* Price Map Section */
.price-map-section {
    background-color: var(--background-color);
    padding: 80px 0;
}

.price-map-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.price-map-text {
    flex: 1;
}

.price-map-visual {
    flex: 1;
}

.map-features {
    margin: 20px 0;
    padding-left: 20px;
}

.map-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.map-features li:before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.ai-advisor {
    display: flex;
    align-items: center;
    background-color: #f0f7ff;
    border-radius: 10px;
    padding: 15px;
    margin-top: 30px;
    border-left: 4px solid var(--accent-color);
}

.advisor-icon {
    margin-right: 15px;
}

.advisor-icon img {
    width: 50px;
    height: 50px;
}

.advisor-message p {
    font-style: italic;
    margin-bottom: 5px;
}

.advisor-name {
    font-weight: 500;
    color: var(--accent-color);
}

/* Interactive Price Map */
.interactive-map {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 100%;
}

.map-container {
    position: relative;
    padding: 20px;
    background-color: #f8f9fa;
}

.us-map {
    position: relative;
    height: 300px;
    background-color: #e9ecef;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.map-region {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-region:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.map-region.active {
    box-shadow: 0 0 0 3px var(--accent-color), 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.map-region.west {
    background-color: #ff9f43;
    width: 25%;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.map-region.midwest {
    background-color: #54a0ff;
    width: 25%;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.map-region.south {
    background-color: #1dd1a1;
    width: 25%;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.map-region.northeast {
    background-color: #ee5253;
    width: 25%;
    height: 100%;
}

.price-legend {
    margin-top: 15px;
    background-color: white;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.legend-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #495057;
}

.legend-scale {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.scale-item {
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 4px;
    color: white;
}

.scale-item.low {
    background-color: #1dd1a1;
}

.scale-item.medium {
    background-color: #54a0ff;
}

.scale-item.high {
    background-color: #ee5253;
}

.trend-indicators {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.trend {
    display: flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
}

.trend.up {
    color: #ee5253;
}

.trend.stable {
    color: #54a0ff;
}

.trend.down {
    color: #1dd1a1;
}

.arrow {
    font-weight: bold;
    margin-right: 3px;
}

.price-details {
    padding: 20px;
    background-color: white;
}

.detail-header {
    font-weight: bold;
    margin-bottom: 15px;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
}

.price-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.stat-value {
    font-weight: bold;
    font-size: 1.1rem;
    color: #495057;
}

.route-optimizer {
    width: 100%;
    padding: 10px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.route-optimizer:hover {
    background-color: #6a9951;
}

@media (max-width: 768px) {
    .price-map-content {
        flex-direction: column;
    }
    
    .price-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .us-map {
        height: 200px;
    }
}

.club-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.club-text, .club-visual {
    flex: 1;
    min-width: 300px;
}

.club-benefits {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
}

.upcoming-webinars {
    margin-top: 30px;
}

.upcoming-webinars h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.webinar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.webinar-date {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.webinar-details {
    flex: 1;
}

.webinar-details h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.webinar-details p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.webinar-register {
    color: var(--accent-color);
    font-weight: 600;
    white-space: nowrap;
}

.membership-card {
    background: linear-gradient(135deg, #85BB65, #6a9951);
    border-radius: var(--border-radius);
    overflow: hidden;
    color: white;
    box-shadow: var(--shadow-md);
    max-width: 350px;
    margin: 0 auto;
}

.card-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-logo {
    height: 40px;
}

.card-title {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.card-body {
    padding: 30px 20px;
}

.member-name, .member-company {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.member-since {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 15px;
}

.card-footer {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
}

.club-cta {
    text-align: center;
    margin-top: 30px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.link-group {
    flex: 1;
    min-width: 150px;
}

.link-group h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a {
    color: #cbd5e0;
    transition: var(--transition);
}

.link-group ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
    }
    
    .security-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .metric-card {
        min-width: 100%;
    }
}

/* Custom Checkbox as Coins */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

input[type="checkbox"]:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
}

/* Row Highlight Effect */
tr:nth-child(odd) {
    background-color: var(--background-color);
}

tr:hover {
    background-color: rgba(133, 187, 101, 0.1);
}

/* Additional EFS Sections - Will be expanded in separate files */
.gamification-section,
.price-map-section,
.virtual-controller-section,
.api-integration-section,
.limit-customization-section,
.partner-ecosystem-section,
.dark-side-section,
.voice-assistant-section,
.disaster-recovery-section,
.client-club-section {
    padding: 80px 0;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-in-out;
}

.bounce {
    animation: bounce 1s ease-in-out infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section .container,
    .dashboard-content,
    .partner-content,
    .recovery-content {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image,
    .dashboard-text,
    .dashboard-visual,
    .partner-text,
    .partner-visual,
    .recovery-text,
    .recovery-visual {
        width: 100%;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .dashboard-metrics {
        flex-direction: column;
    }
    
    .metric-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 0 15px;
    }
    
    .header-cta {
        display: none;
    }
    
    /* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

@media (max-width: 768px) {
    header .container {
        padding: 0 15px;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        z-index: 1000;
        position: relative;
    }
    
    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #002366; /* Navy blue from the color scheme */
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        color: #002366; /* Navy blue from the color scheme */
    }
    
    nav ul li a:hover {
        background-color: #f8f9fa;
        color: #BF0A30; /* Patriot red from the color scheme */
    }
}
    

    
    /* Other mobile styles */
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    section {
        padding: 60px 0;
    }
}
