/* Custom CSS Properties (Variables) */
:root {
 --primary-color: #6a88ff; /* Vibrant Blue */
 --secondary-color: #8c7ae6; /* Amethyst */
 --accent-color: #ff6b6b; /* Energetic Red */
 --text-color: #333333;
 --light-text-color: #f8f8f2;
 --background-color: #f0f2f5; /* Light Grey Blue */
 --card-background: rgba(255, 255, 255, 0.4); /* Frosted Glass light */
 --glass-border: rgba(255, 255, 255, 0.6);
 --glass-shadow: rgba(0, 0, 0, 0.08);
 --glass-footer-bg: rgba(255, 255, 255, 0.2);
 --hover-effect: rgba(255, 255, 255, 0.2);
 --gradient-start: #d3e1ff; /* Lightest blue */
 --gradient-end: #acd2ff; /* Mid-light blue */
 --gradient-alt-start: #e0f2f7; /* Very light cyan */
 --gradient-alt-end: #cbf0f8; /* Light cyan */

 --font-family-primary: 'Arial', sans-serif;
 --font-family-secondary: 'Verdana', sans-serif;

 --border-radius-small: 8px;
 --border-radius-medium: 12px;
 --border-radius-large: 20px;

 --spacing-xs: 8px;
 --spacing-sm: 16px;
 --spacing-md: 24px;
 --spacing-lg: 32px;
 --spacing-xl: 48px;
}

/* Base Reset & Typography */
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-family-primary);
 line-height: 1.6;
 color: var(--text-color);
 background: var(--background-color);
 min-height: 100vh;
 display: flex;
 flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-family-secondary);
 margin-bottom: var(--spacing-sm);
 color: var(--text-color);
 line-height: 1.2;
}

h1 { font-size: 2.2em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.4em; }
h4 { font-size: 1.2em; }

p {
 margin-bottom: var(--spacing-sm);
}

a {
 color: var(--primary-color);
 text-decoration: none;
 transition: color 0.3s ease;
}

a:hover {
 color: var(--secondary-color);
}

img {
 max-width: 100%;
 height: auto;
 display: block;
 object-fit: cover;
}

ul {
 list-style: none;
}

/* Helper Classes */
.section-padding {
 padding: var(--spacing-xl) var(--spacing-md);
}

.section-title {
 text-align: center;
 margin-bottom: var(--spacing-lg);
 font-size: 2.5em;
 position: relative;
 padding-bottom: var(--spacing-sm);
}

.section-title::after {
 content: '';
 position: absolute;
 left: 50%;
 bottom: 0;
 transform: translateX(-50%);
 width: 60px;
 height: 4px;
 background: var(--primary-color);
 border-radius: 2px;
}

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

.mt-4 {
 margin-top: var(--spacing-md);
}

.mb-4 {
 margin-bottom: var(--spacing-md);
}

