/* Reset and Base Styles */
:root {
 --primary-color: #9a3412;
 --accent-color: #ea580c;
 --light-bg: #f8fafc;
 --white-bg: #ffffff;
 --text-color: #333;
 --light-text-color: #666;
 --heading-color: #1a202c;
 --border-color: #e2e8f0;
 --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 --footer-bg: #2d130a; /* Darker shade of primary */
 --link-color: var(--primary-color);
 --link-hover-color: var(--accent-color);
}

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

html {
 scroll-behavior: smooth;
}

body {
 font-family: 'Roboto', sans-serif;
 line-height: 1.6;
 color: var(--text-color);
 background-color: var(--white-bg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
 font-family: 'Montserrat', sans-serif;
 color: var(--heading-color);
 margin-bottom: 1rem;
 line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
 margin-bottom: 1rem;
}

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

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

ul {
 list-style: none;
}

/* Layout */
.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 1.5rem;
}

.section {
 padding: 4rem 0;
}

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

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

.section-title {
 text-align: center;
 margin-bottom: 1.5rem;
 position: relative;
}

.section-title::after {
 content: '';
 display: block;
 width: 60px;
 height: 3px;
 background-color: var(--primary-color);
 margin: 0.75rem auto 0;
}

.section-subtitle {
 text-align: center;
 margin-bottom: 3rem;
 color: var(--light-text-color);
 font-size: 1.1rem;
}

/* Buttons */
.btn {
 display: inline-block;
 padding: 0.8rem 1.8rem;
 border-radius: 5px;
 font-weight: 600;
 text-align: center;
 cursor: pointer;
 transition: all 0.3s ease;
 border: 2px solid transparent;
}

.btn-primary {
 background-color: var(--primary-color);
 color: var(--white-bg);
}

.btn-primary:hover {
 background-color: var(--accent-color);
 border-color: var(--accent-color);
 color: var(--white-bg);
 transform: translateY(-2px);
}

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

.btn-secondary:hover {
 background-color: var(--primary-color);
 color: var(--white-bg);
 transform: translateY(-2px);
}

.btn-large {
 padding: 1rem 2.5rem;
 font-size: 1.1rem;
}

.btn-text {
 background: none;
 border: none;
 padding: 0;
 color: var(--primary-color);
 font-weight: 600;
 cursor: pointer;
 transition: color 0.3s ease;
}

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

/* Header */
.main-header {
 background-color: var(--white-bg);
 padding: 1rem 0;
 border-bottom: 1px solid var(--border-color);
 position: sticky;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.main-header.scrolled {
 padding: 0.75rem 0;
 box-shadow: var(--box-shadow);
}

.main-header .container {
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
}

.main-header .logo {
 font-family: 'Montserrat', sans-serif;
 font-weight: 700;
 font-size: 1.8rem;
 color: var(--heading-color);
 text-decoration: none;
}

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

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

.nav-links li a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 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;
 background: none;
 border: none;
 cursor: pointer;
 width: 30px;
 height: 20px;
 position: relative;
 padding: 0;
}

.nav-toggle span {
 display: block;
 width: 100%;
 height: 2px;
 background-color: var(--heading-color);
 position: absolute;
 left: 0;
 transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

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

/* Hero Section */
.hero-section {
 background-image: url('assets/img-bb3f9073.jpg');
 background-size: cover;
 background-position: center;
 color: var(--white-bg);
 padding: 8rem 0;
 text-shadow: 0 2px 4px rgba(0,0,0,0.5);
 position: relative;
}

/* Dark overlay for better text readability */
.hero-section::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.4);
}

.hero-section .hero-content {
 position: relative; /* Bring content above overlay */
 z-index: 1;
 max-width: 800px;
 margin: 0 auto;
}

.hero-section h1 {
 font-size: 3.5rem;
 margin-bottom: 1.5rem;
 color: var(--white-bg);
}

.hero-section p {
 font-size: 1.3rem;
 margin-bottom: 2.5rem;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
}

.hero-buttons .btn {
 margin: 0 1rem;
}

/* Feature Grid */
.feature-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
 margin-top: 3rem;
}

.feature-card {
 background-color: var(--white-bg);
 border-radius: 8px;
 box-shadow: var(--box-shadow);
 padding: 2rem;
 text-align: center;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 overflow: hidden;
}

.feature-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-card img {
 max-width: 100%; /* Ensure image fits within card */;
 height: 200px; /* Fixed height for consistency */
 object-fit: cover;
 border-radius: 5px;
 margin-bottom: 1.5rem;
}

.feature-card h3 {
 color: var(--primary-color);
 margin-bottom: 1rem;
 font-size: 1.5rem;
}

.feature-card p {
 font-size: 1rem;
 color: var(--light-text-color);
 margin-bottom: 1.5rem;
}

/* Two Column Grid */
.two-column-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 4rem;
 align-items: center;
}

.two-column-grid .about-image img {
 max-width: 100%;
 border-radius: 8px;
 box-shadow: var(--box-shadow);
 height: 400px;
 object-fit: cover;
}

