/* Basic Reset & Core Styles */
:root {
 --primary-color: #1f2937; /* Dark grayish blue */
 --accent-color: #374151; /* Slightly lighter dark grayish blue */
 --bg-light: #f8fafc; /* Very light gray */
 --bg-white: #ffffff;
 --text-color: #374151; /* Dark text for readability */
 --text-light: #f9fafb; /* Light text for dark backgrounds */
 --border-color: #e5e7eb; /* Light gray border */
 --shadow-color: rgba(0, 0, 0, 0.08); /* Subtle shadow */

 --font-primary: 'Montserrat', sans-serif;
 --font-heading: 'Playfair Display', serif;

 --max-width: 1200px;
 --spacing-unit: 1rem;
}

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

html {
 scroll-behavior: smooth;
 font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-heading);
 color: var(--primary-color);
 margin-bottom: calc(var(--spacing-unit) * 1.5);
 line-height: 1.2;
}

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

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

.lead-text {
 font-size: 1.25rem;
 font-weight: 400;
 line-height: 1.8;
}

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

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

strong {
 font-weight: 700;
}

/* Layout & Containers */
.container {
 max-width: var(--max-width);
 margin: 0 auto;
 padding: calc(var(--spacing-unit) * 2);
}

section {
 padding: calc(var(--spacing-unit) * 4) 0;
 overflow: hidden;
}

.section-title {
 text-align: center;
 margin-bottom: calc(var(--spacing-unit) * 1);
 font-size: 2.5rem;
}

.section-description {
 text-align: center;
 max-width: 700px;
 margin: 0 auto calc(var(--spacing-unit) * 3);
 font-size: 1.15rem;
 color: var(--text-color);
}

.section-bg-light {
 background-color: var(--bg-light);
}

.section-bg-primary {
 background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
 color: var(--text-light);
}
.section-bg-primary .section-title,
.section-bg-primary .section-description,
.section-bg-primary h2 {
 color: var(--text-light);
}

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

.mt-4 {
 margin-top: calc(var(--spacing-unit) * 4);
}

/* Buttons */
.btn {
 display: inline-block;
 padding: var(--spacing-unit) calc(var(--spacing-unit) * 2);
 border-radius: 5px;
 font-weight: 600;
 text-align: center;
 transition: all 0.3s ease;
 cursor: pointer;
 border: 2px solid transparent;
}

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

.btn-primary:hover {
 background-color: var(--accent-color);
 border-color: var(--accent-color);
 transform: translateY(-2px);
 box-shadow: 0 4px 8px var(--shadow-color);
}

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

.btn-secondary:hover {
 background-color: var(--primary-color);
 color: var(--text-light);
 transform: translateY(-2px);
 box-shadow: 0 4px 8px var(--shadow-color);
}

.btn-white-outline {
 background-color: transparent;
 color: var(--text-light);
 border-color: var(--text-light);
}

.btn-white-outline:hover {
 background-color: var(--text-light);
 color: var(--primary-color);
 transform: translateY(-2px);
 box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-link {
 background: none;
 border: none;
 padding: 0;
 color: var(--primary-color);
 text-decoration: underline;
 font-weight: 600;
}

.btn-link:hover {
 color: var(--accent-color);
 text-decoration: none;
}

/* Header */
.main-header {
 background-color: var(--bg-white);
 padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 2);
 box-shadow: 0 2px 10px rgba(0,0,0,0.05);
 position: sticky;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 transition: background-color 0.3s ease, padding 0.3s ease;
}

.main-header.scrolled {
 padding-top: var(--spacing-unit);
 padding-bottom: var(--spacing-unit);
 box-shadow: 0 2px 15px var(--shadow-color);
}

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

.logo {
 font-family: var(--font-heading);
 font-size: 1.8rem;
 font-weight: 700;
 color: var(--primary-color);
 text-decoration: none;
 line-height: 1;
}

.nav-links {
 list-style: none;
 display: flex;
 gap: calc(var(--spacing-unit) * 2);
}

.nav-links li a {
 color: var(--text-color);
 font-weight: 600;
 padding: 0.5rem 0;
 position: relative;
}

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

.nav-links li a:hover::after,
.nav-links li a.active::after {
 width: 100%;
}

.nav-toggle {
 display: none; /* Hidden on desktop */
 flex-direction: column;
 justify-content: space-between;
 width: 30px;
 height: 22px;
 background: none;
 border: none;
 cursor: pointer;
 padding: 0;
 z-index: 1001; /* Ensure toggle is above overlay */
}

