@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
 --primary-color: #9a3412;
 --accent-color: #ea580c;
 --text-color: #333;
 --heading-color: #1a1a1a;
 --light-bg: #f8fafc;
 --white-bg: #ffffff;
 --border-color: #e0e0e0;
 --footer-bg: #3f1a0e; /* Dark shade of primary */
 --footer-text-color: #f7edea;
 --max-width: 1200px;
 --header-height: 80px;

 --font-body: 'Poppins', sans-serif;
 --font-heading: 'Playfair Display', serif;
}

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

html {
 scroll-behavior: smooth;
}

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

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

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

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

ul {
 list-style: none;
}

h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-heading);
 color: var(--heading-color);
 margin-bottom: 0.8em;
 line-height: 1.2;
}

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

p {
 margin-bottom: 1em;
}

.container {
 max-width: var(--max-width);
 margin: 0 auto;
 padding: 0 1.5rem;
}

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

.section-title {
 text-align: center;
 margin-bottom: 1rem;
 font-size: 2.5em;
 color: var(--primary-color);
}

.section-subtitle {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 3rem auto;
 font-size: 1.1em;
 color: #555;
}

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

.text-white {
 color: var(--white-bg);
}

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

.mt-xl {
 margin-top: 3rem;
}

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

.btn-primary {
 background-color: var(--primary-color);
 color: var(--white-bg);
 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 10px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
 background-color: var(--primary-color);
 color: var(--white-bg);
 transform: translateY(-2px);
 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

.btn-text {
 background: none;
 border: none;
 color: var(--primary-color);
 padding: 0;
 font-size: 1em;
 font-weight: 600;
}

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

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

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

.navbar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 max-width: var(--max-width);
 margin: 0 auto;
 padding: 0 1.5rem;
 min-height: var(--header-height);
}

.navbar .logo {
 font-family: var(--font-heading);
 font-size: 1.8em;
 font-weight: 700;
 color: var(--primary-color);
 text-transform: uppercase;
}

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

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

.nav-links li a:hover,
.nav-links li a.active {
 color: var(--primary-color);
}

.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-cta {
 margin-left: 1rem;
 padding: 0.7rem 1.5rem;
 font-size: 0.95rem;
 border-radius: 5px;
 background-color: var(--accent-color);
 border-color: var(--accent-color);
 color: var(--white-bg);
}

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

.nav-toggle {
 display: none;
 flex-direction: column;
 justify-content: space-between;
 width: 30px;
 height: 20px;
 background: transparent;
 border: none;
 cursor: pointer;
 padding: 0;
}

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

.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;
 align-items: center;
 justify-content: space-between;
 padding: 4rem 1.5rem;
 gap: 3rem;
 max-width: var(--max-width);
 margin: 0 auto;
 min-height: calc(100vh - var(--header-height));
}

.hero-content {
 flex: 1;
 text-align: left;
}

.hero-content h1 {
 font-size: 3.5em;
 margin-bottom: 0.5em;
 color: var(--primary-color);
 line-height: 1.1;
}

.hero-content p {
 font-size: 1.25em;
 color: #555;
 margin-bottom: 2em;
 max-width: 600px;
}

.hero-actions {
 display: flex;
 gap: 1.5rem;
 flex-wrap: wrap;
}

.hero-image-container {
 flex: 1;
 display: flex;
 justify-content: flex-end;
 align-items: center;
}

.hero-image {
 max-width: 100%;
 border-radius: 8px;
 box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 object-fit: cover;
 max-height: 500px;
}

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

.feature-item {
 background-color: var(--white-bg);
 padding: 2rem;
 border-radius: 8px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 text-align: center;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 border-top: 5px solid var(--primary-color);
}

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

.feature-item .feature-icon {
 width: 80px; /* Adjust size based on image type */
 height: 80px;
 margin: 0 auto 1.5rem auto;
 object-fit: cover;
 border-radius: 50%;
 border: 3px solid var(--primary-color);
}