.two-column-grid ul {
 list-style: none;
 margin-top: 1.5rem;
 margin-bottom: 2rem;
}

.two-column-grid ul li {
 margin-bottom: 0.8rem;
 font-size: 1.1rem;
 display: flex;
 align-items: center;
}

.two-column-grid ul li .icon-check {
 color: var(--accent-color);
 margin-right: 0.8rem;
 font-size: 1.4rem;
 /* Basic checkmark icon - can be replaced with SVG/FontAwesome */
 content: '';
}

/* Testimonials */
.testimonial-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
 margin-top: 3rem;
}

.testimonial-card {
 background-color: var(--white-bg);
 border-radius: 8px;
 box-shadow: var(--box-shadow);
 padding: 2.5rem;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

.testimonial-text {
 font-style: italic;
 font-size: 1.05rem;
 color: var(--text-color);
 margin-bottom: 1.5rem;
 flex-grow: 1;
}

.testimonial-author {
 display: flex;
 align-items: center;
 margin-top: 1rem;
}

.testimonial-author img {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 object-fit: cover;
 margin-right: 1rem;
 border: 2px solid var(--primary-color);
}

.author-name {
 font-weight: 600;
 color: var(--heading-color);
 margin-bottom: 0.2rem;
}

.author-title {
 font-size: 0.9rem;
 color: var(--light-text-color);
}

/* Call to Action */
.cta-section {
 background-color: var(--primary-color);
 color: var(--white-bg);
 padding: 5rem 0;
 text-align: center;
}

.cta-section h2 {
 color: var(--white-bg);
 font-size: 2.2rem;
 margin-bottom: 1.5rem;
}

.cta-section p {
 font-size: 1.2rem;
 margin-bottom: 2.5rem;
 max-width: 700px;
 margin-left: auto;
 margin-right: auto;
}

.cta-section .btn-primary {
 background-color: var(--accent-color);
 border-color: var(--accent-color);
 color: var(--white-bg);
}

.cta-section .btn-primary:hover {
 background-color: var(--white-bg);
 color: var(--primary-color);
 border-color: var(--white-bg);
}

/* FooterStyles */
.main-footer {
 background-color: var(--footer-bg);
 color: rgba(255, 255, 255, 0.8);
 padding: 3rem 0;
 font-size: 0.9rem;
}

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

.main-footer h3, .main-footer h4 {
 color: var(--white-bg);
 margin-bottom: 1rem;
 font-size: 1.2rem;
}

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

.main-footer ul li {
 margin-bottom: 0.7rem;
}

.main-footer ul li a {
 color: rgba(255, 255, 255, 0.7);
}

.main-footer ul li a:hover {
 color: var(--accent-color);
}

.footer-brand p, .footer-contact p {
 margin-bottom: 0.7rem;
}

.footer-contact a {
 color: rgba(255, 255, 255, 0.7);
}

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

/* General Card Styles (used across pages) */
.card {
 background-color: var(--white-bg);
 border-radius: 8px;
 box-shadow: var(--box-shadow);
 padding: 2rem;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Blog Post Card */
.blog-card {
 display: flex;
 flex-direction: column;
 background-color: var(--white-bg);
 border-radius: 8px;
 box-shadow: var(--box-shadow);
 overflow: hidden;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.blog-card-content {
 padding: 1.5rem;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
}

.blog-card-content h3 {
 margin-top: 0;
 margin-bottom: 0.8rem;
 font-size: 1.4rem;
 color: var(--primary-color);
}

.blog-card-content p {
 font-size: 0.95rem;
 color: var(--light-text-color);
 margin-bottom: 1.5rem;
 line-height: 1.5;
 flex-grow: 1;
}

.blog-card-meta {
 font-size: 0.85rem;
 color: #888;
 display: flex;
 justify-content: space-between;
 margin-top: 1rem;
}

/* Form Styles */
.form-group {
 margin-bottom: 1.5rem;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
 width: 100%;
 padding: 0.8rem;
 border: 1px solid var(--border-color);
 border-radius: 5px;
 font-family: 'Roboto', sans-serif;
 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(154, 52, 18, 0.2);
 outline: none;
}

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

.form-submit-btn {
 width: 100%;
 border: none;
 padding: 1rem;
 font-size: 1.1rem;
 font-weight: 700;
}

/* Accordion */
.accordion-item {
 background-color: var(--white-bg);
 border: 1px solid var(--border-color);
 border-radius: 8px;
 margin-bottom: 1rem;
 overflow: hidden;
 box-shadow: var(--box-shadow);
}

.accordion-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 1rem 1.5rem;
 cursor: pointer;
 background-color: var(--light-bg);
 border-bottom: 1px solid transparent;
 transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}

.accordion-header:hover {
 background-color: #e0e7ed;
}

.accordion-header h3 {
 margin: 0;
 font-size: 1.1rem;
 color: var(--heading-color);
}

.accordion-icon {
 font-size: 1.5rem;
 font-weight: bold;
 color: var(--primary-color);
 transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
 transform: rotate(45deg);
}

.accordion-content {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease-out, padding 0.4s ease-out;
 padding: 0 1.5rem; /* Initial padding, adjust when max-height is > 0 */
}

.accordion-item.active .accordion-content {
 max-height: 500px; /* Adjust based on content height */
 padding: 1rem 1.5rem;
}

.accordion-content p {
 margin-bottom: 0;
 color: var(--text-color);
}

/* Utility Classes */
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Responsive Design */
@media (min-width: 768px) {
 h1 { font-size: 3.5rem; }
 h2 { font-size: 2.5rem; }
 h3 { font-size: 2rem; }

 .main-header .container {
 flex-wrap: nowrap;
 }

 .nav-toggle {
 display: none;
 }

 .nav-links {
 display: flex;
 }

 .hero-section {
 padding: 10rem 0;
 }

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

 .two-column-grid {
 grid-template-columns: 1fr 1fr;
 }

 .about-image {
 order: 2; /* Image on right for about-preview text on left */
 }

 .about-content {
 order: 1; /* Content on left */
 }

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

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

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

 .container {
 padding: 1rem;
 }

 .section {
 padding: 3rem 0;
 }

 .main-header .container {
 padding: 1rem;
 }

 .nav-links {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: var(--footer-bg); /* Use a darker background for mobile menu */
 flex-direction: column;
 justify-content: center;
 align-items: center;
 transform: translateX(100%);
 transition: transform 0.5s ease;
 z-index: 999;
 padding: 2rem;
 }

 .nav-links.active {
 transform: translateX(0%);
 }

 .nav-links li {
 margin: 1rem 0;
 }

 .nav-links li a {
 font-size: 1.8rem;
 color: var(--white-bg); /* White text on dark background */
 }

 .nav-links li a::after {
 background-color: var(--accent-color); /* Accent color for active link indicator */
 }

 .nav-toggle {
 display: block;
 z-index: 1001; /* Ensure toggle button is above the menu */
 }

 .hero-section {
 padding: 6rem 0;
 }

 .hero-section h1 {
 font-size: 2.5rem;
 }

 .hero-section p {
 font-size: 1.1rem;
 }

 .hero-buttons {
 display: flex;
 flex-direction: column;
 gap: 1rem;
 }

 .hero-buttons .btn {
 margin: 0;
 width: 100%;
 }

 .feature-card {
 padding: 1.5rem;
 }

 .two-column-grid {
 grid-template-columns: 1fr;
 gap: 2rem;
 }
 
 .about-image, .about-content {
 order: initial; /* Reset order for mobile */
 }

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

 .footer-nav ul,
 .footer-legal ul {
 padding-left: 0;
 }

 .footer-nav ul li,
 .footer-legal ul li {
 display: inline-block;
 margin: 0 0.5rem 0.5rem;
 }

 /* Contact page specifics for mobile */
 .contact-info {
 margin-top: 2rem;
 }

 .contact-info .info-item {
 margin-bottom: 1.5rem;
 }
 
 .contact-form-section .contact-details-box {
 margin-top: 2rem;
 }

 .gallery-grid {
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 }
}

@media (min-width: 1024px) {
 .hero-section h1 {
 font-size: 4rem;
 }
 .hero-section p {
 font-size: 1.4rem;
 }
 .two-column-grid {
 grid-template-columns: 1fr 1.2fr; /* Adjust for more textual content on one side */
 }
}

/* Service Details Page Specifics */
.services-intro {
 text-align: center;
 margin-bottom: 3rem;
}

.service-card-large {
 display: flex;
 flex-direction: column;
 background-color: var(--white-bg);
 border-radius: 8px;
 box-shadow: var(--box-shadow);
 margin-bottom: 2.5rem;
 overflow: hidden;
}

.service-card-large img {
 width: 100%;
 height: 350px;
 object-fit: cover;
 display: block;
}

.service-card-large-content {
 padding: 2.5rem;
}

.service-card-large-content h3 {
 color: var(--primary-color);
 margin-bottom: 1.2rem;
 font-size: 1.8rem;
}

.service-card-large-content p {
 line-height: 1.7;
 margin-bottom: 1rem;
 color: var(--text-color);
}

.service-card-large-content ul {
 list-style: none;
 padding-left: 0;
 margin-top: 1.5rem;
 margin-bottom: 2rem;
}

.service-card-large-content ul li {
 margin-bottom: 0.8rem;
 display: flex;
 align-items: center;
 font-size: 1.05rem;
 color: var(--light-text-color);
}

.service-card-large-content ul li::before {
 content: ''; /* Using a simple arrow for list items */
 color: var(--accent-color);
 margin-right: 0.8rem;
 font-weight: bold;
}

@media (min-width: 768px) {
 .service-card-large {
 flex-direction: row;
 align-items: center;
 }

 .service-card-large:nth-of-type(even) {
 flex-direction: row-reverse; /* Alternate image and text */
 }

 .service-card-large img {
 flex: 0 0 40%;
 height: auto;
 }

 .service-card-large-content {
 flex: 1;
 }
}

/* Process Section */
.process-steps {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
 margin-top: 3rem;
}

.process-step-card {
 background-color: var(--white-bg);
 border-radius: 8px;
 box-shadow: var(--box-shadow);
 padding: 2rem;
 text-align: center;
 position: relative;
 overflow: hidden;
}

.process-step-card::before {
 content: attr(data-step);
 position: absolute;
 top: 0;
 left: 0;
 background-color: var(--primary-color);
 color: var(--white-bg);
 font-size: 3rem;
 font-weight: 700;
 padding: 0.5rem 1rem;
 border-bottom-right-radius: 8px;
 z-index: 1;
}

.process-step-card h4 {
 margin-top: 2.5rem;
 color: var(--heading-color);
}

.process-step-card p {
 font-size: 0.95rem;
 color: var(--light-text-color);
}

/* Contact Page Styles */
.contact-form-section {
 display: grid;
 grid-template-columns: 1fr;
 gap: 3rem;
}

.contact-details-box {
 background-color: var(--white-bg);
 border-radius: 8px;
 box-shadow: var(--box-shadow);
 padding: 2rem;
}

.contact-details-box h3 {
 color: var(--primary-color);
 margin-bottom: 2rem;
}

.contact-info .info-item {
 display: flex;
 align-items: flex-start;
 margin-bottom: 1.5rem;
}

.contact-info .info-item .icon {
 font-size: 1.5rem;
 color: var(--accent-color);
 margin-right: 1rem;
 flex-shrink: 0;
}

.contact-info .info-item p {
 margin: 0;
 color: var(--text-color);
}

.contact-info .info-item a {
 color: var(--text-color);
}

.contact-info .info-item a:hover {
 color: var(--primary-color);
}

.contact-map {
 margin-top: 2rem;
 border-radius: 8px;
 overflow: hidden;
}

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

@media (min-width: 768px) {
 .contact-form-section {
 grid-template-columns: 2fr 1fr;
 }
 .contact-map {
 margin-top: 0; /* Adjust for grid layout */
 }
}

/* About Page */
.about-header {
 text-align: center;
 margin-bottom: 3rem;
}

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

.team-member-card {
 background-color: var(--white-bg);
 border-radius: 8px;
 box-shadow: var(--box-shadow);
 padding: 1.5rem;
 text-align: center;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

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

.team-member-card h4 {
 margin-bottom: 0.5rem;
 color: var(--heading-color);
}

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

/* Blog List Page */
.blog-posts-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2.5rem;
 margin-top: 3rem;
}

/* Blog Post Single Page */
.blog-post-header {
 text-align: center;
 margin-bottom: 3rem;
}

.blog-post-header h1 {
 font-size: 2.8rem;
 margin-bottom: 1rem;
}

.blog-post-meta {
 font-size: 0.95rem;
 color: var(--light-text-color);
 margin-bottom: 2rem;
}

.blog-post-content img {
 max-width: 100%;
 height: auto;
 border-radius: 8px;
 margin-bottom: 2rem;
 box-shadow: var(--box-shadow);
}

.blog-post-content h2,
.blog-post-content h3 {
 margin-top: 2rem;
 margin-bottom: 1rem;
}

.blog-post-content p {
 margin-bottom: 1.5rem;
}

.blog-post-content ul {
 list-style: disc;
 margin-left: 1.5rem;
 margin-bottom: 1.5rem;
 color: var(--text-color);
}

.blog-post-footer {
 border-top: 1px solid var(--border-color);
 padding-top: 2rem;
 margin-top: 3rem;
 display: flex;
 align-items: center;
}

.blog-post-author-img {
 width: 70px;
 height: 70px;
 border-radius: 50%;
 object-fit: cover;
 margin-right: 1.2rem;
 border: 2px solid var(--primary-color);
}

.blog-post-author-info h4 {
 margin-bottom: 0.3rem;
 color: var(--heading-color);
}

.blog-post-author-info p {
 font-size: 0.9rem;
 color: var(--light-text-color);
 margin-bottom: 0;
}

.related-posts {
 margin-top: 4rem;
 border-top: 1px solid var(--border-color);
 padding-top: 3rem;
}

/* Gallery Page */
.gallery-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 1rem;
 margin-top: 3rem;
}

.gallery-item {
 position: relative;
 overflow: hidden;
 border-radius: 8px;
 box-shadow: var(--box-shadow);
 cursor: pointer;
}

.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);
}

