:root {
  --primary-color: #7d5a5a;
  --primary-hover: #956b6b;
  --secondary-color: #a67f8e;
  --accent-color: #d6909a;
  --text-color: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-color: #ffffff;
  --bg-light: #f9f7f8;
  --bg-dark: #2d2d2d;
  --border-color: #eeeeee;
  --border-radius: 6px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
  --footer-bg: #2d2d2d;
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
}

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

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

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

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

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

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 1.6rem;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 2rem;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

.secondary-btn:hover {
  background-color: #b88d9d;
  color: white;
}

.outline-btn {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

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

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

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

.logo span {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-color);
}

nav ul {
  display: flex;
}

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

nav ul li a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-color);
  padding: 1rem 0;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  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-color);
}

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

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/1.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  margin-top: var(--header-height);
}

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

.hero h1 {
  font-size: 5rem;
  margin-bottom: 2rem;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.hero .btn {
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Featured Posts Section */
.featured-posts {
  padding: 8rem 0;
}

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

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

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

.post-image {
  overflow: hidden;
  height: 220px;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 2rem;
}

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

.post-content h3 a {
  color: var(--text-color);
}

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

.post-meta {
  color: var(--text-muted);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.post-excerpt {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

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

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

.read-more:hover::after {
  margin-left: 1rem;
}

.view-more {
  text-align: center;
  margin-top: 4rem;
}

/* Services Overview */
.services-overview {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

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

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

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

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

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

.service-card h3 {
  margin-bottom: 1.5rem;
}

.service-card p {
  color: var(--text-light);
}

/* Testimonials */
.testimonials {
  padding: 8rem 0;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slide {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 2rem;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--text-color);
  position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
  content: '"';
  font-size: 3rem;
  color: var(--accent-color);
}

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

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

.testimonial-author h4 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.testimonial-author p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.prev-btn, .next-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 2rem;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  gap: 0.8rem;
  margin: 0 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

/* Admin Preview */
.admin-preview {
  padding: 8rem 0;
  background-color: var(--bg-light);
}

.admin-frame {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.admin-frame iframe {
  border: none;
}

/* Newsletter */
.newsletter {
  padding: 8rem 0;
  background-color: var(--primary-color);
  color: white;
}

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

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

.newsletter p {
  margin-bottom: 3rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  min-width: 300px;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  outline: none;
}

/* Footer */
footer {
  background-color: var(--footer-bg);
  color: white;
  padding: 6rem 0 2rem;
}

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

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

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.page-views {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}

.footer-links h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

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

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

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li svg {
  margin-right: 1rem;
  min-width: 20px;
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  z-index: 1001;
  display: none;
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s forwards;
}

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

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

.cookie-policy {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

/* Page Header */
.page-header {
  background-color: var(--bg-light);
  padding: 12rem 0 6rem;
  text-align: center;
  margin-bottom: 6rem;
}

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

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
}

/* Blog Page Styles */
.blog-filters {
  margin-bottom: 4rem;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.search-box {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 400px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1.2rem 1.5rem;
  font-size: 1.6rem;
}

.search-box button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.search-box button:hover {
  background-color: var(--primary-hover);
}

.category-filter select {
  padding: 1.2rem 3rem 1.2rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  background-color: white;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 2rem;
  cursor: pointer;
}

.blog-content {
  padding-bottom: 8rem;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.blog-image {
  overflow: hidden;
  height: 300px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-text {
  padding: 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.date {
  color: var(--text-muted);
}

.blog-text h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.blog-text h2 a {
  color: var(--text-color);
  transition: var(--transition);
}

.blog-text h2 a:hover {
  color: var(--primary-color);
}

.blog-text p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
}

.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.pagination .current {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination .next, .pagination .prev {
  width: auto;
  padding: 0 1.5rem;
  border-radius: 20px;
}

/* Blog Post Styles */
.blog-post {
  padding: 12rem 0 6rem;
}

.post-header {
  margin-bottom: 4rem;
}

.post-header .post-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.post-header h1 {
  margin-bottom: 3rem;
  font-size: 4.2rem;
}

.post-header .post-image {
  height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

.post-intro {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.post-content h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

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

.post-content ul, .post-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.post-content ul li, .post-content ol li {
  margin-bottom: 1rem;
  list-style-type: disc;
}

.post-content ol li {
  list-style-type: decimal;
}

.content-callout {
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

.content-callout h3 {
  margin-top: 0;
}

.content-grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.content-grid.two-column {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.content-image {
  margin: 3rem 0;
}

.content-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

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

.content-quote {
  margin: 4rem 0;
  padding-left: 3rem;
  border-left: 4px solid var(--accent-color);
}

.content-quote blockquote {
  font-size: 2rem;
  font-style: italic;
  color: var(--text-color);
}

.content-quote cite {
  display: block;
  color: var(--text-muted);
  font-style: normal;
  font-size: 1.6rem;
  margin-top: 1rem;
}

.seasons-accordion {
  margin: 3rem 0;
}

.season-item {
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.season-title {
  background-color: var(--bg-light);
  padding: 1.5rem 2rem;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.season-title::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--primary-color);
}

.season-item.active .season-title::after {
  content: '-';
}

.season-content {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.season-item.active .season-content {
  max-height: 1000px;
  padding: 2rem;
}

.faq-section {
  margin: 4rem 0;
}

.faq-item {
  margin-bottom: 2.5rem;
}

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

.post-cta {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 4rem 0;
}

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

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

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

.post-tags a {
  background-color: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-size: 1.4rem;
  color: var(--text-light);
}

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

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--text-light);
  transition: var(--transition);
}

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

.author-bio {
  display: flex;
  align-items: center;
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: var(--border-radius);
  margin-bottom: 4rem;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 2rem;
}

.author-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  color: var(--text-muted);
}

.author-info h4 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.author-info p {
  margin-bottom: 0;
}

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

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

.related-posts .post-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* Services Page Styles */
.services-intro {
  margin-bottom: 6rem;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 2rem;
}

.intro-text p {
  margin-bottom: 2rem;
}

.intro-text .btn {
  margin-top: 1rem;
}

.intro-image {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.services-list {
  margin-bottom: 6rem;
}

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

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

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

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

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

.service-details h3 {
  margin-bottom: 1rem;
}

.service-price {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

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

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

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

.service-packages {
  margin-bottom: 6rem;
}

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

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

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

.package-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.03);
  position: relative;
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.package-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-size: 1.2rem;
  font-weight: 500;
}

.package-header {
  background-color: var(--bg-light);
  padding: 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.package-header h3 {
  margin-bottom: 1rem;
}

.package-price {
  font-size: 3.6rem;
  font-weight: 600;
  color: var(--primary-color);
}

.package-content {
  padding: 3rem;
}

.package-content ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.package-content ul li {
  margin-bottom: 1rem;
  position: relative;
}

.package-content ul li::before {
  content: '✓';
  position: absolute;
  left: -2rem;
  color: var(--primary-color);
  font-weight: bold;
}

.package-note {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
}

.cta-section {
  background-color: var(--bg-light);
  padding: 6rem 0;
  margin-bottom: 6rem;
}

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

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

.cta-content p {
  margin-bottom: 3rem;
}

.faq-section {
  margin-bottom: 6rem;
}

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

/* About Page Styles */
.about-intro {
  margin-bottom: 6rem;
}

.team-section {
  margin-bottom: 6rem;
}

.section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: -2rem auto 4rem;
  color: var(--text-light);
}

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

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

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

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 2rem;
}

.team-info h3 {
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.team-bio {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--text-light);
  transition: var(--transition);
}

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

.about-timeline {
  margin-bottom: 6rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-left: 30px;
  padding-right: 0;
  margin-left: 50%;
}

.timeline-dot {
  position: absolute;
  right: -8px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 2px solid white;
}

.timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -8px;
}

.timeline-date {
  position: absolute;
  right: -120px;
  top: 0;
  font-weight: 600;
  color: var(--primary-color);
}

.timeline-item:nth-child(even) .timeline-date {
  right: auto;
  left: -120px;
}

.timeline-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.timeline-content h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

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

.values-section {
  margin-bottom: 6rem;
}

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

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

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

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

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

.value-card h3 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.value-card p {
  color: var(--text-light);
}

/* Contact Page Styles */
.contact-section {
  margin-bottom: 6rem;
}

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

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

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

.info-items {
  margin-bottom: 3rem;
}

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

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

.info-icon svg {
  width: 24px;
  height: 24px;
}

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

.info-content p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.info-note {
  color: var(--text-muted);
  font-size: 1.4rem;
}

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

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

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

.form-group {
  margin-bottom: 0;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  outline: none;
  transition: border-color 0.3s;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.form-checkbox input {
  width: auto;
  margin-top: 0.3rem;
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: normal;
}

.map-section {
  margin-bottom: 6rem;
}

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

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

.thank-you-modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 4rem;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 2rem;
}

.modal-icon svg {
  width: 40px;
  height: 40px;
}

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

.modal-content p {
  margin-bottom: 2.5rem;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  html {
    font-size: 60%;
  }
  
  .contact-grid,
  .service-item,
  .service-item.reverse,
  .intro-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-item.reverse {
    direction: ltr;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
    margin-left: 0;
  }
  
  .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 22px;
    right: auto;
  }
  
  .timeline-date,
  .timeline-item:nth-child(even) .timeline-date {
    right: auto;
    left: 0;
    top: -30px;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 58%;
  }
  
  header {
    height: 70px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  nav.active {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
  }
  
  nav ul li {
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
  
  .hero {
    margin-top: 70px;
    height: 80vh;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-image {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  
  .post-footer {
    flex-direction: column;
    gap: 2rem;
  }
  
  .post-header .post-image {
    height: 300px;
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .post-header .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 1.5rem;
  }
  
  .footer-links h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact ul li {
    justify-content: center;
  }
}