.nav-toggle span {
 display: block;
 width: 100%;
 height: 3px;
 background-color: var(--primary-color);
 border-radius: 2px;
 transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
 transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
 opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
 transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero-section {
 display: flex;
 flex-wrap: wrap-reverse;
 align-items: center;
 min-height: 70vh;
 padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 2);
 max-width: var(--max-width);
 margin: 0 auto;
 gap: calc(var(--spacing-unit) * 4);
}

.hero-content {
 flex: 1;
 min-width: 300px;
 text-align: left;
}

.hero-title {
 font-size: 3.5rem;
 margin-bottom: var(--spacing-unit);
 color: var(--primary-color);
}

.hero-subtitle {
 font-size: 1.3rem;
 line-height: 1.7;
 margin-bottom: calc(var(--spacing-unit) * 2);
 color: var(--text-color);
 opacity: 0.9;
}

.hero-buttons {
 display: flex;
 gap: var(--spacing-unit);
 flex-wrap: wrap;
}

.hero-image {
 flex: 1;
 min-width: 300px;
 display: flex;
 justify-content: center;
 align-items: center;
}

.hero-image img {
 max-width: 100%;
 height: auto;
 border-radius: 10px;
 box-shadow: 0 10px 30px var(--shadow-color);
}

/* Features Section */
.features-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: calc(var(--spacing-unit) * 2);
}

.feature-card {
 background-color: var(--bg-white);
 padding: calc(var(--spacing-unit) * 2);
 border-radius: 10px;
 box-shadow: 0 4px 15px var(--shadow-color);
 text-align: center;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 border-top: 5px solid var(--primary-color);
}

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

.feature-card img {
 width: 100%; /* Or set a fixed size if icons */
 max-width: 150px;
 height: auto;
 margin-bottom: var(--spacing-unit);
 border-radius: 5px;
 opacity: 0.9;
}

.feature-card h3 {
 font-size: 1.5rem;
 margin-bottom: var(--spacing-unit);
 color: var(--accent-color);
}

/* About Preview Section */
.about-flex-container {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 gap: calc(var(--spacing-unit) * 4);
 margin-top: calc(var(--spacing-unit) * 3);
}

.about-image {
 flex: 1;
 min-width: 300px;
 display: flex;
 justify-content: center;
 align-items: center;
}

.about-image img {
 max-width: 100%;
 height: auto;
 border-radius: 10px;
 box-shadow: 0 8px 20px var(--shadow-color);
}

.about-content {
 flex: 1;
 min-width: 300px;
}

.about-content h2 {
 text-align: left;
}

/* Services Preview Section */
.services-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: calc(var(--spacing-unit) * 2);
}

.service-card {
 background-color: var(--bg-white);
 padding: calc(var(--spacing-unit) * 2);
 border-radius: 10px;
 box-shadow: 0 4px 15px var(--shadow-color);
 text-align: center;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 border-bottom: 5px solid var(--accent-color);
}

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

.service-card img {
 max-width: 80px;
 height: auto;
 margin-bottom: var(--spacing-unit);
 filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.service-card h3 {
 color: var(--primary-color);
 font-size: 1.4rem;
 margin-bottom: var(--spacing-unit);
}

.service-card p {
 color: var(--text-color);
 font-size: 0.95rem;
 margin-bottom: calc(var(--spacing-unit) * 1.5);
}

/* Testimonials Section */
.testimonials-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: calc(var(--spacing-unit) * 2);
}

.testimonial-card {
 background-color: var(--bg-white);
 padding: calc(var(--spacing-unit) * 2);
 border-radius: 10px;
 box-shadow: 0 4px 15px var(--shadow-color);
 text-align: center;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 display: flex;
 flex-direction: column;
 align-items: center;
}

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

.testimonial-avatar {
 width: 90px;
 height: 90px;
 border-radius: 50%;
 object-fit: cover;
 margin-bottom: var(--spacing-unit);
 border: 3px solid var(--accent-color);
}

.testimonial-card h3 {
 margin-bottom: 0.5rem;
 font-size: 1.25rem;
 color: var(--primary-color);
}

.testimonial-text {
 font-style: italic;
 font-size: 1rem;
 color: var(--text-color);
 margin-bottom: var(--spacing-unit);
}

.star-rating {
 color: gold;
 font-size: 1.2rem;
 margin-top: 0.5rem;
}

/* Blog Preview Section */
.blog-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: calc(var(--spacing-unit) * 2);
}