.feature-item h3 {
 color: var(--primary-color);
 font-size: 1.4em;
 margin-bottom: 0.8em;
}

.feature-item p {
 color: #666;
 font-size: 0.95em;
}

/* About Preview Section */
.about-content-wrapper {
 display: flex;
 gap: 3rem;
 align-items: center;
}

.about-image {
 flex: 1;
}

.about-image img {
 border-radius: 8px;
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.about-text {
 flex: 1;
}

.about-text h2 {
 text-align: left;
 color: var(--primary-color);
}

.about-text p {
 margin-bottom: 1.5rem;
 font-size: 1.05em;
 color: #444;
}

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

.testimonial-card {
 background-color: var(--white-bg);
 padding: 2rem;
 border-radius: 8px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 text-align: center;
 border-left: 5px solid var(--accent-color);
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}

.testimonial-avatar {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 1rem auto;
 border: 3px solid var(--accent-color);
}

.testimonial-text {
 font-style: italic;
 color: #444;
 margin-bottom: 1.5rem;
 font-size: 1.1em;
}

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

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

.service-card {
 background-color: var(--white-bg);
 border-radius: 8px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 overflow: hidden;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 border: 1px solid var(--border-color);
}

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

.service-card-image {
 height: 200px;
 width: 100%;
 object-fit: cover;
}

.service-card h3 {
 font-size: 1.6em;
 color: var(--primary-color);
 margin-top: 1.5rem;
 padding: 0 1.5rem;
}

.service-card p {
 font-size: 0.95em;
 color: #666;
 padding: 0 1.5rem;
 margin-bottom: 1rem;
}

.service-card .btn-text {
 display: block;
 text-align: right;
 padding: 0 1.5rem 1.5rem 1.5rem;
}

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

.blog-card {
 background-color: var(--white-bg);
 border-radius: 8px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 overflow: hidden;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 border: 1px solid var(--border-color);
}

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

.blog-card-image {
 height: 220px;
 width: 100%;
 object-fit: cover;
 border-bottom: 1px solid var(--border-color);
}

.blog-card-content {
 padding: 1.5rem;
}

.blog-card-content h3 {
 font-size: 1.4em;
 margin-bottom: 0.8rem;
 line-height: 1.3;
}

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

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

.blog-card-content p {
 font-size: 0.9em;
 color: #666;
 margin-bottom: 1rem;
}

/* CTA Banner */
.cta-banner {
 background-color: var(--primary-color);
 padding: 5rem 1.5rem;
 text-align: center;
 border-radius: 8px;
 margin: 4rem auto;
 max-width: var(--max-width);
}

.cta-banner .section-title {
 color: var(--white-bg);
 margin-bottom: 1rem;
 font-size: 2.8em;
}

.cta-banner .section-subtitle {
 color: #f7edea;
 margin-bottom: 2rem;
 font-size: 1.2em;
 max-width: 800px;
}

/* Footer */
.main-footer {
 background-color: var(--footer-bg);
 color: var(--footer-text-color);
 padding: 4rem 0 1rem 0;
 font-size: 0.95em;
}

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

.footer-col h3 {
 color: var(--white-bg);
 font-size: 1.3em;
 margin-bottom: 1.2rem;
 font-family: var(--font-body);
 font-weight: 600;
}

.footer-col p {
 margin-bottom: 0.8rem;
 color: var(--footer-text-color);
}

.footer-col ul {
 padding: 0;
}

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

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

.footer-col ul li a:hover {
 color: var(--accent-color);
 text-decoration: underline;
}

.footer-col.brand-info .social-links {
 margin-top: 1.5rem;
 display: flex;
 gap: 1rem;
}

.footer-col.brand-info .social-links a {
 color: var(--footer-text-color);
 font-size: 1.2em;
 width: 35px;
 height: 35px;
 border: 1px solid var(--footer-text-color);
 border-radius: 50%;
 display: flex;
 justify-content: center;
 align-items: center;
 transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-col.brand-info .social-links a:hover {
 background-color: var(--accent-color);
 border-color: var(--accent-color);
 transform: translateY(-3px);
 color: var(--white-bg);
}

.footer-col.contact-info p i {
 margin-right: 0.8rem;
 color: var(--accent-color);
}

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

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

.footer-bottom {
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 padding-top: 1.5rem;
 text-align: center;
 color: #bdbdbd;
}

/* Specific page styles - Contact Page */
.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 3rem;
 margin-top: 3rem;
}

.contact-info-block {
 background-color: var(--light-bg);
 padding: 2.5rem;
 border-radius: 8px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-block h3 {
 color: var(--primary-color);
 margin-bottom: 1.5rem;
}

.contact-info-block p {
 display: flex;
 align-items: center;
 margin-bottom: 1rem;
 font-size: 1.05em;
}

.contact-info-block p i {
 margin-right: 1rem;
 color: var(--accent-color);
 font-size: 1.2em;
}

.contact-form-container {
 background-color: var(--white-bg);
 padding: 2.5rem;
 border-radius: 8px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
 color: var(--primary-color);
 margin-bottom: 1.5rem;
}

.contact-form .form-group {
 margin-bottom: 1.5rem;
}

.contact-form label {
 display: block;
 margin-bottom: 0.5rem;
 font-weight: 600;
 color: #444;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
 width: 100%;
 padding: 1rem;
 border: 1px solid var(--border-color);
 border-radius: 5px;
 font-family: var(--font-body);
 font-size: 1em;
 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 input[type="tel"]:focus,
.contact-form textarea:focus {
 border-color: var(--primary-color);
 outline: none;
 box-shadow: 0 0 0 3px rgba(154, 52, 18, 0.2);
}

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

.contact-form .btn-primary {
 width: auto;
 display: block; /* Make it block to span full width on small screens */
 margin: 0 auto; /* Center on small screens */
}

/* Map Section */
.map-section {
 padding: 0; /* Remove top/bottom padding to make map span full width */
 margin-top: 4rem;
}
.map-container {
 height: 450px;
 width: 100%;
 overflow: hidden;
 border-radius: 8px;
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
 width: 100%;
 height: 100%;
 border: 0;
}

/* Media Queries */
@media (max-width: 992px) {
 .hero-section {
 flex-direction: column;
 text-align: center;
 padding-top: 2rem;
 min-height: auto;
 }

 .hero-content {
 order: 2;
 }

 .hero-image-container {
 order: 1;
 justify-content: center;
 margin-bottom: 2rem;
 }

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

 .hero-content p {
 font-size: 1.1em;
 }

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

 .about-content-wrapper {
 flex-direction: column;
 }

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

 .contact-grid {
 grid-template-columns: 1fr;
 }
}

@media (max-width: 768px) {
 .navbar {
 padding: 0 1rem;
 }

 .nav-links {
 position: fixed;
 top: 0;
 left: -100%;
 width: 80%;
 height: 100vh;
 background-color: var(--primary-color);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 transition: left 0.4s ease-in-out;
 z-index: 999;
 box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
 }

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

 .nav-links li {
 margin: 1.5rem 0;
 opacity: 0;
 transform: translateX(-20px);
 transition: opacity 0.4s ease-out, transform 0.4s ease-out;
 }

 .nav-links.active li {
 opacity: 1;
 transform: translateX(0);
 }

 .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
 .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
 .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
 .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
 .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

 .nav-links li a {
 color: var(--white-bg);
 font-size: 1.5em;
 padding: 0.8rem 1.5rem;
 width: 100%;
 text-align: center;
 }

 .nav-links li a:hover,
 .nav-links li a.active {
 color: var(--accent-color);
 }
 .nav-links li a::after {
 background-color: var(--accent-color);
 }

 .nav-cta {
 margin-left: 0;
 margin-top: 1rem;
 background-color: var(--accent-color);
 border-color: var(--accent-color);
 color: var(--white-bg);
 font-size: 1.2em;
 }

 .nav-toggle {
 display: flex;
 }

 .section-spacing {
 padding: 4rem 0;
 }

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

 .section-subtitle {
 font-size: 1em;
 margin-bottom: 2rem;
 }
 .main-footer .footer-grid {
 grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
 }
}

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

 .hero-content h1 {
 font-size: 2.5em;
 }
 .hero-content p {
 font-size: 1em;
 }
 .hero-actions {
 flex-direction: column;
 gap: 1rem;
 }
 .btn {
 width: 100%;
 }
 .cta-banner .section-title {
 font-size: 2em;
 }
 .cta-banner .section-subtitle {
 font-size: 1em;
 }
 .main-footer .footer-grid {
 grid-template-columns: 1fr;
 text-align: center;
 }
 .footer-col.brand-info .social-links {
 justify-content: center;
 }
}

/* Hero for specific pages */
.page-hero {
 background-color: var(--primary-color);
 color: var(--white-bg);
 padding: 6rem 0 4rem 0;
 text-align: center;
 position: relative;
 overflow: hidden;
}

.page-hero::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(135deg, rgba(154, 52, 18, 0.8) 0%, rgba(234, 88, 12, 0.8) 100%);
 z-index: 1;
}

.page-hero-content {
 position: relative;
 z-index: 2;
 max-width: 800px;
 margin: 0 auto;
 padding: 0 1.5rem;
}

.page-hero h1 {
 color: var(--white-bg);
 font-size: 3em;
 margin-bottom: 0.5rem;
}

.page-hero p {
 font-size: 1.1em;
 line-height: 1.6;
 opacity: 0.9;
}

/* General Content Page Layout */
.content-section {
 padding: 4rem 0;
 background-color: var(--white-bg);
}
.content-section.bg-light {
 background-color: var(--light-bg);
}

.content-wrapper {
 max-width: 900px;
 margin: 0 auto;
 padding: 0 1.5rem;
}

.content-wrapper h2 {
 color: var(--primary-color);
 margin-top: 2rem;
 margin-bottom: 1rem;
 text-align: left;
}

.content-wrapper h3 {
 color: var(--accent-color);
 margin-top: 1.5rem;
 margin-bottom: 0.8rem;
}

.content-wrapper p {
 margin-bottom: 1rem;
 line-height: 1.7;
 color: #444;
}

.content-wrapper ul {
 list-style: disc;
 margin-left: 1.5rem;
 margin-bottom: 1rem;
 color: #444;
}

.content-wrapper ul li {
 margin-bottom: 0.5rem;
 line-height: 1.6;
}

/* About page specific */
.team-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2.5rem;
 margin-top: 3rem;
}

