/*
Theme Name: Werkrust Theme
Theme URI: https://werkrust.nl
Author: Werkrust
Author URI: https://werkrust.nl
Description: Custom WordPress theme for Werkrust with brand colors and modern design.
Version: 1.2
*/

/**
 * Werkrust.nl - Complete Stylesheet v1.2
 * Brand colors + All landing page sections + Blog + Testimonials Slider + Responsive
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Brand Colors - Werkrust Huisstijl */
    --color-primary: #205543;
    /* Brand Green */
    --color-primary-dark: #1a4336;
    /* Darker Green */
    --color-secondary: #1E4861;
    /* Brand Blue */
    --color-secondary-dark: #163649;
    /* Darker Blue */

    /* Accent Colors */
    --color-accent: #A3392C;
    /* Brand Red */
    --color-accent-hover: #8b2f24;
    /* Darker Red */
    --color-accent-alt: #E48E37;
    /* Brand Orange */
    --color-accent-alt-hover: #d17a28;
    /* Darker Orange */

    /* DOKU Method Colors (using brand palette) */
    --color-doel: #205543;
    /* Green - Doel */
    --color-overzicht: #1E4861;
    /* Blue - Overzicht */
    --color-keuze: #A3392C;
    /* Red - Keuze */
    --color-uitvoering: #E48E37;
    /* Orange - Uitvoering */

    /* Text Colors */
    --color-text: #2D3748;
    --color-text-light: #4A5568;
    --color-text-muted: #718096;
    --color-text-inverse: #FFFFFF;
    --color-heading: #1A202C;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-light: #F7FAFC;
    --color-light-gray: #EDF2F7;
    --color-border: #E2E8F0;
    --color-topbar: #1A202C;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Container */
    --container-width: 1200px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-base: 0.3s ease-in-out;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', serif;
    color: var(--color-heading);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

p {
    margin-bottom: var(--spacing-md);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

section {
    padding: var(--spacing-3xl) 0;
}

.text-center {
    text-align: center;
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-base);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline,
.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover,
.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ============================================
   HEADER & NAV
   ============================================ */
.top-bar {
    background-color: var(--color-topbar);
    color: var(--color-white);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right a {
    margin-left: 1rem;
    opacity: 0.8;
}

.top-bar-right a:hover {
    opacity: 1;
}

.site-header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-heading);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-heading);
    transition: var(--transition-base);
}

/* ============================================
   HERO SECTION (LANDING PAGE)
   ============================================ */
.hero-section {
    position: relative;
    min-height: 600px;
    padding: 8rem 0 6rem;
    background-color: var(--color-light);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 85, 67, 0.85) 0%, rgba(30, 72, 97, 0.75) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-text {
    color: var(--color-white);
}

.hero-label {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: var(--color-white);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
}

.section-label {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    background-color: var(--color-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    background-color: var(--color-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.problem-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-heading);
}

.problem-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   DOKU SECTION - IMPROVED RESPONSIVENESS
   ============================================ */
.doku-section {
    background-color: var(--color-light);
}

.doku-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.doku-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--color-primary);
    transition: var(--transition-base);
}

.doku-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.doku-card.doku-doel {
    border-top-color: var(--color-doel);
}

.doku-card.doku-overzicht {
    border-top-color: var(--color-overzicht);
}

.doku-card.doku-keuze {
    border-top-color: var(--color-keuze);
}

.doku-card.doku-uitvoering {
    border-top-color: var(--color-uitvoering);
}

.doku-icon-wrapper {
    margin-bottom: var(--spacing-md);
}

.doku-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Merriweather', serif;
}

.doku-doel .doku-letter {
    background-color: var(--color-doel);
}

.doku-overzicht .doku-letter {
    background-color: var(--color-overzicht);
}

.doku-keuze .doku-letter {
    background-color: var(--color-keuze);
}

.doku-uitvoering .doku-letter {
    background-color: var(--color-uitvoering);
}

.doku-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.doku-card h4 {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.doku-features {
    list-style: none;
    margin-top: var(--spacing-md);
}

.doku-features li {
    padding-left: 0;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

/* ============================================
   AANBOD SECTION
   ============================================ */
.aanbod-section {
    background-color: var(--color-white);
}

.aanbod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.aanbod-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

.aanbod-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.aanbod-card.featured {
    border: 2px solid var(--color-accent);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.aanbod-image {
    height: 200px;
    overflow: hidden;
}

.aanbod-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aanbod-content {
    padding: 2rem;
}

.aanbod-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
}

.aanbod-duration {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.aanbod-content ul {
    list-style: disc;
    padding-left: 1.5rem;
}

/* ============================================
   TESTIMONIALS SECTION WITH SLIDER
   ============================================ */
.testimonials-section {
    background-color: var(--color-light);
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
}

.testimonial-avatar {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.testimonial-info h4 {
    color: var(--color-heading);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    color: var(--color-text-light);
    font-style: italic;
    line-height: 1.8;
    font-size: 1.125rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-border);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-dot.active {
    background-color: var(--color-accent);
    width: 32px;
    border-radius: 6px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.newsletter-section .section-label,
.newsletter-section .section-title {
    color: var(--color-white);
}

.newsletter-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-wrapper {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    position: relative;
    background-color: var(--color-light);
    padding: 6rem 0;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(32, 85, 67, 0.05) 0%, rgba(163, 57, 44, 0.05) 100%);
}

.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    max-width: 500px;
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-privacy {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-md);
}

/* ============================================
   BLOG ARCHIVE (Harmonia Grid)
   ============================================ */
.blog-header {
    text-align: center;
    padding: 4rem 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    margin-bottom: 4rem;
}

.blog-header h1 {
    color: var(--color-white);
    font-size: 3.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--color-heading);
}

.blog-card-title a:hover {
    color: var(--color-accent);
}

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.blog-card-excerpt {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card-footer {
    margin-top: auto;
}

.btn-read-more {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition-base);
}

.btn-read-more:hover {
    background-color: var(--color-accent-hover);
}

/* ============================================
   BLOG POST (Single)
   ============================================ */
.blog-post-header {
    text-align: center;
    padding: 4rem 0 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.blog-post-meta {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.blog-featured-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--color-heading);
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.blog-content blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-primary);
    font-family: 'Merriweather', serif;
}

.blog-highlight {
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    border-left: 4px solid var(--color-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--color-white);
    padding: 4rem 0;
    border-top: 1px solid var(--color-border);
    margin-top: 4rem;
}

.footer-grid,
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-col,
.footer-column {
    min-width: 0;
}

.footer-col h4,
.footer-column h4 {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-light);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-light);
    border-radius: 50%;
    color: var(--color-heading);
    font-weight: 600;
}

.footer-social a:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* ============================================
   RESPONSIVE - IMPROVED DOKU TILES
   ============================================ */
@media (max-width: 1200px) {
    .doku-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .doku-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem var(--spacing-lg);
        border-bottom: 1px solid var(--color-border);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        min-height: 500px;
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-header {
        margin-bottom: var(--spacing-xl);
    }

    .problem-grid,
    .doku-grid,
    .aanbod-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    section {
        padding: var(--spacing-2xl) 0;
    }

    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
}