.blog-card {
 background-color: var(--bg-white);
 border-radius: 10px;
 box-shadow: 0 4px 15px var(--shadow-color);
 overflow: hidden;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card img {
 width: 100%;
 height: 200px;
 object-fit: cover;
 display: block;
}

.blog-card h3 {
 padding: var(--spacing-unit);
 font-size: 1.3rem;
 margin-bottom: 0.5rem;
}

.blog-card h3 a {
 color: var(--primary-color);
 text-decoration: none;
}

.blog-card h3 a:hover {
 color: var(--accent-color);
}

.blog-card p {
 padding: 0 var(--spacing-unit) var(--spacing-unit);
 font-size: 0.95rem;
 color: var(--text-color);
 margin-bottom: var(--spacing-unit);
}

.blog-card .btn-link {
 display: block;
 margin: 0 var(--spacing-unit) var(--spacing-unit);
 text-align: left;
}

/* FAQ Preview Section */
.faq-accordion {
 max-width: 800px;
 margin: 0 auto;
}

.accordion-item {
 border: 1px solid var(--border-color);
 border-radius: 8px;
 margin-bottom: var(--spacing-unit);
 overflow: hidden;
}

.accordion-header {
 width: 100%;
 background-color: var(--bg-white);
 color: var(--primary-color);
 padding: var(--spacing-unit) calc(var(--spacing-unit) * 1.5);
 font-size: 1.15rem;
 font-weight: 600;
 text-align: left;
 border: none;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
 transition: background-color 0.3s ease;
}

.accordion-header:hover {
 background-color: var(--bg-light);
}

.accordion-header::after {
 content: '+';
 font-size: 1.5rem;
 line-height: 1;
 transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"]::after {
 content: '-';
 transform: rotate(180deg);
}

.accordion-content {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease-out, padding 0.4s ease-out;
 background-color: var(--bg-light);
 padding: 0 calc(var(--spacing-unit) * 1.5);
}

.accordion-content p {
 padding-top: var(--spacing-unit);
 padding-bottom: var(--spacing-unit);
 font-size: 1rem;
 color: var(--text-color);
}

.accordion-header[aria-expanded="true"] + .accordion-content {
 max-height: 200px; /* Adjust maximum height as needed */
 padding-top: var(--spacing-unit);
 padding-bottom: var(--spacing-unit);
}

/* CTA Section */
.cta-section {
 padding: calc(var(--spacing-unit) * 5) 0;
 text-align: center;
}

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

.cta-content h2 {
 font-size: 2.8rem;
 margin-bottom: var(--spacing-unit);
 color: var(--text-light);
}

.cta-content p {
 font-size: 1.2rem;
 margin-bottom: calc(var(--spacing-unit) * 2);
 color: var(--text-light);
 opacity: 0.9;
}

/* Footer */
.main-footer {
 background-color: var(--accent-color); /* Darker shade */
 color: var(--text-light);
 padding: calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 2);
 font-size: 0.9rem;
}

.footer-container {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: calc(var(--spacing-unit) * 3);
 max-width: var(--max-width);
 margin: 0 auto;
 margin-bottom: calc(var(--spacing-unit) * 3);
}

.footer-col h3 {
 color: var(--text-light);
 margin-bottom: calc(var(--spacing-unit) * 1.5);
 font-size: 1.2rem;
}

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

.footer-col ul li {
 margin-bottom: 0.8rem;
}

.footer-col ul li a {
 color: var(--text-light);
 opacity: 0.8;
}

.footer-col ul li a:hover {
 color: var(--bg-white);
 opacity: 1;
 text-decoration: underline;
}

.brand-info p {
 color: var(--text-light);
 opacity: 0.8;
 margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.social-links {
 display: flex;
 gap: var(--spacing-unit);
}

.social-links a {
 color: var(--text-light);
 opacity: 0.8;
 background-color: rgba(255, 255, 255, 0.1);
 border-radius: 50%;
 width: 38px;
 height: 38px;
 display: flex;
 justify-content: center;
 align-items: center;
 transition: background-color 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
 background-color: var(--bg-white);
 color: var(--primary-color);
 opacity: 1;
}

.social-links svg {
 width: 20px;
 height: 20px;
}

.contact-info p {
 color: var(--text-light);
 opacity: 0.8;
 margin-bottom: 0.8rem;
}

.contact-info p a {
 color: var(--text-light);
 opacity: 0.8;
}

.contact-info p a:hover {
 opacity: 1;
 text-decoration: underline;
}

.footer-bottom {
 text-align: center;
 padding-top: calc(var(--spacing-unit) * 2);
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 color: var(--text-light);
 opacity: 0.7;
}

/* Scroll Animation Styles */
.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);
}