.gallery-item-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(154, 52, 18, 0.7); /* Primary color with transparency */
 display: flex;
 justify-content: center;
 align-items: center;
 opacity: 0;
 transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
 opacity: 1;
}

.gallery-item-overlay span {
 color: var(--white-bg);
 font-size: 2rem;
}

/* Lightbox styles (minimal, usually handled by JS plugin) */
.lightbox {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-color: rgba(0, 0, 0, 0.8);
 display: flex;
 justify-content: center;
 align-items: center;
 z-index: 2000;
 opacity: 0;
 pointer-events: none;
 transition: opacity 0.3s ease;
}

.lightbox.active {
 opacity: 1;
 pointer-events: auto;
}

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

.lightbox-content img {
 max-width: 100%;
 max-height: 100%;
 display: block;
 border-radius: 8px;
}

.lightbox-close {
 position: absolute;
 top: 20px;
 right: 30px;
 color: var(--white-bg);
 font-size: 2.5rem;
 cursor: pointer;
 z-index: 2001;
}

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

/* Thanks Page */
.thank-you-section {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 min-height: calc(100vh - 200px); /* Adjust based on header/footer height */
 text-align: center;
 padding: 4rem 1.5rem;
 background-color: var(--light-bg);
}

.thank-you-section h1 {
 color: var(--primary-color);
 font-size: 3rem;
 margin-bottom: 1.5rem;
}