.team-member-card {
 background-color: var(--white-bg);
 padding: 1.5rem;
 border-radius: 8px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 text-align: center;
 border-top: 4px solid var(--accent-color);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member-card:hover {
 transform: translateY(-5px);
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.team-member-card h4 {
 color: var(--primary-color);
 margin-bottom: 0.5rem;
 font-size: 1.3em;
}

.team-member-card p.role {
 color: var(--accent-color);
 font-weight: 600;
 margin-bottom: 1rem;
 font-size: 0.95em;
}

.team-member-card p.bio {
 font-size: 0.9em;
 color: #666;
 line-height: 1.5;
}

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

.value-item {
 background-color: var(--white-bg);
 padding: 2rem;
 border-radius: 8px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 text-align: center;
 border-bottom: 4px solid var(--primary-color);
}
.value-item i {
 font-size: 2.5em;
 color: var(--accent-color);
 margin-bottom: 1rem;
}
.value-item h3 {
 color: var(--primary-color);
 font-size: 1.4em;
 margin-bottom: 0.8rem;
}
.value-item p {
 font-size: 0.95em;
 color: #666;
}

/* Services page specific */
.service-detail-section {
 padding: 3rem 0;
}
.full-service-card {
 display: flex;
 flex-direction: column;
 background-color: var(--white-bg);
 border-radius: 8px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 margin-bottom: 2.5rem;
 overflow: hidden;
}
.full-service-card:nth-child(even) {
 flex-direction: column-reverse; /* For alternating image side */
}
.full-service-card .service-image-half {
 width: 100%;
 height: 300px;
 object-fit: cover;
}
.full-service-card .service-content-half {
 padding: 2rem;
}
.full-service-card h3 {
 color: var(--primary-color);
 font-size: 2em;
 margin-bottom: 1rem;
 text-align: left;
}
.full-service-card p {
 font-size: 1.05em;
 line-height: 1.7;
 color: #444;
}
.full-service-card ul {
 list-style: none;
 padding: 0;
 margin-bottom: 1.5rem;
}
.full-service-card ul li {
 margin-bottom: 0.8rem;
 font-size: 1em;
 color: #555;
}
.full-service-card ul li::before {
 content: "\f00c"; /* FontAwesome check icon */
 font-family: "Font Awesome 5 Free";
 font-weight: 900;
 color: var(--accent-color);
 margin-right: 0.8rem;
}
.process-steps {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
 margin-top: 3rem;
 text-align: center;
}
.process-step {
 background-color: var(--white-bg);
 padding: 2rem;
 border-radius: 8px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
 border-bottom: 3px solid var(--accent-color);
 transition: transform 0.3s ease;
}
.process-step:hover {
 transform: translateY(-5px);
}
.process-step .step-number {
 font-size: 1.8em;
 font-weight: 700;
 color: var(--accent-color);
 background-color: rgba(234, 88, 12, 0.1);
 border-radius: 50%;
 width: 50px;
 height: 50px;
 display: flex;
 justify-content: center;
 align-items: center;
 margin: 0 auto 1rem auto;
}
.process-step h4 {
 color: var(--primary-color);
 font-size: 1.4em;
 margin-bottom: 0.8rem;
}
.process-step p {
 font-size: 0.95em;
 color: #666;
}

@media (min-width: 768px) {
 .full-service-card {
 flex-direction: row;
 }
 .full-service-card:nth-child(even) {
 flex-direction: row-reverse;
 }
 .full-service-card .service-image-half,
 .full-service-card .service-content-half {
 flex: 1;
 width: 50%;
 }
 .full-service-card .service-image-half {
 height: auto;
 }
}

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

/* Blog Post Page */
.blog-post-header {
 text-align: center;
 margin-bottom: 3rem;
}
.blog-post-header h1 {
 font-size: 3em;
 color: var(--primary-color);
 margin-bottom: 0.8rem;
}
.blog-post-meta {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 1rem;
 color: #777;
 font-size: 0.95em;
}
.blog-post-meta img {
 width: 40px;
 height: 40px;
 border-radius: 50%;
 object-fit: cover;
 border: 2px solid var(--border-color);
}
.blog-post-image {
 margin-bottom: 3rem;
 border-radius: 8px;
 box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.blog-post-content {
 font-size: 1.05em;
 line-height: 1.8;
}
.blog-post-content h2,
.blog-post-content h3 {
 text-align: left;
 color: var(--primary-color);
 margin-top: 2rem;
 margin-bottom: 1rem;
}
.blog-post-content ul,
.blog-post-content ol {
 margin-left: 2rem;
 margin-bottom: 1.5rem;
 color: #444;
 list-style: disc;
}
.blog-post-content ol {
 list-style: decimal;
}
.blog-post-content blockquote {
 border-left: 4px solid var(--accent-color);
 padding-left: 1.5rem;
 margin: 2rem 0;
 font-style: italic;
 color: var(--heading-color);
 background-color: var(--light-bg);
 padding: 1.5rem;
 border-radius: 4px;
}
.related-posts {
 margin-top: 4rem;
 border-top: 1px solid var(--border-color);
 padding-top: 3rem;
}
.related-posts h3 {
 text-align: center;
 color: var(--accent-color);
 margin-bottom: 2rem;
}
.related-posts-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem;
}
/* Reusing blog-card for related posts */

@media (max-width: 768px) {
 .blog-post-header h1 {
 font-size: 2.2em;
 }
 .blog-post-meta {
 flex-direction: column;
 gap: 0.5rem;
 }
}

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

.gallery-item img {
 width: 100%;
 height: 250px;
 object-fit: cover;
 border-radius: 8px;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 cursor: pointer;
}

.gallery-item img:hover {
 transform: scale(1.03);
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Lightbox styles */
.lightbox {
 display: none; /* Hidden by default */
 position: fixed; /* Stay in place */
 z-index: 1001; /* Sit on top */
 padding-top: 60px; /* Location of the box */
 left: 0;
 top: 0;
 width: 100%; /* Full width */
 height: 100%; /* Full height */
 overflow: auto; /* Enable scroll if needed */
 background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.lightbox-content {
 margin: auto;
 display: block;
 max-width: 80%;
 max-height: 80vh;
 animation-name: zoom;
 animation-duration: 0.6s;
 border-radius: 8px;
}

.lightbox-caption {
 margin: auto;
 display: block;
 width: 80%;
 max-width: 700px;
 text-align: center;
 color: #ccc;
 padding: 10px 0;
 height: 150px;
}

.lightbox-close {
 position: absolute;
 top: 15px;
 right: 35px;
 color: #f1f1f1;
 font-size: 40px;
 font-weight: bold;
 transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
 color: #bbb;
 text-decoration: none;
 cursor: pointer;
}

@keyframes zoom {
 from {transform:scale(0)}
 to {transform:scale(1)}
}

/* FAQ Page */
.accordion-wrapper {
 max-width: 800px;
 margin: 3rem auto;
}

.accordion-item {
 background-color: var(--white-bg);
 border: 1px solid var(--border-color);
 border-radius: 8px;
 margin-bottom: 1rem;
 overflow: hidden;
 box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

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

.accordion-header:hover {
 background-color: rgba(154, 52, 18, 0.05); /* Light hover on primary */
}
.accordion-header h3 {
 margin: 0;
 font-size: 1.15em;
 color: var(--primary-color);
 flex: 1;
 padding-right: 1rem;
}

.accordion-icon {
 font-size: 1.2em;
 color: var(--accent-color);
 transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
 transform: rotate(180deg);
}

.accordion-content {
 background-color: var(--white-bg);
 padding: 0 1.5rem;
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content.active {
 max-height: 500px; /* Adjust as needed for content length */
 padding: 1.5rem;
}

.accordion-content p {
 margin-bottom: 0;
 font-size: 0.95em;
 line-height: 1.6;
 color: #555;
}

/* Thanks Page */
.thanks-section {
 min-height: 70vh;
 display: flex;
 justify-content: center;
 align-items: center;
 text-align: center;
 background-color: var(--light-bg);
 padding: 4rem 1.5rem;
}

.thanks-content {
 max-width: 600px;
 background-color: var(--white-bg);
 padding: 3rem;
 border-radius: 8px;
 box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.thanks-content h1 {
 font-size: 3em;
 color: var(--primary-color);
 margin-bottom: 1rem;
}
.thanks-content p {
 font-size: 1.2em;
 color: #555;
 margin-bottom: 2rem;
}

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

.error-content {
 max-width: 700px;
 background-color: var(--white-bg);
 padding: 3rem;
 border-radius: 8px;
 box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.error-code {
 font-size: 6em;
 color: var(--primary-color);
 font-weight: 700;
 line-height: 1;
 margin-bottom: 0.5rem;
}
.error-content h1 {
 font-size: 2.5em;
 color: var(--heading-color);
 margin-bottom: 1rem;
}
.error-content p {
 font-size: 1.1em;
 color: #555;
 margin-bottom: 2rem;
}
.error-content .btn-primary {
 padding: 0.8rem 2rem;
}

/* Utility classes */
.visible {
 opacity: 1 !important;
 transform: translateY(0) !important;
}

.fade-in {
 opacity: 0;
 transition: opacity 0.6s ease-out;
}
.slide-up {
 opacity: 0;
 transform: translateY(20px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scale-in {
 opacity: 0;
 transform: scale(0.95);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}