:root {
  /* Color Palette */
  --primary-1: #6b4226; /* Rich brown - symbolizes stability and trust */
  --primary-2: #e8b87d; /* Warm sand - adds warmth and accessibility */
  --primary-3: #a67951; /* Medium brown - creates balance and hierarchy */
  --primary-4: #f2e8dc; /* Light cream - provides breathing space */
  --primary-5: #2d3047; /* Deep navy - adds professionalism and contrast */
  
  /* Shades */
  --primary-1-light: #8a6044;
  --primary-1-dark: #4c2e1b;
  --primary-2-light: #f8d8a7;
  --primary-2-dark: #c99c65;
  --primary-3-light: #c49973;
  --primary-3-dark: #865c3e;
  --primary-4-light: #ffffff;
  --primary-4-dark: #d9cec0;
  --primary-5-light: #494d6b;
  --primary-5-dark: #1a1c2b;
  
  /* Font sizes */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--primary-5);
  line-height: 1.6;
  background-color: var(--primary-4-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-1);
}

p {
  margin-bottom: var(--spacing-md);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-3);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--primary-2);
  color: var(--primary-5);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

section {
  padding: var(--spacing-xl) 0;
}

/* Header */
header {
  background-color: var(--primary-4-light);
  padding: var(--spacing-md) 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: var(--spacing-xs) 0;
  background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-1);
  font-family: 'Playfair Display', serif;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: var(--spacing-lg);
}

.nav-menu a {
  color: var(--primary-5);
  font-weight: 600;
  position: relative;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-2);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-1);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--primary-4);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(43, 34, 24, 0.7), rgba(43, 34, 24, 0.4));
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  color: white;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-lg);
  color: var(--primary-2);
}

.hero-desc {
  font-size: var(--font-size-lg);
  max-width: 600px;
  margin-bottom: var(--spacing-xl);
  color: white;
}

/* About Section */
.about {
  background-color: var(--primary-4-light);
  position: relative;
}

.about-shape {
  position: absolute;
  bottom: -50px;
  right: 0;
  width: 200px;
  height: 200px;
  background-color: var(--primary-2-light);
  opacity: 0.3;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 0;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.about-feature {
  background-color: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  color: var(--primary-2);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
}

.about-feature h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xs);
}

