/* Modern Gradient Theme Variables */
:root {
    /* Primary Gradient Colors */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-gradient-light: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --primary-gradient-dark: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
    
    /* Secondary Gradient Colors */
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warm-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --cool-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    
    /* Background Gradients */
    --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --section-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --card-gradient: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    
    /* Solid Colors for Fallbacks */
    --primary-solid: #667eea;
    --secondary-solid: #f093fb;
    --accent-solid: #4facfe;
    
    /* Text Colors */
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-inverse: #ffffff;
    
    /* Background Colors */
    --bg-primary: #f7fafc;
    --bg-secondary: #edf2f7;
    --bg-white: #ffffff;
    
    /* Border Colors */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e0;
    
    /* Modern Shadows */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-colored: 0 10px 15px -3px rgba(102, 126, 234, 0.4), 0 4px 6px -2px rgba(102, 126, 234, 0.05);
    
    /* Typography */
    --font-family-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-family-heading: "Segoe UI", system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    /* Container Sizes */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1400px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family-base);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: 1.2;
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
    color: hsl(var(--text-secondary));
}

a {
    color: hsl(var(--primary));
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul, ol {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

li {
    margin-bottom: var(--space-xs);
    color: hsl(var(--text-secondary));
}

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

/* Layout Components */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 640px) {
    .container { padding: 0 var(--space-lg); }
}

/* Button Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-lg);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 44px;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--text-inverse));
    border-color: hsl(var(--primary));
}

.btn-primary:hover {
    background-color: hsl(var(--primary-dark));
    border-color: hsl(var(--primary-dark));
    color: hsl(var(--text-inverse));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--text-primary));
    border-color: hsl(var(--secondary));
}

.btn-secondary:hover {
    background-color: hsl(var(--secondary-dark));
    border-color: hsl(var(--secondary-dark));
    color: hsl(var(--text-primary));
}

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

.btn-outline:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--text-inverse));
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
}

.navbar {
    padding: var(--space-md) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: hsl(var(--text-primary));
    font-weight: 500;
    transition: color var(--transition-fast);
    border-radius: var(--radius);
}

.nav-link:hover {
    color: hsl(var(--primary));
    background-color: hsl(var(--surface-alt));
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-xs);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 2px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

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

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

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

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .hamburger {
        display: none;
    }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: hsl(var(--surface));
        flex-direction: column;
        padding: var(--space-lg);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100vh);
        transition: transform var(--transition-normal);
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        background-color: #fff;
    }
    
    .nav-link {
        padding: var(--space-md);
        border-bottom: 1px solid hsl(var(--border));
    }
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    color: hsl(var(--text-inverse));
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: hsl(var(--text-inverse));
    opacity: 0.9;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
    color: hsl(var(--text-inverse));
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Section Components */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: hsl(var(--text-primary));
}

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

/* About Section */
.about {
    padding: var(--space-3xl) 0;
    background-color: hsl(var(--surface));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-text h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    color: hsl(var(--primary));
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.stat {
    text-align: center;
    padding: var(--space-lg);
    background-color: hsl(var(--surface-alt));
    border-radius: var(--radius-lg);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(var(--text-secondary));
    font-weight: 500;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Services Section */
.services {
    padding: var(--space-3xl) 0;
    background-color: hsl(var(--surface-alt));
}

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

.service-card {
    background-color: hsl(var(--surface));
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
    border-radius: 50%;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: hsl(var(--text-primary));
}

.service-card p {
    margin-bottom: var(--space-lg);
    color: hsl(var(--text-secondary));
}

.service-card ul {
    text-align: left;
    padding-left: var(--space-lg);
}

.service-card li {
    color: hsl(var(--text-secondary));
    margin-bottom: var(--space-xs);
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-3xl) 0;
    background-color: hsl(var(--surface));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

.testimonial-card {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: var(--space-lg);
    font-size: 4rem;
    color: hsl(var(--primary));
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--space-lg);
    color: hsl(var(--text-secondary));
}

.testimonial-author strong {
    color: hsl(var(--text-primary));
    font-weight: 600;
}

.testimonial-author span {
    display: block;
    font-size: 0.875rem;
    color: hsl(var(--text-muted));
    margin-top: var(--space-xs);
}

/* Blog Section */
.blog {
    padding: var(--space-3xl) 0;
    background-color: hsl(var(--surface-alt));
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-2xl);
}

