/* Reset and Base Styles */
:root {
  --primary-color: #d67e5f;
  --secondary-color: #7d4f3f;
  --accent-color: #f2e3d5;
  --dark-color: #2c2824;
  --light-color: #f8f5f2;
  --success-color: #5cb85c;
  --warning-color: #f0ad4e;
  --danger-color: #d9534f;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  line-height: 1.6;
  background-color: var(--light-color);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  font-family: var(--font-primary);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
}

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

.btn.primary:hover {
  background-color: #c06b4d;
}

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

.btn.secondary:hover {
  background-color: #6a4235;
}

.btn.tertiary {
  background-color: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-400);
}

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

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
}

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

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

.logo-container h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.5rem 0;
  position: relative;
}

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

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

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

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 5rem 5%;
  background-color: var(--accent-color);
  overflow: hidden;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

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

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

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

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

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

.feature-card:hover {
  transform: translateY(-5px);
}

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

/* Testimonials Section */
.testimonials {
  padding: 5rem 5%;
  background-color: var(--accent-color);
  text-align: center;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 1rem 0;
  margin-bottom: 2rem;
  scroll-snap-type: x mandatory;
}

.testimonial {
  flex: 0 0 auto;
  width: 100%;
  max-width: 500px;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  scroll-snap-align: start;
}

.testimonial-text {
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
}

/* Recent Posts Section */
.recent-posts {
  padding: 5rem 5%;
  background-color: white;
}

.post-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.post-card:hover {
  transform: translateY(-5px);
}

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

.post-content {
  padding: 1.5rem;
}

.post-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.post-card .read-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
  color: var(--primary-color);
}

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

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

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

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-logo h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: white;
  margin-bottom: 1rem;
}

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

.footer-links a,
.footer-social a {
  color: var(--gray-400);
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--primary-color);
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

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

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

.footer-policies {
  display: flex;
  gap: 1.5rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.modal-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.checkbox-group input {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

/* Rating Stars */
.rating-stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.rating-stars input {
  display: none;
}

.rating-stars label {
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d3d3d3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3e%3c/polygon%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23d67e5f' stroke='%23d67e5f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3e%3c/polygon%3e%3c/svg%3e");
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1.5rem;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

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

/* Page Banner */
.page-banner {
  background-color: var(--accent-color);
  padding: 4rem 5%;
  text-align: center;
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

/* Services Page */
.services-intro {
  padding: 4rem 5%;
  display: flex;
  align-items: center;
  background-color: white;
}

.intro-content {
  flex: 1;
  padding-right: 2rem;
}

.intro-image {
  flex: 1;
}

.intro-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.service-list {
  padding: 2rem 5% 5rem;
  background-color: white;
}

.service-card {
  display: flex;
  margin-bottom: 3rem;
  background-color: var(--light-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.service-image {
  flex: 1;
  min-width: 300px;
}

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

.service-details {
  flex: 2;
  padding: 2rem;
}

.service-details h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-details h3 i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.service-features {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  position: relative;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: -1.5rem;
  color: var(--primary-color);
  font-weight: bold;
}

.service-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.service-price span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.cta-section {
  background-color: var(--secondary-color);
  color: white;
  padding: 4rem 5%;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1.5rem;
}

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

/* Blog Page */
.blog-intro {
  padding: 3rem 5%;
  text-align: center;
  background-color: white;
}

.blog-categories {
  padding: 1rem 5% 2rem;
  background-color: white;
  text-align: center;
}

.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.category-btn {
  background-color: transparent;
  border: 1px solid var(--gray-300);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.blog-posts {
  padding: 0 5% 5rem;
  background-color: white;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.post-category {
  background-color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  color: var(--secondary-color);
}

.featured {
  display: flex;
  margin-bottom: 3rem;
}

.featured .post-image {
  flex: 1;
  min-width: 300px;
}

.featured .post-content {
  flex: 1;
}

.newsletter {
  background-color: var(--accent-color);
  padding: 4rem 5%;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* About Page */
.about-intro {
  padding: 4rem 5%;
  display: flex;
  align-items: center;
  background-color: white;
}

.values {
  padding: 5rem 5%;
  background-color: var(--light-color);
  text-align: center;
}

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

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

.value-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.team {
  padding: 5rem 5%;
  background-color: white;
  text-align: center;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.team-member {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.team-member img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
}

.team-member h3 {
  margin-bottom: 0.25rem;
}

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

.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.credentials {
  padding: 5rem 5%;
  background-color: var(--light-color);
}

.credentials-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.credentials-text {
  flex: 1;
}

.credentials-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}

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

.certifications-logos {
  flex: 1;
}

/* Contact Page */
.contact-container {
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  background-color: white;
}

.contact-info h3,
.contact-form-container h3 {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.contact-info h3 i,
.contact-form-container h3 i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.info-card {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

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

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.info-item h4 {
  margin-bottom: 0.5rem;
}

.social-connect {
  margin-top: 2rem;
  text-align: center;
}

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

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

.map-section {
  padding: 4rem 5%;
  background-color: white;
  text-align: center;
}

.map-container {
  position: relative;
  margin-top: 2rem;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 2rem;
  text-align: center;
}

.map-overlay p {
  max-width: 500px;
}

.faq-section {
  padding: 4rem 5%;
  background-color: var(--light-color);
  text-align: center;
}

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

.faq-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: left;
}

.faq-item h4 {
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

/* Icons */
[class^="icon-"] {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  vertical-align: middle;
}

.icon-star:before {
  content: '★';
}

.icon-award:before {
  content: '🏆';
}

.icon-user-check:before {
  content: '👤';
}

.icon-thumbs-up:before {
  content: '👍';
}

.icon-trending-up:before {
  content: '📈';
}

.icon-message-circle:before {
  content: '💬';
}

.icon-book-open:before {
  content: '📖';
}

.icon-map-pin:before {
  content: '📍';
}

.icon-phone:before {
  content: '📞';
}

.icon-mail:before {
  content: '✉️';
}

.icon-briefcase:before {
  content: '💼';
}

.icon-user:before {
  content: '👤';
}

.icon-refresh-cw:before {
  content: '🔄';
}

.icon-calendar:before {
  content: '📅';
}

.icon-shopping-bag:before {
  content: '🛍️';
}

.icon-users:before {
  content: '👥';
}

.icon-gift:before {
  content: '🎁';
}

.icon-feather:before {
  content: '✒️';
}

.icon-sun:before {
  content: '☀️';
}

.icon-grid:before {
  content: '⊞';
}

.icon-droplet:before {
  content: '💧';
}

.icon-watch:before {
  content: '⌚';
}

.icon-heart:before {
  content: '❤️';
}

.icon-compass:before {
  content: '🧭';
}

.icon-leaf:before {
  content: '🍃';
}

.icon-info:before {
  content: 'ℹ️';
}

.icon-message-square:before {
  content: '💬';
}

.icon-map:before {
  content: '🗺️';
}

.icon-help-circle:before {
  content: '❓';
}

.icon-clock:before {
  content: '🕒';
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero, 
  .services-intro,
  .about-intro,
  .credentials-content,
  .featured {
    flex-direction: column;
  }
  
  .hero-content, 
  .intro-content,
  .credentials-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .service-card {
    flex-direction: column;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem 5% 0.5rem;
  }
  
  .logo-container {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 3rem 5%;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-policies {
    justify-content: center;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .cta-buttons,
  .newsletter-form {
    flex-direction: column;
  }
  
  .cta-buttons .btn,
  .newsletter-form button {
    width: 100%;
  }
  
  .service-price {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
