/*
Theme Name: Schoenen Digital
Description: Custom WordPress theme for Schoenen.digital - E-commerce Growth & SEO Excellence
Version: 1.0
Author: Schoenen.digital
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a365d;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Fancy floating particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(226, 232, 240, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(66, 153, 225, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(203, 213, 224, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

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

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

/* Header */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e2e8f0;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e0);
    transition: width 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(226, 232, 240, 0.8);
}

.logo:hover::after {
    width: 100%;
}

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

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(226, 232, 240, 0.1), rgba(66, 153, 225, 0.1));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    color: #f8fafc;
    text-shadow: 0 0 10px rgba(248, 250, 252, 0.5);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(226, 232, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(66, 153, 225, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(203, 213, 224, 0.08) 0%, transparent 50%);
    opacity: 0.8;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(226, 232, 240, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(66, 153, 225, 0.05) 50%, transparent 70%);
    animation: shimmer 6s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    animation: slideInUp 1s ease-out;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(226, 232, 240, 0.3);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(226, 232, 240, 0.3); }
    to { text-shadow: 0 0 40px rgba(226, 232, 240, 0.6); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
    font-weight: 400;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #cbd5e0;
    max-width: 600px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    color: #1a365d;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(226, 232, 240, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 0.6s both;
}

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

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(226, 232, 240, 0.5);
    text-shadow: 0 0 10px rgba(26, 54, 93, 0.3);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

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

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(226, 232, 240, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(66, 153, 225, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a365d;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4299e1 0%, #e2e8f0 100%);
    border-radius: 2px;
}

.availability-system {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(226, 232, 240, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.system-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.1);
}

.system-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1.1rem;
}

.live-indicator {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.last-updated {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #cbd5e0;
}

.auto-refresh {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.refresh-icon {
    animation: spin 2s linear infinite;
    font-size: 0.8rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.availability-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #e2e8f0;
    font-weight: 600;
}

.legend-light {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.legend-light.available {
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.legend-light.limited {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.legend-light.unavailable {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4299e1 0%, #e2e8f0 100%);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(226, 232, 240, 0.05) 0%, rgba(66, 153, 225, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(226, 232, 240, 0.6);
}

.service-card:hover::after {
    opacity: 1;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4299e1 0%, #2d5a87 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(66, 153, 225, 0.4);
}

.availability-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    min-width: 140px;
}

.availability-indicator.available {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #1e40af;
}

.availability-indicator.limited {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #92400e;
}

.availability-indicator.unavailable {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #991b1b;
}

.status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.availability-indicator.available .status-light {
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.availability-indicator.limited .status-light {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.availability-indicator.unavailable .status-light {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.status-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.status-text {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.capacity-info {
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 500;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a365d;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #0f172a;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: #2d3748;
}

/* Social Proof Section */
.social-proof {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.proof-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.proof-subtitle {
    color: #4a5568;
    font-size: 1.1rem;
    font-style: italic;
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #4299e1;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 3rem;
    color: #4299e1;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: #2d3748;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 700;
    color: #1a365d;
    font-size: 1.1rem;
}

.author-title {
    color: #4a5568;
    font-size: 0.9rem;
    font-style: italic;
}

.result-badge {
    background: linear-gradient(135deg, #4299e1 0%, #2d5a87 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
}

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

.proof-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.proof-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.proof-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.proof-stat .stat-label {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ROI Calculator Section */
.roi-calculator {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 50%, #4299e1 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.roi-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(226, 232, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(203, 213, 224, 0.08) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

.roi-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e2e8f0;
    position: relative;
    z-index: 2;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

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

.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group label {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 1.1rem;
}

.slider-container {
    position: relative;
}

.slider-container input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(226, 232, 240, 0.3);
    outline: none;
    -webkit-appearance: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-value {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-top: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.result-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(226, 232, 240, 0.5);
}

.result-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
    font-weight: 600;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(226, 232, 240, 0.5);
}

.result-value.highlight {
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(226, 232, 240, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4299e1 0%, #10b981 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 50%;
}

.roi-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    text-align: center;
}

.comparison-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.investment-bar, .return-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.investment-bar span, .return-bar span {
    min-width: 100px;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.bar {
    height: 20px;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.investment-amount {
    background: rgba(226, 232, 240, 0.3);
    width: 20%;
}

.return-amount {
    background: linear-gradient(90deg, #4299e1 0%, #60a5fa 100%);
    width: 100%;
}

/* Value Proposition */
.value-prop {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 50%, #4299e1 100%);
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(226, 232, 240, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(203, 213, 224, 0.08) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.value-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.value-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.highlight {
    color: #e2e8f0;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(226, 232, 240, 0.5);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(226, 232, 240, 0.5);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e2e8f0;
    text-shadow: 0 0 20px rgba(226, 232, 240, 0.5);
    margin-bottom: 0.5rem;
    counter-reset: statCounter;
}

.stat-number.counting {
    animation: countUp 2s ease-out forwards;
}

.stat-label {
    color: #e2e8f0;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Guarantee Section */
.guarantee {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

.guarantee-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.guarantee h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.guarantee-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 500;
}

.guarantee-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.guarantee-icon {
    font-size: 3rem;
    line-height: 1;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
}

.guarantee-text p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guarantee-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2d3748;
    font-weight: 500;
}

.checkmark {
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.guarantee-footer {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 100%, rgba(226, 232, 240, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 0% 50%, rgba(66, 153, 225, 0.08) 0%, transparent 50%);
    animation: pulse 12s ease-in-out infinite;
}

.contact-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    text-shadow: 0 0 30px rgba(226, 232, 240, 0.5);
    animation: glow 4s ease-in-out infinite alternate;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(226, 232, 240, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.contact-item span {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(226, 232, 240, 0.3));
}

.contact-item a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(226, 232, 240, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover a {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(226, 232, 240, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0d1b2a 0%, #1e293b 100%);
    color: #9ca3af;
    text-align: center;
    padding: 2rem 0;
    position: relative;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(226, 232, 240, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

footer p {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* WordPress Admin Bar Adjustment */
.admin-bar header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .value-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .availability-indicator {
        align-self: flex-end;
    }
    
    .availability-legend {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .system-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .last-updated {
        align-items: flex-start;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
} 