.bg-gradient-light {
 background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.bg-light-transp {
 background: linear-gradient(135deg, var(--gradient-alt-start), var(--gradient-alt-end));
}

/* Glassmorphism Effect */
.glass-card, .glass-container, .glass-footer {
 background: var(--card-background);
 backdrop-filter: blur(10px);
 border: 1px solid var(--glass-border);
 border-radius: var(--border-radius-large);
 box-shadow: 0 4px 30px var(--glass-shadow);
 overflow: hidden; /* For inner content */
}

.glass-container {
 padding: var(--spacing-lg);
}

.glass-pill {
 background: rgba(255, 255, 255, 0.3);
 border: 1px solid rgba(255, 255, 255, 0.5);
 backdrop-filter: blur(8px);
 border-radius: 50px;
 padding: var(--spacing-xs) var(--spacing-sm);
 display: inline-block;
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Header */
header {
 background: rgba(255, 255, 255, 0.5);
 backdrop-filter: blur(15px);
 border-bottom: 1px solid rgba(255, 255, 255, 0.7);
 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 position: sticky;
 top: 0;
 width: 100%;
 z-index: 1000;
 transition: all 0.3s ease-in-out;
}

header.scrolled {
 padding: var(--spacing-xs) 0;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 max-width: 1200px;
 margin: 0 auto;
 padding: var(--spacing-sm) var(--spacing-md);
}

.logo {
 font-family: var(--font-family-secondary);
 font-size: 1.8em;
 font-weight: bold;
 color: var(--primary-color);
 user-select: none;
 transition: color 0.3s ease;
}

.logo:hover {
 color: var(--secondary-color);
}

.nav-links {
 display: flex;
 gap: var(--spacing-md);
}

.nav-links a {
 color: var(--text-color);
 font-weight: 500;
 display: block;
 padding: 8px 12px;
 border-radius: 50px;
 transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
 background: var(--primary-color);
 color: var(--light-text-color);
 transform: translateY(-2px);
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 10px;
 z-index: 1001;
}

.nav-toggle span {
 display: block;
 width: 25px;
 height: 3px;
 background-color: var(--text-color);
 margin: 5px 0;
 transition: all 0.3s ease;
}

/* Buttons */
.button {
 display: inline-block;
 padding: 12px 24px;
 border-radius: var(--border-radius-small);
 font-weight: bold;
 text-align: center;
 cursor: pointer;
 transition: all 0.3s ease;
 border: none;
 font-size: 1em;
}

.button.primary {
 background: var(--primary-color);
 color: var(--light-text-color);
 box-shadow: 0 5px 15px rgba(106, 136, 255, 0.4);
}

.button.primary:hover {
 background: #5a75eb; /* Slightly darker primary */
 transform: translateY(-2px);
 box-shadow: 0 8px 20px rgba(106, 136, 255, 0.6);
}

.button.secondary {
 background: var(--secondary-color);
 color: var(--light-text-color);
 box-shadow: 0 5px 15px rgba(140, 122, 230, 0.4);
}

.button.secondary:hover {
 background: #7b6ac6; /* Slightly darker secondary */
 transform: translateY(-2px);
 box-shadow: 0 8px 20px rgba(140, 122, 230, 0.6);
}

.button-link {
 display: inline-block;
 margin-top: var(--spacing-sm);
 color: var(--primary-color);
 font-weight: 600;
 position: relative;
}

.button-link::after {
 content: '';
 position: absolute;
 left: 0;
 bottom: -2px;
 width: 0;
 height: 2px;
 background: var(--primary-color);
 transition: width 0.3s ease;
}

.button-link:hover::after {
 width: 100%;
}

/* Hero Section */
.hero-section {
 position: relative;
 padding: 120px var(--spacing-md) 80px;
 display: flex;
 justify-content: center;
 align-items: center;
 min-height: 80vh;
 background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
 color: var(--light-text-color);
 text-align: center;
 overflow: hidden;
}

.hero-content {
 position: relative;
 z-index: 1;
 max-width: 900px;
 padding: var(--spacing-xl);
 border-radius: var(--border-radius-large);
 text-align: center;
 color: var(--text-color);
}

.hero-content h1 {
 font-size: 3.5em;
 margin-bottom: var(--spacing-md);
 color: var(--text-color); /* Override for glass card */
}

.hero-content .subtitle {
 font-size: 1.2em;
 margin-bottom: var(--spacing-lg);
 line-height: 1.6;
 color: var(--text-color);
}

.hero-actions {
 display: flex;
 justify-content: center;
 gap: var(--spacing-md);
 margin-bottom: var(--spacing-lg);
}

.approach-card {
 background: rgba(255, 255, 255, 0.7);
 border: 1px solid rgba(255, 255, 255, 0.9);
 border-radius: var(--border-radius-medium);
 padding: 20px;
 margin-top: var(--spacing-lg);
 text-align: left;
 box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.approach-card h3 {
 color: var(--primary-color);
 margin-bottom: var(--spacing-sm);
 font-size: 1.3em;
}

.approach-card ul {
 list-style: none;
 padding: 0;
}

.approach-card ul li {
 display: flex;
 align-items: center;
 margin-bottom: var(--spacing-xs);
 color: var(--text-color);
 font-weight: 500;
}

.approach-card ul li svg {
 fill: var(--primary-color);
 margin-right: 8px;
 width: 20px;
 height: 20px;
}

/* Trust Metrics Section */
.trust-metrics {
 text-align: center;
}

.metrics-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: var(--spacing-md);
 max-width: 1200px;
 margin: 0 auto;
}

.metric-card {
 padding: var(--spacing-md);
 text-align: center;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}

.metric-card h3 {
 font-size: 1.5em;
 color: var(--primary-color);
 margin-bottom: var(--spacing-xs);
}

.metric-card p {
 font-size: 0.95em;
 color: var(--text-color);
 margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
 text-align: center;
 background-color: var(--background-color);
}

.benefits-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: var(--spacing-lg);
 max-width: 1200px;
 margin: 0 auto;
}

.benefit-card {
 padding: var(--spacing-lg);
 text-align: left;
 display: flex;
 flex-direction: column;
}

.benefit-card h3 {
 color: var(--secondary-color);
 margin-bottom: var(--spacing-sm);
 font-size: 1.4em;
}

.benefit-card p {
 flex-grow: 1;
 color: var(--text-color);
 font-size: 0.95em;
}

/* Services Section */
.services-section {
 text-align: center;
}

.services-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: var(--spacing-md);
 max-width: 1200px;
 margin: 0 auto;
}