.thank-you-section p {
 font-size: 1.2rem;
 color: var(--text-color);
 margin-bottom: 2.5rem;
}

.thank-you-section .btn {
 margin-top: 1rem;
}

/* 404 Page */
.error-section {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 min-height: calc(100vh - 200px);
 text-align: center;
 padding: 4rem 1.5rem;
 background-color: var(--light-bg);
}

.error-section h1 {
 font-size: 6rem;
 color: var(--accent-color);
 margin-bottom: 1rem;
}

.error-section h2 {
 color: var(--primary-color);
 font-size: 2.5rem;
 margin-bottom: 1rem;
}

.error-section p {
 font-size: 1.1rem;
 color: var(--text-color);
 margin-bottom: 2rem;
 max-width: 600px;
}

/* Icon Check for lists */
.icon-check::before {
 content: ''; /* Unicode checkmark */
 display: inline-block;
 margin-right: 0.5em;
 color: var(--primary-color);
 font-weight: bold;
}
/* Font Awesome (or similar icon library) could replace this with proper classes */
/* .icon-check { font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f058"; } */

/* Minimalist Zen Layout Adjustments */
/* These adjustments override previous styles for "Minimalist Zen" feel */

/* HEADER/NAVIGATION */
.main-header {
 background-color: var(--white-bg);
 border-bottom: none; /* No border */
 box-shadow: none; /* No shadow */
 padding: 1.5rem 0; /* More padding */
}