/* Sub-page Specific Styles */
/* About Page */
.team-grid, .values-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: calc(var(--spacing-unit) * 2);
 margin-top: calc(var(--spacing-unit) * 3);
}

.team-member-card, .value-card {
 background-color: var(--bg-white);
 padding: calc(var(--spacing-unit) * 2);
 border-radius: 10px;
 box-shadow: 0 4px 15px var(--shadow-color);
 text-align: center;
 border-top: 4px solid var(--accent-color);
}

.team-member-card img {
 width: 120px;
 height: 120px;
 border-radius: 50%;
 object-fit: cover;
 margin-bottom: var(--spacing-unit);
 border: 3px solid var(--primary-color);
}

.team-member-card h3 {
 margin-bottom: 0.5rem;
 font-size: 1.3rem;
}

.team-member-card p {
 font-size: 0.9rem;
 color: var(--text-color);
}

.value-card h4 {
 font-size: 1.4rem;
 color: var(--primary-color);
 margin-bottom: var(--spacing-unit);
}

/* Services Page */
.service-detail-section {
 padding-bottom: calc(var(--spacing-unit) * 4);
 border-bottom: 1px solid var(--border-color);
 margin-bottom: calc(var(--spacing-unit) * 4);
}
.service-detail-section:last-of-type {
 border-bottom: none;
 margin-bottom: 0;
}

.service-detail-section h3 {
 font-size: 2rem;
 margin-bottom: calc(var(--spacing-unit) * 1.5);
 text-align: center;
}

.service-detail-content {
 display: flex;
 flex-wrap: wrap;
 align-items: flex-start;
 gap: calc(var(--spacing-unit) * 3);
}

.service-detail-content.reverse {
 flex-wrap: wrap-reverse;
}

.service-detail-text {
 flex: 2;
 min-width: 300px;
}

.service-detail-image {
 flex: 1;
 min-width: 250px;
 display: flex;
 justify-content: center;
}

.service-detail-image img {
 max-width: 100%;
 height: auto;
 border-radius: 8px;
 box-shadow: 0 5px 15px var(--shadow-color);
}

.process-steps {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: calc(var(--spacing-unit) * 2);
 margin-top: calc(var(--spacing-unit) * 3);
}

.process-step {
 background-color: var(--bg-white);
 padding: calc(var(--spacing-unit) * 2);
 border-radius: 10px;
 box-shadow: 0 4px 15px var(--shadow-color);
 text-align: center;
 border-left: 5px solid var(--primary-color);
 transition: transform 0.3s ease;
}

.process-step:hover {
 transform: translateY(-5px);
}

.process-step h4 {
 font-size: 1.3rem;
 color: var(--accent-color);
 margin-bottom: var(--spacing-unit);
}

.process-step p {
 font-size: 0.95rem;
}

/* Contact Page */
.contact-grid {
 display: flex;
 flex-wrap: wrap;
 gap: calc(var(--spacing-unit) * 3);
 margin-top: calc(var(--spacing-unit) * 3);
}

.contact-form-container {
 flex: 2;
 min-width: 300px;
}

.contact-info-container {
 flex: 1;
 min-width: 280px;
 background-color: var(--bg-light);
 padding: calc(var(--spacing-unit) * 2.5);
 border-radius: 10px;
 box-shadow: 0 4px 15px var(--shadow-color);
}

