/* Base Styles & Variables */
:root {
  --primary: #be7a79;
  --primary-dark: #a56967;
  --secondary: #557b83;
  --accent: #f3a683;
  --dark: #2d2d2d;
  --light: #f9f9f9;
  --gray: #f0f0f0;
  --medium-gray: #e0e0e0;
  --dark-gray: #727272;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --radius: 8px;
  --neon-glow: 0 0 10px rgba(190, 122, 121, 0.8), 0 0 20px rgba(190, 122, 121, 0.6), 0 0 30px rgba(190, 122, 121, 0.4);
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--primary-dark);
}

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

button, .btn {
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: var(--transition);
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

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

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

nav ul li a.active {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(245, 245, 245, 0.7) 0%, rgba(245, 245, 245, 0.3) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  max-width: 550px;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--dark);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.hero-image {
  width: 45%;
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Neon Button */
.neon-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  background-color: var(--primary);
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(190, 122, 121, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.neon-button:hover {
  background-color: var(--primary-dark);
  color: white;
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

.neon-button:active {
  transform: translateY(0);
}

/* Features Section */
.features {
  background-color: white;
  padding: 5rem 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.feature-card {
  background-color: var(--light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* Latest Posts Section */
.latest-posts {
  background-color: var(--gray);
  padding: 5rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.view-all {
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
}

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

.post-card {
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.post-image {
  height: 200px;
  position: relative;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius);
  z-index: 2;
  text-transform: uppercase;
}

.new-badge.large {
  font-size: 1rem;
  padding: 0.4rem 1rem;
}

.post-content {
  padding: 1.5rem;
}

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

.post-content p {
  color: var(--dark-gray);
  margin-bottom: 1.2rem;
}

.read-more {
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}

.read-more:after {
  content: '→';
  margin-left: 0.5rem;
  transition: var(--transition);
}

.read-more:hover:after {
  transform: translateX(5px);
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background-color: white;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.testimonial {
  background-color: var(--light);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.quote {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.testimonial p {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.client {
  display: flex;
  align-items: center;
}

.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info h4 {
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}

.client-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-style: normal;
}

/* CTA Section */
.cta {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 5rem 0;
}

.cta h2 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta .neon-button {
  background-color: white;
  color: var(--primary);
}

.cta .neon-button:hover {
  background-color: var(--light);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Page Header */
.page-header {
  background-color: var(--primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Blog Posts Page */
.blog-posts {
  padding: 5rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.blog-image {
  height: 100%;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.blog-meta .date {
  color: var(--dark-gray);
  margin-right: 1rem;
}

.blog-meta .category {
  color: var(--primary);
  font-weight: 500;
}

/* Services Pages */
.services-intro {
  padding: 5rem 0;
  background-color: white;
}

.services-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-content h2 {
  margin-bottom: 1.5rem;
}

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

.intro-image {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list {
  padding: 5rem 0;
  background-color: var(--gray);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: center;
}

.service-item.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-item.reverse .service-content {
  direction: ltr;
}

.service-item:last-child {
  margin-bottom: 0;
}

.service-image {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-content h2 {
  margin-bottom: 1.5rem;
}

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

.service-features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.feature svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-right: 1rem;
}

.price-tag {
  display: inline-block;
  background-color: var(--gray);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.service-process {
  padding: 5rem 0;
  background-color: white;
}

.service-process h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-steps:before {
  content: '';
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: var(--medium-gray);
  z-index: 1;
}

.step {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 18%;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 0;
}

.faq {
  padding: 5rem 0;
  background-color: var(--gray);
}

.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  padding-right: 1rem;
}

.faq-toggle {
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* About Page */
.about-story {
  padding: 5rem 0;
  background-color: white;
}

.about-story .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-content h2 {
  margin-bottom: 1.5rem;
}

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

.story-image {
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-values {
  padding: 5rem 0;
  background-color: var(--gray);
}

.our-values h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

.value-icon {
  width: 60px;
  height: 60px;
  background-color: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.value-icon svg {
  width: 30px;
  height: 30px;
}

.value-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.value-card p {
  color: var(--dark-gray);
  margin-bottom: 0;
}

.team {
  padding: 5rem 0;
  background-color: white;
}

.team h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.team-member {
  background-color: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.team-member img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.team-member h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.4rem;
}

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}

.team-member p:first-of-type {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  padding-bottom: 1.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background-color: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  color: var(--dark);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.credentials {
  padding: 5rem 0;
  background-color: var(--gray);
}

.credentials h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.credentials-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.credentials-list {
  margin-bottom: 2rem;
}

.credentials-list li {
  margin-bottom: 1rem;
}

/* Contact Page */
.contact-content {
  padding: 5rem 0;
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.info-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.info-content p, .info-content address {
  margin-bottom: 0;
  color: var(--dark-gray);
  font-style: normal;
}

.info-content a {
  color: var(--dark-gray);
  transition: var(--transition);
}

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

.social-connect {
  margin-top: 3rem;
}

.social-connect h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--dark);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.contact-form-container {
  background-color: var(--light);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-container h2 {
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(190, 122, 121, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
}

.map-section {
  padding: 5rem 0;
  background-color: var(--gray);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.map-container {
  height: 450px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  display: block;
}

/* Thank You Popup */
.thank-you-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.thank-you-popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: white;
  padding: 3rem;
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.thank-you-popup.active .popup-content {
  transform: translateY(0);
}

.popup-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.popup-content h2 {
  margin-bottom: 1rem;
}

.popup-content p {
  margin-bottom: 2rem;
}

.btn-close {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition);
}

.btn-close:hover {
  background-color: var(--primary-dark);
}

/* Blog Post */
.blog-post {
  padding: 5rem 0;
  background-color: white;
}

.post-header {
  margin-bottom: 3rem;
  position: relative;
}

.post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.post-category {
  color: var(--primary);
  font-weight: 500;
  margin-right: 1.5rem;
}

.post-date {
  color: var(--dark-gray);
}

.post-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.post-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.post-author span {
  font-weight: 500;
}

.featured-image {
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.post-content .intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 2rem;
}

.post-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.post-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.post-image {
  margin: 2.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.post-image img {
  width: 100%;
}

.image-caption {
  text-align: center;
  color: var(--dark-gray);
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 0;
}

.conclusion {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--gray);
  border-radius: var(--radius);
}

.post-footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid var(--medium-gray);
  border-bottom: 1px solid var(--medium-gray);
  margin-top: 3rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.tags span {
  margin-right: 1rem;
  font-weight: 500;
}

.tags a {
  background-color: var(--gray);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius);
  margin-right: 0.8rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tags a:hover {
  background-color: var(--primary);
  color: white;
}

.share {
  display: flex;
  align-items: center;
}

.share span {
  margin-right: 1rem;
  font-weight: 500;
}

.share a {
  width: 36px;
  height: 36px;
  background-color: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  color: var(--dark);
  transition: var(--transition);
}

.share a:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.related-posts {
  margin-top: 4rem;
}

.related-posts h3 {
  margin-bottom: 2rem;
  text-align: center;
}

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

.related-post {
  background-color: var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post h4 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.related-post a {
  display: inline-block;
  margin: 0 1.5rem 1.5rem;
  font-weight: 500;
}

.cta-box {
  margin-top: 4rem;
  background-color: var(--gray);
  padding: 3rem;
  border-radius: var(--radius);
  text-align: center;
}

.cta-box h3 {
  margin-bottom: 1rem;
}

.cta-box p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 5rem 0 0;
}

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

.footer-logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.footer-logo h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.footer-logo p {
  color: var(--medium-gray);
  margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
}

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

.footer-links ul li a {
  color: var(--medium-gray);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

.footer-contact svg {
  margin-right: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-social .social-icons {
  margin-top: 1rem;
}

.footer-social .social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-social .social-icons a:hover {
  background-color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright p {
  margin-bottom: 0;
  color: var(--medium-gray);
}

.legal-links a {
  color: var(--medium-gray);
  margin-left: 1.5rem;
  font-size: 0.9rem;
  transition: var(--transition);
}

.legal-links a:hover {
  color: white;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.5s ease;
}

.cookie-consent.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-content {
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content h3 {
  margin-bottom: 1rem;
}

.cookie-content p {
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-buttons button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition);
}

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

.btn-accept:hover {
  background-color: var(--primary-dark);
}

.btn-customize {
  background-color: var(--gray);
  color: var(--dark);
}

.btn-customize:hover {
  background-color: var(--medium-gray);
}

.btn-decline {
  background-color: var(--light);
  color: var(--dark);
  border: 1px solid var(--medium-gray) !important;
}

.btn-decline:hover {
  background-color: var(--gray);
}

.cookie-more-info {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .hero-image {
    width: 100%;
  }
  
  .services-intro .container,
  .about-story .container,
  .service-item,
  .service-item.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .service-item.reverse {
    direction: ltr;
  }
  
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .process-steps:before {
    display: none;
  }
  
  .step {
    width: 100%;
    max-width: 300px;
    margin-bottom: 2rem;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 250px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .legal-links a {
    margin: 0.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 101;
    padding: 5rem 2rem;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin: 1rem 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 102;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .post-footer {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .featured-image {
    height: 300px;
  }
  
  .service-process h2,
  .testimonials h2,
  .features h2,
  .faq h2,
  .team h2,
  .our-values h2,
  .credentials h2 {
    margin-bottom: 2rem;
  }
  
  .service-content {
    padding: 1rem 0;
  }
  
  .post-content .intro {
    font-size: 1.1rem;
  }
}