.main-header.scrolled {
 padding: 1rem 0;
 box-shadow: 0 1px 3px rgba(0,0,0,0.08); /* Subtle shadow on scroll */
}

.main-header .logo {
 font-size: 2rem;
 font-weight: 400; /* Lighter font weight */
 color: var(--heading-color);
 letter-spacing: 2px;
}

.nav-links {
 gap: 3rem; /* Widely spaced */
}

.nav-links li a {
 font-weight: 400; /* Lighter font weight */
 color: var(--heading-color);
 letter-spacing: 1px;
 text-transform: uppercase;
}

.nav-links li a::after {
 height: 1px; /* Thinner underline */
}

.nav-toggle span {
 background-color: var(--heading-color);
}

/* Mobile: single hamburger icon, minimal overlay */
@media (max-width: 767px) {
 .nav-links {
 background-color: rgba(255,255,255,0.98); /* Near white overlay */
 padding-top: 6rem; /* Push down content */
 }
 .nav-links li a {
 color: var(--heading-color);
 font-size: 1.5rem;
 padding: 0.5rem 0;
 }
 .nav-toggle {
 width: 25px; /* Smaller hamburger */
 height: 18px;
 }
 .nav-toggle span:nth-child(2) { top: 7px; }
 .nav-toggle span:nth-child(3) { top: 14px; }
}

/* HERO SECTION */
.hero-section {
 background: var(--white-bg); /* No image */
 padding: 10rem 0 12rem; /* Vast whitespace */
 color: var(--heading-color);
 text-shadow: none;
 display: flex;
 justify-content: center;
 align-items: center;
 min-height: calc(100vh - 100px); /* Take most of the viewport height */
}

.hero-section::before {
 display: none; /* Remove overlay */
}

.hero-section h1 {
 font-size: 3rem; /* Slightly smaller for zen effect */
 margin-bottom: 1rem;
 color: var(--heading-color);
 font-weight: 300; /* Lighter font weight */
 max-width: 700px;
 line-height: 1.3;
}

.hero-section p {
 font-size: 1.1rem; /* Smaller subtext */
 margin-bottom: 3rem;
 color: var(--light-text-color);
 max-width: 600px;
 font-weight: 300;
}

.hero-buttons .btn-primary {
 background-color: transparent; /* Transparent button */
 border: 1px solid var(--primary-color); /* Primary border */
 color: var(--primary-color);
 padding: 0.7rem 2rem;
}

.hero-buttons .btn-primary:hover {
 background-color: var(--primary-color); /* Fill on hover */
 color: var(--white-bg);
}

.hero-buttons .btn-secondary {
 display: none; /* Remove secondary button for ultimate minimalism */
}