.blog-card {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: var(--space-lg);
}

.blog-content h3 {
    margin-bottom: var(--space-md);
}

.blog-content h3 a {
    color: hsl(var(--text-primary));
    transition: color var(--transition-fast);
}

.blog-content h3 a:hover {
    color: hsl(var(--primary));
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid hsl(var(--border));
}

.blog-date {
    font-size: 0.875rem;
    color: hsl(var(--text-muted));
}

.blog-link {
    color: hsl(var(--primary));
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: var(--space-3xl) 0;
    background-color: hsl(var(--surface));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
}

.contact-info h3 {
    margin-bottom: var(--space-lg);
    color: hsl(var(--primary));
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: brightness(0) invert(1);

}

.contact-hours {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background-color: hsl(var(--surface-alt));
    border-radius: var(--radius-lg);
}

.contact-hours h4 {
    margin-bottom: var(--space-md);
    color: hsl(var(--primary));
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Form Components */
.contact-form {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
}

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

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: hsl(var(--text-primary));
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid #fff;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background-color: hsl(var(--surface));
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.error-message {
    color: hsl(var(--error));
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    display: none;
}

.error-message.show {
    display: block;
}

/* Footer */
.footer {
    background-color: hsl(var(--text-primary));
    color: hsl(var(--text-inverse));
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer-section h4 {
    color: hsl(var(--text-inverse));
    margin-bottom: var(--space-lg);
}

.footer-section p,
.footer-section li {
    color: hsl(var(--text-inverse) / 0.8);
}

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

.footer-section ul a {
    color: hsl(var(--text-inverse) / 0.8);
    transition: color var(--transition-fast);
}

.footer-section ul a:hover {
    color: hsl(var(--text-inverse));
}

.footer-logo {
    height: 40px;
    margin-bottom: var(--space-md);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: hsl(var(--primary));
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: hsl(var(--primary-light));
    transform: translateY(-2px);
}

.social-link img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid hsl(var(--text-inverse) / 0.2);
}

.footer-bottom p {
    color: hsl(var(--text-inverse) / 0.6);
    margin: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    color: hsl(var(--text-inverse));
    padding: var(--space-lg);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.cookie-content {
    max-width: var(--container-xl);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: var(--space-lg);
}

.modal-content {
    background-color: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-weight: 600;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.modal-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-end;
    margin-top: var(--space-2xl);
}

/* Blog Post Styles */
.blog-post {
    padding: var(--space-3xl) 0;
    background-color: hsl(var(--surface));
}

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

.breadcrumb {
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
    color: hsl(var(--text-muted));
}

.breadcrumb a {
    color: hsl(var(--primary));
}

.post-header {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.post-meta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: hsl(var(--text-muted));
}

.post-image {
    margin-bottom: var(--space-2xl);
    text-align: center;
}

.post-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    max-height: 400px;
    object-fit: cover;
}

.post-body {
    line-height: 1.7;
}

.post-body .lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: hsl(var(--text-primary));
    margin-bottom: var(--space-2xl);
}

.post-body h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    color: hsl(var(--primary));
}

.post-body h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: hsl(var(--primary-dark));
}

.cta-box {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
    color: hsl(var(--text-inverse));
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    margin: var(--space-2xl) 0;
    text-align: center;
}

.cta-box h3 {
    color: hsl(var(--text-inverse));
    margin-bottom: var(--space-md);
}

.cta-box p {
    color: hsl(var(--text-inverse));
    margin-bottom: var(--space-xs);
}

.post-footer {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid hsl(var(--border));
}

.post-tags {
    margin-bottom: var(--space-lg);
}