.contact-info-container h3 {
 color: var(--primary-color);
 margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.contact-info-container p {
 display: flex;
 align-items: center;
 margin-bottom: var(--spacing-unit);
 color: var(--text-color);
}
.contact-info-container p strong {
 margin-right: 0.5rem;
}

.contact-map {
 width: 100%;
 margin-top: calc(var(--spacing-unit) * 4);
 border-radius: 10px;
 overflow: hidden;
 box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-map iframe {
 width: 100%;
 height: 450px;
 border: 0;
}

.contact-form {
 display: flex;
 flex-direction: column;
 gap: var(--spacing-unit) * 1.5;
}

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

.form-group label {
 display: block;
 margin-bottom: 0.5rem;
 font-weight: 600;
 color: var(--primary-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
 width: 100%;
 padding: var(--spacing-unit);
 border: 1px solid var(--border-color);
 border-radius: 5px;
 font-family: var(--font-primary);
 font-size: 1rem;
 transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.2); /* Primary color with transparency */
 outline: none;
}

.form-group textarea {
 min-height: 120px;
 resize: vertical;
}

.contact-form .btn-primary {
 align-self: flex-start;
}

/* Blog Page */
.blog-posts-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: calc(var(--spacing-unit) * 2);
}

.blog-post-card {
 background-color: var(--bg-white);
 border-radius: 10px;
 box-shadow: 0 4px 15px var(--shadow-color);
 overflow: hidden;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.blog-post-card img {
 width: 100%;
 height: 220px;
 object-fit: cover;
 display: block;
}

.blog-post-content {
 padding: var(--spacing-unit) calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 1.5);
}

.blog-post-content h3 {
 font-size: 1.5rem;
 margin-bottom: 0.8rem;
}

.blog-post-content h3 a {
 color: var(--primary-color);
 text-decoration: none;
}
.blog-post-content h3 a:hover {
 color: var(--accent-color);
}

.blog-post-meta {
 font-size: 0.85rem;
 color: var(--accent-color);
 margin-bottom: var(--spacing-unit);
}

.blog-post-meta span {
 margin-right: var(--spacing-unit);
}

.blog-post-meta a {
 color: inherit;
 text-decoration: underline;
}
.blog-post-meta a:hover {
 text-decoration: none;
}

.blog-post-content p {
 font-size: 0.95rem;
 margin-bottom: calc(var(--spacing-unit) * 1.5);
 color: var(--text-color);
}

/* Individual Blog Post */
.blog-post-header {
 text-align: center;
 margin-bottom: calc(var(--spacing-unit) * 3);
}

.blog-post-header h1 {
 font-size: 3rem;
 margin-bottom: var(--spacing-unit);
}

.blog-post-header img {
 max-width: 100%;
 height: auto;
 border-radius: 10px;
 margin-top: calc(var(--spacing-unit) * 2);
 box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-post-meta-full {
 font-size: 0.9rem;
 color: var(--accent-color);
 margin-top: var(--spacing-unit);
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 1.5rem;
}

.blog-post-meta-full .author-info {
 display: flex;
 align-items: center;
 gap: 0.5rem;
}

.author-info img {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 object-fit: cover;
 border: 1px solid var(--border-color);
}

.blog-post-content-full article {
 max-width: 800px;
 margin: 0 auto;
 font-size: 1.1rem;
 line-height: 1.8;
}

.blog-post-content-full article h2 {
 font-size: 2rem;
 margin-top: calc(var(--spacing-unit) * 3);
 margin-bottom: var(--spacing-unit);
 color: var(--accent-color);
}

.blog-post-content-full article p {
 margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.blog-post-content-full article ul {
 margin-bottom: calc(var(--spacing-unit) * 1.5);
 padding-left: calc(var(--spacing-unit) * 2);
 list-style: disc;
}

.blog-post-content-full article li {
 margin-bottom: 0.5rem;
}

.related-posts {
 margin-top: calc(var(--spacing-unit) * 5);
 border-top: 1px solid var(--border-color);
 padding-top: calc(var(--spacing-unit) * 3);
}

.related-posts h2 {
 text-align: center;
 margin-bottom: calc(var(--spacing-unit) * 2);
}

.related-posts .blog-grid {
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Gallery Page */
.gallery-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: calc(var(--spacing-unit) * 1.5);
 margin-top: calc(var(--spacing-unit) * 3);
}

.gallery-item {
 cursor: pointer;
 overflow: hidden;
 border-radius: 8px;
 box-shadow: 0 4px 10px rgba(0,0,0,0.08);
 position: relative;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
 transform: translateY(-5px) scale(1.02);
 box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
 width: 100%;
 height: 250px;
 object-fit: cover;
 display: block;
 transition: transform 0.3s ease;
}

.gallery-item:hover img {
 transform: scale(1.05);
}

.lightbox {
 display: none;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.8);
 z-index: 2000;
 justify-content: center;
 align-items: center;
 opacity: 0;
 transition: opacity 0.3s ease;
}

.lightbox.active {
 display: flex;
 opacity: 1;
}

.lightbox-content {
 max-width: 90%;
 max-height: 90%;
 object-fit: contain;
 border-radius: 10px;
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
 position: absolute;
 top: 20px;
 right: 30px;
 color: var(--bg-white);
 font-size: 3rem;
 cursor: pointer;
 background: none;
 border: none;
 padding: 0;
 line-height: 1;
 transition: color 0.3s ease;
}

.lightbox-close:hover {
 color: var(--primary-color);
}

/* Thank You Page */
.thanks-container {
 text-align: center;
 padding: calc(var(--spacing-unit) * 5) calc(var(--spacing-unit) * 2);
 min-height: 60vh;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}

.thanks-container h1 {
 font-size: 3.5rem;
 color: var(--primary-color);
 margin-bottom: var(--spacing-unit);
}

.thanks-container p {
 font-size: 1.2rem;
 color: var(--text-color);
 margin-bottom: calc(var(--spacing-unit) * 2);
 max-width: 600px;
}

/* 404 Page */
.error-container {
 text-align: center;
 padding: calc(var(--spacing-unit) * 5) calc(var(--spacing-unit) * 2);
 min-height: 60vh;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}

.error-container h1 {
 font-size: 6rem;
 color: var(--primary-color);
 margin-bottom: var(--spacing-unit);
 line-height: 1;
}

.error-container h2 {
 font-size: 2.5rem;
 color: var(--accent-color);
 margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.error-container p {
 font-size: 1.1rem;
 color: var(--text-color);
 margin-bottom: calc(var(--spacing-unit) * 2);
 max-width: 700px;
}

/* Mobile responsive adjustments */
@media (max-width: 1024px) {
 .container {
 padding: calc(var(--spacing-unit) * 2);
 }
 .hero-title {
 font-size: 3rem;
 }
 h1 { font-size: 2.8rem; }
 h2 { font-size: 2.2rem; }
 h3 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
 .nav-toggle {
 display: flex;
 }

 .nav-links {
 position: fixed;
 top: 0;
 left: -100%; /* Start off-screen */
 width: 70%;
 height: 100vh;
 background-color: var(--bg-white);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 padding: calc(var(--spacing-unit) * 4) 0;
 box-shadow: 2px 0 10px rgba(0,0,0,0.1);
 transition: left 0.4s ease-in-out;
 z-index: 999;
 gap: calc(var(--spacing-unit) * 2);
 }

 .nav-links.active {
 left: 0;
 }

 .nav-links li a {
 font-size: 1.5rem;
 padding: 1rem 0;
 color: var(--primary-color);
 }

 .nav-links li a::after {
 background-color: var(--primary-color);
 }

 .hero-section {
 flex-direction: column-reverse;
 text-align: center;
 padding-top: calc(var(--spacing-unit) * 2);
 padding-bottom: calc(var(--spacing-unit) * 2);
 min-height: auto;
 }

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

 .hero-title {
 font-size: 2.5rem;
 }

 .hero-subtitle {
 font-size: 1.1rem;
 }

 .hero-buttons {
 justify-content: center;
 }

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

 .section-description {
 font-size: 1rem;
 }

 .about-flex-container {
 flex-direction: column;
 text-align: center;
 }
 .about-content h2 {
 text-align: center;
 }

 .cta-content h2 {
 font-size: 2rem;
 }

 .cta-content p {
 font-size: 1rem;
 }

 .footer-container {
 grid-template-columns: 1fr;
 text-align: center;
 }
 .footer-col.brand-info {
 order: -1;
 }
 .social-links {
 justify-content: center;
 }

 .service-detail-content {
 flex-direction: column;
 }
 .service-detail-content.reverse {
 flex-direction: column;
 }

 .blog-post-meta-full {
 flex-direction: column;
 gap: 0.5rem;
 }
}

@media (max-width: 480px) {
 h1 { font-size: 2.2rem; }
 h2 { font-size: 1.8rem; }
 h3 { font-size: 1.4rem; }

 .hero-title {
 font-size: 2rem;
 }
 .hero-subtitle {
 font-size: 1rem;
 }
 .hero-buttons .btn {
 width: 100%;
 }

 .feature-card {
 padding: calc(var(--spacing-unit) * 1.5);
 }

 .testimonial-text {
 font-size: 0.9rem;
 }

 .cta-content h2 {
 font-size: 1.8rem;
 }

 .accordion-header {
 font-size: 1rem;
 padding: var(--spacing-unit);
 }
 .accordion-content {
 padding: 0 var(--spacing-unit);
 }
 .accordion-content p {
 font-size: 0.9rem;
 }

 .blog-post-header h1 {
 font-size: 2.2rem;
 }
 .blog-post-content-full article {
 font-size: 1rem;
 }
 .error-container h1 {
 font-size: 4rem;
 }
 .error-container h2 {
 font-size: 1.8rem;
 }
}