@media (max-width: 767px) {
 .hero-section {
 padding: 8rem 0;
 min-height: calc(100vh - 80px);
 }
 .hero-section h1 {
 font-size: 2rem;
 }
 .hero-section p {
 font-size: 1rem;
 }
 .hero-buttons .btn-primary {
 padding: 0.6rem 1.5rem;
 font-size: 0.9rem;
 }
}

/* SECTION STRUCTURE */
.section {
 padding: 8rem 0; /* More vertical space */
}

.light-bg {
 background-color: var(--light-bg); /* Still use a subtle light bg */
}

.section-title {
 font-weight: 300; /* Lighter font weight */
 font-size: 2.2rem;
 letter-spacing: 1px;
}

.section-title::after {
 display: none; /* Remove underline */
}

.section-subtitle {
 font-size: 1rem;
 max-width: 700px;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.8;
}

/* FEATURES DISPLAY: Vertical stack, large icons, minimal text */
.feature-grid {
 grid-template-columns: 1fr; /* Force vertical stack */
 text-align: left;
 max-width: 800px; /* Constrain width */
 margin-left: auto;
 margin-right: auto;
}

.feature-card {
 box-shadow: none; /* No shadow */
 border: 1px solid var(--border-color); /* Subtle border */
 border-radius: 0; /* Sharp corners */
 text-align: left;
 padding: 2.5rem;
 display: flex;
 align-items: flex-start; /* Align content to top */
 transition: background-color 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
 transform: translateY(0); /* No lift effect */
 background-color: var(--white-bg);
 border-color: var(--primary-color); /* Highlight border on hover */
}

.feature-card img {
 width: 60px; /* Small icon size */
 height: 60px;
 object-fit: contain; /* Preserve aspect ratio for icons */
 margin-right: 1.5rem;
 margin-bottom: 0;
 border-radius: 0;
 box-shadow: none;
 flex-shrink: 0;
}

.feature-card h3 {
 font-size: 1.3rem;
 margin-bottom: 0.5rem;
 font-weight: 400;
}

.feature-card p {
 font-size: 0.95rem;
 margin-bottom: 0;
}

.feature-card .btn-text {
 display: none; /* Remove 'Saber Mais' link */
}

/* ABOUT PREVIEW */
.about-preview .two-column-grid {
 grid-template-columns: 1fr; /* Full width for about philosophy */
 max-width: 800px;
 margin-left: auto;
 margin-right: auto;
 gap: 0; /* No gap */
 text-align: center;
}

.about-image {
 display: none; /* No image on index about preview */
}

.about-content {
 order: 1;
 padding: 0 2rem;
}

.about-content h2 {
 font-size: 2rem;
 font-weight: 300;
}

.about-content p {
 font-size: 1rem;
 line-height: 1.8;
 margin-bottom: 2rem;
}

.about-content li {
 display: none; /* Hide service bullet points */
}

.about-content .btn-primary {
 background-color: transparent;
 border: 1px solid var(--primary-color);
 color: var(--primary-color);
}

.about-content .btn-primary:hover {
 background-color: var(--primary-color);
 color: var(--white-bg);
}

/* TESTIMONIALS STYLE: Simple italic text with em-dash attribution, no photos */
.testimonials-section {
 background-color: var(--white-bg); /* White background */
 padding: 6rem 0; /* Slightly less padding */
}

.testimonial-grid {
 grid-template-columns: 1fr; /* Force vertical stack */
 max-width: 700px;
 margin-left: auto;
 margin-right: auto;
}

.testimonial-card {
 box-shadow: none; /* No shadow */
 padding: 2.5rem 2rem;
 border-bottom: 1px solid var(--border-color); /* Subtle separator */
 background-color: transparent; /* No background */
 border-radius: 0;
}
.testimonial-card:last-child {
 border-bottom: none;
}

.testimonial-text {
 font-style: italic;
 font-size: 1.1rem;
 color: var(--text-color);
 line-height: 1.8;
 margin-bottom: 0.5rem; /* Closer to author */
}

.testimonial-author {
 justify-content: center; /* Center attribution */
 margin-top: 0.5rem;
 position: relative;
 padding-top: 1rem;
}
.testimonial-author::before {
 content: '—'; /* Em-dash attribution */
 position: absolute;
 top: -0.5rem;
 left: 50%;
 transform: translateX(-50%);
 font-size: 2rem;
 color: var(--primary-color);
}

.testimonial-author img {
 display: none; /* No photos */
}

.author-name {
 font-weight: 400; /* Lighter font weight */
 font-size: 1rem;
 color: var(--heading-color);
}

.author-title {
 display: none; /* No title */
}

/* CTA - Minimalist */
.cta-section {
 background-color: var(--light-bg); /* Light background */
 color: var(--heading-color); /* Dark text */
 padding: 6rem 0;
}

.cta-section h2 {
 color: var(--heading-color);
 font-weight: 300;
 font-size: 2rem;
}