.service-card {
 padding: var(--spacing-md);
 text-align: left;
 display: flex;
 flex-direction: column;
}

.service-card h3 {
 color: var(--primary-color);
 margin-bottom: var(--spacing-xs);
 font-size: 1.3em;
}

.service-card p {
 flex-grow: 1;
 font-size: 0.9em;
 color: var(--text-color);
}

/* About Section */
.about-section {
 background-color: var(--background-color);
}

.about-content {
 max-width: 1200px;
 margin: 0 auto;
 display: flex;
 flex-wrap: wrap;
 gap: var(--spacing-lg);
 align-items: center;
 text-align: left;
}

.about-text, .about-points {
 flex: 1;
 min-width: 300px;
}

.about-text h2 {
 text-align: left;
 margin-left: 0;
}

.about-text .section-title::after {
 left: 0;
 transform: none;
}

.about-points ul {
 list-style: none;
 padding: 0;
}

.about-points ul li {
 display: flex;
 align-items: flex-start;
 margin-bottom: var(--spacing-sm);
 color: var(--text-color);
 font-size: 1.1em;
}

.about-points ul li svg {
 fill: var(--primary-color);
 margin-right: 10px;
 min-width: 20px;
 height: 20px;
 margin-top: 3px;
}

.about-points ul li strong {
 color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials-section {
 text-align: center;
}

.testimonials-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: var(--spacing-lg);
 max-width: 1200px;
 margin: 0 auto;
}