.tag {
    display: inline-block;
    background-color: hsl(var(--surface-alt));
    color: hsl(var(--text-secondary));
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    margin-right: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.share-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.share-btn {
    padding: var(--space-sm) var(--space-lg);
    background-color: hsl(var(--primary));
    color: hsl(var(--text-inverse));
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.share-btn:hover {
    background-color: hsl(var(--primary-dark));
    color: hsl(var(--text-inverse));
}

.related-posts {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid hsl(var(--border));
}

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

.related-post {
    text-align: center;
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
}

.related-post h4 {
    margin-bottom: var(--space-sm);
}

.related-post h4 a {
    color: hsl(var(--text-primary));
}

.related-post p {
    font-size: 0.875rem;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    padding: var(--space-3xl) 0;
    background-color: hsl(var(--surface));
}

.legal-content {
    margin-top: 50px !important;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: var(--space-md);
    color: hsl(var(--primary));
}

.last-updated {
    font-size: 0.875rem;
    color: hsl(var(--text-muted));
    margin-bottom: var(--space-2xl);
    font-style: italic;
}

.legal-section {
    margin-bottom: var(--space-2xl);
}

.legal-section h2 {
    color: hsl(var(--primary));
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
}

.legal-section h3 {
    color: hsl(var(--primary-dark));
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.contact-info {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-lg);
    border-radius: var(--radius);
    margin-top: var(--space-md);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-lg) 0;
}

.cookies-table th,
.cookies-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid hsl(var(--border));
}

.cookies-table th {
    background-color: hsl(var(--surface-alt));
    font-weight: 600;
}

.cookie-settings-button {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* Thanks Page */
.thanks-page {
    padding: var(--space-3xl) 0;
    background-color: hsl(var(--surface));
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.thanks-content h1 {
    color: hsl(var(--primary));
    margin-bottom: var(--space-lg);
}

.thanks-message {
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
}

.thanks-info {
    background-color: hsl(var(--surface-alt));
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    text-align: left;
}

.thanks-info h3 {
    text-align: center;
    margin-bottom: var(--space-lg);
    color: hsl(var(--primary));
}

.thanks-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 640px) {
    :root {
        --space-3xl: 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: var(--space-md) var(--space-lg);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles */
.btn:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --border: 0 0% 0%;
        --text-secondary: 0 0% 0%;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-consent,
    .modal {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: none !important;
        padding: 0 !important;
    }
}

/* Fuel Prices Section */
.fuel-prices {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.fuel-prices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="70" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="50" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="20" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    pointer-events: none;
}

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

.price-card {
    background: var(--card-gradient);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-light);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
}

.price-card.featured {
    transform: scale(1.05);
    background: var(--primary-gradient);
    color: var(--text-inverse);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warm-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: var(--shadow-soft);
}

.fuel-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.price-card.featured h3 {
    color: var(--text-inverse);
}

.price {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-card.featured .price {
    color: var(--text-inverse);
    -webkit-text-fill-color: var(--text-inverse);
}

.price span {
    font-size: 18px;
    font-weight: normal;
    opacity: 0.8;
}

.price-note {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 10px;
}

.price-card.featured .price-note {
    color: rgba(255, 255, 255, 0.8);
}

.price-footer {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.price-footer p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.price-footer p:last-child {
    margin-bottom: 0;
    font-style: italic;
    opacity: 0.8;
}

/* Update Services Section with Modern Gradients */
.services {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.service-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-colored);
    background: var(--primary-gradient-light);
}

/* Update About Section */
.about {
    background: var(--cool-gradient);
}

/* Update Blog Section */
.blog {
    background: linear-gradient(135deg, #fdf7ff 0%, #f3e8ff 100%);
}

.blog-card {
    background: var(--card-gradient);
    transition: all 0.3s ease;
}

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

/* Update Contact Section */
.contact {
    background: var(--primary-gradient);
    color: var(--text-inverse);
}

.contact .section-header h2,
.contact .section-header p {
    color: var(--text-inverse);
}

/* Update Buttons with Gradients */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: var(--text-inverse);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-gradient-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.btn-secondary {
    background: var(--secondary-gradient);
    border: none;
    color: var(--text-inverse);
}

.btn-secondary:hover {
    background: var(--warm-gradient);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .prices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .price {
        font-size: 36px;
    }
}