.cta-section p {
 color: var(--text-color);
 font-weight: 300;
}

.cta-section .btn-primary {
 background-color: transparent;
 border: 1px solid var(--primary-color);
 color: var(--primary-color);
}

.cta-section .btn-primary:hover {
 background-color: var(--primary-color);
 color: var(--white-bg);
}

/* FOOTER STRUCTURE: Ultra-minimal single line, no background color change */
.main-footer {
 background-color: var(--white-bg); /* White background */
 color: var(--light-text-color);
 padding: 3rem 0;
 border-top: 1px solid var(--border-color); /* Subtle top border */
 margin-top: 6rem; /* Generous top margin */
}

.footer-grid {
 display: flex; /* Single line layout */
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 gap: 1rem 2rem; /* Reduced gap */
 text-align: center;
}

.footer-brand,
.footer-nav,
.footer-legal,
.footer-contact {
 flex: 0 0 auto; /* No flex grow */
}

.main-footer h3, .main-footer h4 {
 display: none; /* Hide headings */
}

.footer-brand p:first-of-type {
 display: none; /* Hide description */
}

.footer-brand p:last-of-type {
 order: 10; /* Push copyright to end */
 font-size: 0.85rem;
 color: var(--light-text-color);
 margin-bottom: 0;
 width: 100%;
}

.main-footer ul {
 display: flex; /* Inline links */
 flex-wrap: wrap;
 justify-content: center;
 padding: 0;
}

.main-footer ul li {
 margin: 0 0.75rem; /* Spacing between links */
}

.main-footer ul li a {
 color: var(--light-text-color);
 font-weight: 400;
 font-size: 0.9rem;
}

.main-footer ul li a:hover {
 color: var(--primary-color);
}

.footer-contact p {
 display: inline-block; /* Inline contact info */
 margin: 0 0.75rem;
 font-size: 0.9rem;
}

.footer-contact p:first-of-type, /* Hide phone label */
.footer-contact p:nth-of-type(2) { /* Hide Email + Hours */
 display: none;
}

.footer-contact p a {
 color: var(--light-text-color);
}

@media (max-width: 767px) {
 .main-footer {
 padding: 2rem 0;
 margin-top: 4rem;
 }
 .footer-grid {
 flex-direction: column;
 gap: 0.5rem;
 }
 .main-footer ul {
 flex-direction: column;
 align-items: center;
 }
 .main-footer ul li {
 margin: 0.25rem 0;
 }
 .footer-contact p {
 display: block;
 margin: 0.25rem 0;
 }
}
/* General Page Content for Minimalist Zen */
/* Ensure all pages follow the minimalist aesthetic for headings, text, and component styling */

.contact-details-box h3, .about-content h2, .blog-post-header h1 {
 font-weight: 300;
 letter-spacing: 1px;
}

.card, .blog-card, .service-card-large, .team-member-card, .process-step-card, .testimonial-card, .accordion-item {
 box-shadow: none;
 border-radius: 0;
 border: 1px solid var(--border-color);
}

.card:hover, .blog-card:hover, .service-card-large:hover, .team-member-card:hover, .feature-card:hover {
 transform: none; /* Remove all transform effects */
 box-shadow: none; /* Remove shadows */
 border-color: var(--primary-color); /* Still highlight border */
}

.team-member-card img {
 border: 1px solid var(--border-color); /* Thinner border */
}

.form-group input, .form-group textarea {
 border-radius: 0;
}

/* Specific Page Overrides for Minimalist Zen */
#about .about-content,
#services .services-intro,
#blog .blog-feed-intro,
#contact .contact-intro {
 max-width: 800px;
 margin-left: auto;
 margin-right: auto;
 text-align: center;
 padding: 0 1.5rem;
}

/* Remove image for main sections */
#about .about-image,
#services .service-card-large img {
 display: none;
}

#services .service-card-large {
 flex-direction: column !important; /* Force column layout for service cards */
 text-align: left;
 max-width: 800px;
 margin-left: auto;
 margin-right: auto;
}

#services .service-card-large-content {
 padding: 2rem;
}

#services .service-card-large ul li::before {
 content: '‣'; /* Different bullet point */
 color: var(--light-text-color);
}

#services .service-card-large-content h3 {
 margin-top: 0;
}

#services .process-steps {
 max-width: 1000px;
 margin-left: auto;
 margin-right: auto;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

#services .process-step-card::before {
 background-color: transparent; /* No background for steps */
 color: var(--primary-color);
 font-size: 2rem;
 padding: 0;
 top: 1.5rem;
 left: 1.5rem;
 border-bottom-right-radius: 0;
}

#services .process-step-card h4 {
 margin-left: 2rem;
 text-align: left;
 font-weight: 400;
}

#services .process-step-card p {
 text-align: left;
 padding-left: 1.5rem;
 padding-top: 0.5rem;
}

#about .team-grid {
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 max-width: 900px;
 margin-left: auto;
 margin-right: auto;
}

#contact .contact-form-section {
 grid-template-columns: 1fr;
 max-width: 700px;
 margin-left: auto;
 margin-right: auto;
}