/* Services Section */
.services {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.services-shape {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-2-light);
  opacity: 0.2;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.service-item {
  background-color: var(--primary-4-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.service-item-content {
  padding: var(--spacing-lg);
}

.service-item-price {
  display: inline-block;
  background-color: var(--primary-1);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.service-item-features {
  margin-top: var(--spacing-sm);
  list-style: none;
}

.service-item-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-item-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-3);
  font-weight: 700;
}

/* Features Section */
.features {
  background-color: var(--primary-4);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.feature-item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-2-light);
  color: var(--primary-1);
  font-size: 1.5rem;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

/* Price Plan Section */
.price-plan {
  background-color: white;
}

.price-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.price-plan-item {
  background-color: var(--primary-4-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.price-plan-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-plan-item-header {
  background-color: var(--primary-1);
  color: white;
  padding: var(--spacing-lg);
  text-align: center;
}

.price-plan-item-content {
  padding: var(--spacing-lg);
}

.price-plan-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: var(--spacing-md);
  text-align: center;
}

.price-plan-item-features {
  list-style: none;
  margin-bottom: var(--spacing-lg);
}

.price-plan-item-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.price-plan-item-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-3);
  font-weight: 700;
}

/* Team Section */
.team {
  background-color: var(--primary-4);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.team-member {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member-img {
  height: 300px;
  background-size: cover;
  background-position: top center;
}

.team-member-info {
  padding: var(--spacing-lg);
  text-align: center;
}

.team-member-name {
  font-size: var(--font-size-lg);
  margin-bottom: 0.25rem;
}

.team-member-role {
  color: var(--primary-3);
  font-weight: 600;
}

/* Reviews Section */
.reviews {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.swiper-reviews {
  overflow: visible;
  padding-bottom: var(--spacing-2xl);
}

.review-item {
  background-color: var(--primary-4-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-item-text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-top: var(--spacing-md);
}

.review-item-text:before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: var(--primary-2);
  font-family: serif;
  opacity: 0.3;
}

.review-item-author {
  font-weight: 700;
  color: var(--primary-1);
}

/* Core Info Section */
.core-info {
  background-color: var(--primary-1);
  color: white;
  position: relative;
  overflow: hidden;
}

.core-info h2,
.core-info h3 {
  color: white;
}

.core-info-subtitle {
  color: var(--primary-2);
}

.core-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.core-info-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.core-info-item-icon {
  font-size: 2rem;
  color: var(--primary-2);
  margin-bottom: var(--spacing-sm);
}

/* Contact Section */
.contact {
  background-color: white;
  position: relative;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  align-items: start;
}

.contact-info {
  background-color: var(--primary-1);
  color: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  height: 100%;
}

.contact-info h3 {
  color: white;
  margin-bottom: var(--spacing-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.contact-info-icon {
  font-size: 1.5rem;
  margin-right: var(--spacing-sm);
  color: var(--primary-2);
}

.contact-form {
  background-color: var(--primary-4-light);
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: inherit;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-3);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
}

.form-check-input {
  margin-right: var(--spacing-xs);
  margin-top: 0.25rem;
}

.form-services {
  margin-bottom: var(--spacing-md);
}

.form-services-title {
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.form-services-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.form-service-option {
  display: flex;
  align-items: center;
}

.form-service-option input {
  margin-right: 0.5rem;
}

/* Blog Section */
.blog {
  background-color: var(--primary-4);
  position: relative;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.blog-item {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-item-content {
  padding: var(--spacing-lg);
}

.blog-item-date {
  color: var(--primary-3);
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  font-size: var(--font-size-sm);
}

.blog-item-title {
  margin-bottom: var(--spacing-sm);
}

.blog-item-excerpt {
  margin-bottom: var(--spacing-md);
}

.blog-item-link {
  font-weight: 600;
  color: var(--primary-1);
  display: inline-flex;
  align-items: center;
}

.blog-item-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.blog-item-link:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
.faq {
  background-color: white;
}

.faq-accordion {
  margin-top: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin-bottom: var(--spacing-md);
  border-radius: var(--radius-md);
  background-color: var(--primary-4-light);
  overflow: hidden;
}

.faq-question {
  padding: var(--spacing-md);
  position: relative;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-3);
}

.faq-item.active .faq-question:after {
  content: '−';
}

.faq-answer {
  padding: 0 var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 var(--spacing-md) var(--spacing-md);
  max-height: 1000px;
}

/* Gallery Section */
.gallery {
  background-color: var(--primary-4);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.gallery-item {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover:before {
  opacity: 0.3;
}

/* Footer */
footer {
  background-color: var(--primary-5-dark);
  color: white;
  padding: var(--spacing-xl) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

.footer-column h3 {
  color: white;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  border-bottom: 2px solid var(--primary-2);
  display: inline-block;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: var(--spacing-xs);
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--primary-2);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-sm);
}

.footer-contact-icon {
  color: var(--primary-2);
  margin-right: var(--spacing-sm);
  font-size: 1.25rem;
}

.footer-bottom {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Breadcrumb */
.breadcrumb {
  padding: var(--spacing-md) 0;
  background-color: var(--primary-4);
}

.breadcrumb-container {
  display: flex;
  align-items: center;
}

.breadcrumb-icon {
  margin-right: var(--spacing-xs);
  color: var(--primary-3);
}

/* Space Page */
.space-page {
  min-height: calc(100vh - 200px);
  padding: var(--spacing-2xl) 0;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  max-width: 800px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Shapes & decorative elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-2-light);
  opacity: 0.3;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--primary-3-light);
  opacity: 0.2;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* Additional page styles */
.additional-page-section {
  padding: var(--spacing-2xl) 0;
}

.additional-page-section:nth-child(odd) {
  background-color: var(--primary-4-light);
}

.additional-page-section:nth-child(even) {
  background-color: white;
}

/* Responsive styles will be in responsive.css */ 