.testimonial-card {
 padding: var(--spacing-lg);
 text-align: center;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

.testimonial-card p {
 font-style: italic;
 font-size: 1.05em;
 margin-bottom: var(--spacing-md);
 color: var(--text-color);
}

.testimonial-author {
 font-weight: 600;
 color: var(--secondary-color);
 margin-top: auto;
}

/* FAQ Section */
.faq-section {
 background-color: var(--background-color);
}

.faq-content {
 max-width: 900px;
 margin: 0 auto;
}

.accordion-item {
 margin-bottom: var(--spacing-sm);
 border-radius: var(--border-radius-medium);
}

.accordion-header {
 width: 100%;
 padding: var(--spacing-md);
 text-align: left;
 background: none;
 font-size: 1.1em;
 font-weight: bold;
 border: none;
 border-bottom: 1px solid rgba(255, 255, 255, 0.7);
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
 color: var(--primary-color);
 transition: background-color 0.3s ease, border-bottom 0.3s ease;
 border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
}

.accordion-header:hover {
 background: var(--hover-effect);
}

.accordion-header::after {
 content: '+';
 font-size: 1.5em;
 font-weight: bold;
 color: var(--secondary-color);
 transition: transform 0.3s ease;
}

.accordion-header.active::after {
 content: '-';
 transform: rotate(0deg);
}

.accordion-body {
 padding: 0 var(--spacing-md);
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease-out, padding 0.4s ease-out;
 color: var(--text-color);
 border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
}

.accordion-body.open {
 max-height: 200px; /* Adjust based on content */
 padding: var(--spacing-md);
 background: rgba(255, 255, 255, 0.6);
 border-top: 1px solid rgba(255, 255, 255, 0.8);
}

/* Contact CTA Section */
.contact-cta {
 text-align: center;
}

.cta-content {
 max-width: 800px;
 margin: 0 auto;
 padding: var(--spacing-xl);
}

.cta-content h2 {
 font-size: 2.5em;
 color: var(--primary-color);
 margin-bottom: var(--spacing-md);
}

.cta-content p {
 font-size: 1.2em;
 margin-bottom: var(--spacing-lg);
 color: var(--text-color);
}

/* Contact Form Section */
.contact-form-section {
 background-color: var(--background-color);
}

.contact-container {
 max-width: 700px;
 margin: 0 auto;
}

.contact-form .form-group {
 margin-bottom: var(--spacing-md);
}

.contact-form label {
 display: block;
 margin-bottom: var(--spacing-xs);
 font-weight: bold;
 color: var(--text-color);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
 width: 100%;
 padding: 12px;
 border: 1px solid rgba(140, 122, 230, 0.3); /* Lighter secondary */
 border-radius: var(--border-radius-small);
 background: rgba(255, 255, 255, 0.7);
 color: var(--text-color);
 font-family: var(--font-family-primary);
 transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
 outline: none;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(106, 136, 255, 0.2);
}

.contact-form textarea {
 resize: vertical;
}

.contact-form .form-checkbox {
 display: flex;
 align-items: center;
 margin-bottom: var(--spacing-md);
}

.contact-form .form-checkbox input[type="checkbox"] {
 margin-right: var(--spacing-xs);
 width: 18px;
 height: 18px;
 accent-color: var(--primary-color);
}

.contact-form .form-checkbox label {
 margin-bottom: 0;
 font-weight: normal;
 font-size: 0.9em;
}

.contact-form .form-notice {
 text-align: center;
 margin-top: var(--spacing-sm);
 font-size: 0.9em;
 color: #666;
}

/* Footer */
footer {
 margin-top: auto;
 background: var(--glass-footer-bg);
 backdrop-filter: blur(10px);
 border-top: 1px solid var(--glass-border);
 box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
 padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
 color: var(--text-color);
 font-size: 0.9em;
}

.footer-container {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: var(--spacing-lg);
 max-width: 1200px;
 margin: 0 auto var(--spacing-lg) auto;
 padding: var(--spacing-md);
 border-radius: var(--border-radius-large);
 overflow: hidden;
}

.footer-col h3, .footer-col h4, .footer-col h5 {
 color: var(--primary-color);
 margin-bottom: var(--spacing-sm);
 font-size: 1.1em;
}

.footer-col p {
 margin-bottom: var(--spacing-xs);
}

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

.footer-col ul li {
 margin-bottom: var(--spacing-xs);
}

.footer-col a {
 color: var(--text-color);
 transition: color 0.3s ease;
}

.footer-col a:hover {
 color: var(--primary-color);
}

.footer-col address {
 font-style: normal;
 margin-bottom: var(--spacing-xs);
}

.footer-disclaimer {
 text-align: center;
 margin-top: var(--spacing-sm);
 font-size: 0.8em;
 color: #777;
 max-width: 1200px;
 margin-left: auto;
 margin-right: auto;
 padding: 0 var(--spacing-md);
}

/* Animations */
.animate-on-scroll {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
 opacity: 1;
 transform: translateY(0);
}

/* Blog/Gallery/Testimonials specific cards and layouts */
.post-grid, .gallery-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: var(--spacing-lg);
 max-width: 1200px;
 margin: var(--spacing-lg) auto;
}