#contact .contact-details-box h3 {
 font-size: 1.5rem;
 font-weight: 400;
 text-align: left;
}

#contact .contact-info .info-item {
 align-items: center;
}

#contact .contact-info .info-item .icon {
 font-size: 2rem;
}

#contact .contact-map {
 border: 1px solid var(--border-color);
 border-radius: 0;
}

#contact .contact-map iframe {
 border-radius: 0;
}

/* Blog/Gallery/FAQ */
#blog .blog-posts-grid,
#gallery .gallery-grid,
#faq .accordion-list {
 max-width: 1000px;
 margin-left: auto;
 margin-right: auto;
}

#blog .blog-post-content img {
 margin-left: auto;
 margin-right: auto;
 display: block;
 max-height: 400px;
 object-fit: cover;
 border-radius: 0;
 border: 1px solid var(--border-color);
}

#blog .blog-post-footer {
 border-top: none;
}

#blog .blog-post-author-img {
 border: 1px solid var(--border-color);
}

.gallery-item {
 box-shadow: none;
 border-radius: 0;
 border: 1px solid var(--border-color);
}
.gallery-item:hover {
 border-color: var(--primary-color);
}
.gallery-item img {
 border-radius: 0;
}

.accordion-header {
 background-color: var(--white-bg);
}
.accordion-header:hover {
 background-color: var(--light-bg);
}
.accordion-header h3 {
 font-weight: 400;
}
.accordion-icon {
 color: var(--light-text-color);
}

/* Legal pages */
.legal-content {
 max-width: 800px;
 margin: 0 auto;
 padding: 2rem 1.5rem;
}
.legal-content h1, .legal-content h2, .legal-content h3 {
 font-weight: 400;
 font-size: 1.8rem;
 margin-bottom: 1.5rem;
}
.legal-content h2::after, .legal-content h3::after {
 display: none;
}
.legal-content p, .legal-content ul {
 font-size: 0.95rem;
 line-height: 1.7;
 margin-bottom: 1rem;
}
.legal-content ul {
 list-style: disc;
 margin-left: 1.5rem;
}
.legal-content strong {
 color: var(--primary-color);
}

/* Thank you page */
.thank-you-section h1 {
 font-size: 2.5rem;
 font-weight: 300;
}
.thank-you-section p {
 font-size: 1.1rem;
}

/* 404 page */
.error-section h1 {
 font-size: 5rem;
 font-weight: 700;
 color: var(--primary-color);
}
.error-section h2 {
 font-size: 2rem;
 font-weight: 400;
}
.error-section p {
 font-size: 1rem;
}
.error-section .btn {
 background-color: transparent;
 border: 1px solid var(--primary-color);
 color: var(--primary-color);
}
.error-section .btn:hover {
 background-color: var(--primary-color);
 color: var(--white-bg);
}
/* Pseudo-icons */
.icon-clock::before { content: ''; margin-right: 0.5rem; }
.icon-phone::before { content: ''; margin-right: 0.5rem; }
.icon-mail::before { content: ''; margin-right: 0.5rem; }
.icon-map::before { content: ''; margin-right: 0.5rem; }
/* Alternatively, using FontAwesome (if included) */
/* .icon-clock::before { font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f017"; } */
/* .icon-phone::before { font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f095"; } */
/* .icon-mail::before { font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f0e0"; } */
/* .icon-map::before { font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f3c5"; } */
/* Add these font-family/content rules to the respective icon classes if you include Font Awesome */
/* For this project, adhering to vanilla CSS, emoticons or simple Unicode characters are used. */

/* Blog Card specific for Minimalist */
.blog-card {
 border-radius: 0;
 box-shadow: none;
 border: 1px solid var(--border-color);
}

.blog-card:hover {
 transform: none;
 box-shadow: none;
 border-color: var(--primary-color);
}

.blog-card img {
 border-radius: 0;
 border-bottom: 1px solid var(--border-color);
}

.blog-card-content h3 {
 font-size: 1.2rem;
 font-weight: 400;
 color: var(--heading-color);
}

.blog-card-content p {
 font-size: 0.9rem;
 color: var(--light-text-color);
}

.blog-card a.btn-text {
 align-self: flex-start;
 padding-top: 1rem;
 padding-bottom: 0.5rem;
 border-bottom: 1px solid var(--primary-color);
 transition: all 0.3s ease;
}
.blog-card a.btn-text:hover {
 color: var(--accent-color);
 border-color: var(--accent-color);
}
/* Additional simple icon for lists in about/services */
.about-content ul li::before {
 content: '‣'; /* Simple bullet */
 color: var(--primary-color);
 margin-right: 0.5em;
 font-weight: normal;
}

/* Adjustments for section dividers in minimalist zen */
.section:not(.hero-section):not(.cta-section) {
 border-top: 1px solid var(--border-color);
}
.section:first-of-type {
 border-top: none;
}
.section.light-bg {
 border-top: none; /* No border if background is different */
}