.blog-post-card, .gallery-item {
 background: var(--card-background);
 backdrop-filter: blur(8px);
 border: 1px solid var(--glass-border);
 border-radius: var(--border-radius-medium);
 box-shadow: 0 4px 20px var(--glass-shadow);
 overflow: hidden;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover, .gallery-item:hover {
 transform: translateY(-5px);
 box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-post-card img, .gallery-item img {
 width: 100%;
 height: 200px;
 object-fit: cover;
 border-bottom: 1px solid var(--glass-border);
}

.blog-post-card-content, .gallery-item-content {
 padding: var(--spacing-md);
}

.blog-post-card h3 {
 font-size: 1.3em;
 margin-bottom: var(--spacing-xs);
 color: var(--primary-color);
}

.blog-post-card p {
 font-size: 0.9em;
 color: #555;
 margin-bottom: var(--spacing-sm);
}

.blog-post-meta {
 font-size: 0.8em;
 color: #777;
 display: flex;
 justify-content: space-between;
 margin-top: var(--spacing-sm);
}

/* Generic content section for general pages */
.content-section {
 max-width: 900px;
 margin: var(--spacing-lg) auto;
 padding: var(--spacing-md);
 background: var(--card-background);
 backdrop-filter: blur(10px);
 border: 1px solid var(--glass-border);
 border-radius: var(--border-radius-large);
 box-shadow: 0 4px 30px var(--glass-shadow);
}

.content-section p, .content-section ul, .content-section ol {
 margin-bottom: var(--spacing-sm);
 font-size: 1.05em;
 line-height: 1.7;
}

.content-section ul, .content-section ol {
 padding-left: var(--spacing-lg);
 list-style-type: disc;
}

.content-section ol {
 list-style-type: decimal;
}

.content-section h1, .content-section h2, .content-section h3 {
 color: var(--primary-color);
 margin-top: var(--spacing-lg);
 margin-bottom: var(--spacing-md);
 border-bottom: 1px solid rgba(106, 136, 255, 0.3);
 padding-bottom: var(--spacing-xs);
}

/* Image gallery styling */
.gallery-grid {
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery-item {
 cursor: zoom-in;
 text-align: center;
 position: relative;
}

.gallery-item-content {
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 background: rgba(0, 0, 0, 0.6);
 color: var(--light-text-color);
 padding: var(--spacing-sm);
 transform: translateY(100%);
 transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-content {
 transform: translateY(0);
}

.gallery-item img {
 border-radius: var(--border-radius-medium);
}

/* Lightbox styles (simple for JS, no fancy modals) */
.lightbox-overlay {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.8);
 display: flex;
 justify-content: center;
 align-items: center;
 z-index: 2000;
 opacity: 0;
 visibility: hidden;
 transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
 opacity: 1;
 visibility: visible;
}

.lightbox-content {
 max-width: 90%;
 max-height: 90%;
 position: relative;
}

.lightbox-content img {
 margin: auto;
 display: block;
 max-width: 100%;
 max-height: 90vh;
 border-radius: var(--border-radius-medium);
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
 color: var(--light-text-color);
 text-align: center;
 padding: var(--spacing-sm);
 font-size: 1.1em;
 background: rgba(0, 0, 0, 0.6);
 border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
 position: absolute;
 bottom: 0;
 width: 100%;
}

.lightbox-close {
 position: absolute;
 top: 20px;
 right: 20px;
 font-size: 2em;
 color: var(--light-text-color);
 cursor: pointer;
 background: rgba(0, 0, 0, 0.5);
 border-radius: 50%;
 width: 40px;
 height: 40px;
 display: flex;
 justify-content: center;
 align-items: center;
 line-height: 1;
 transition: background 0.3s ease;
}
.lightbox-close:hover {
 background: rgba(var(--accent-color), 0.8);
}

/* 404 Page */
.error-page {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 text-align: center;
 min-height: calc(100vh - 200px); /* Adjust based on header/footer height */
 padding: var(--spacing-xl) var(--spacing-md);
 background: linear-gradient(135deg, #e0aaff, #a3caff); /* Soft gradient */
 color: #333;
}

.error-page h1 {
 font-size: 6em;
 color: #fff;
 text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
 margin-bottom: var(--spacing-sm);
}
.error-page h2 {
 font-size: 2.5em;
 color: var(--primary-color);
 margin-bottom: var(--spacing-md);
}
.error-page p {
 font-size: 1.2em;
 margin-bottom: var(--spacing-lg);
 max-width: 600px;
}

/* Responsive Design */
/* Tablet (768px and up) */
@media (min-width: 768px) {
 h1 { font-size: 3em; }
 h2 { font-size: 2.2em; }
 h3 { font-size: 1.6em; }

 .nav-toggle {
 display: none; /* Hide toggle on larger screens */
 }

 .nav-links {
 display: flex; /* Ensure nav links are visible on tablet */
 }

 .hero-content h1 {
 font-size: 4em;
 }

 .hero-actions {
 flex-direction: row;
 }

 .about-content {
 flex-wrap: nowrap; /* Prevent wrapping on larger screens */
 }

 .metrics-grid, .benefits-grid, .services-grid, .testimonials-grid, .post-grid, .gallery-grid {
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 }

 .footer-container {
 grid-template-columns: repeat(4, 1fr);
 }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
 h1 { font-size: 3.5em; }
 h2 { font-size: 2.8em; }
 h3 { font-size: 1.8em; }

 .section-padding {
 padding: var(--spacing-xl) var(--spacing-xl);
 }

 .nav-links {
 gap: var(--spacing-lg);
 }

 .hero-content h1 {
 font-size: 5em;
 }

 .metrics-grid {
 grid-template-columns: repeat(6, 1fr);
 }

 .benefits-grid {
 grid-template-columns: repeat(3, 1fr);
 }

 .services-grid {
 grid-template-columns: repeat(3, 1fr);
 }

 .testimonials-grid {
 grid-template-columns: repeat(3, 1fr);
 }

 .post-grid, .gallery-grid {
 grid-template-columns: repeat(3, 1fr);
 }

 .about-content {
 gap: 80px;
 }

 .content-section {
 padding: var(--spacing-xl);
 }
}

/* Mobile adjustments (320px - 767px) */
@media (max-width: 767px) {
 h1 { font-size: 2em; }
 h2 { font-size: 1.6em; }
 h3 { font-size: 1.2em; }

 .section-title {
 font-size: 2em;
 }

 nav {
 padding: var(--spacing-sm);
 }

 .nav-links {
 display: none; /* Hide by default on mobile */
 flex-direction: column;
 width: 100%;
 background: rgba(255, 255, 255, 0.95);
 backdrop-filter: blur(15px);
 position: absolute;
 top: 0;
 right: 0;
 height: 100vh;
 padding: var(--spacing-xl) var(--spacing-md);
 box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
 transform: translateX(100%);
 transition: transform 0.4s ease-out;
 z-index: 999;
 }

 .nav-links.open {
 transform: translateX(0);
 display: flex; /* Show when open */
 }

 .nav-links li {
 margin-bottom: var(--spacing-sm);
 text-align: center;
 }

 .nav-links a {
 padding: 12px 0;
 font-size: 1.2em;
 width: 100%;
 border-radius: var(--border-radius-small);
 }

 .nav-toggle {
 display: block;
 }

 .nav-toggle.active span:nth-child(1) {
 transform: translateY(8px) rotate(45deg);
 }

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

 .nav-toggle.active span:nth-child(3) {
 transform: translateY(-8px) rotate(-45deg);
 }

 .hero-section {
 padding-top: 100px;
 min-height: 70vh;
 }

 .hero-content {
 padding: var(--spacing-md);
 }

 .hero-content h1 {
 font-size: 2.5em;
 }

 .hero-content .subtitle {
 font-size: 1em;
 }

 .hero-actions {
 flex-direction: column;
 gap: var(--spacing-sm);
 }

 .approach-card {
 padding: var(--spacing-md);
 margin-top: var(--spacing-md);
 }

 .metrics-grid, .benefits-grid, .services-grid, .testimonials-grid, .post-grid, .gallery-grid {
 grid-template-columns: 1fr;
 }
 .testimonial-card, .review-card, .faq-item {
 margin-bottom: var(--spacing-sm);
 }

 .about-content {
 padding: var(--spacing-md);
 flex-direction: column;
 }
 .about-text h2 {
 text-align: center;
 }
 .about-text .section-title::after {
 left: 50%;
 transform: translateX(-50%);
 }

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

 .footer-col {
 margin-bottom: var(--spacing-md);
 }

 .footer-col ul {
 display: flex;
 flex-direction: column;
 align-items: center;
 }
 .footer-col address {
 max-width: 250px;
 margin: 0 auto var(--spacing-xs) auto;
 }

 .content-section {
 padding: var(--spacing-md);
 }

 .error-page h1 {
 font-size: 4em;
 }
 .error-page h2 {
 font-size: 1.8em;
 }
}