/* ========== ROOT VARIABLES - HARMONIOUS PASTEL PALETTE ========== */
:root {
  /* Primary Colors */
  --color-primary: #F4E8D8;    /* Warm cream */
  --color-secondary: #E8D5B7;  /* Soft beige */
  --color-accent: #B8A082;     /* Muted tan */
  --color-highlight: #8B7765;  /* Warm gray-brown */
  --color-contrast: #2D2926;   /* Dark charcoal */
  
  /* Light/Dark Shades */
  --color-light: #FEFCF9;      /* Off-white */
  --color-dark: #1A1817;       /* Deep brown-black */
  
  /* Gradients */
  --gradient-main: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-accent: linear-gradient(45deg, var(--color-accent) 0%, var(--color-highlight) 100%);
  --gradient-overlay: linear-gradient(rgba(45, 41, 38, 0.7), rgba(45, 41, 38, 0.4));
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Georgia', serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
}

/* ========== BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-contrast);
  background-color: var(--color-light);
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-highlight);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient-accent);
  color: var(--color-light);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 119, 101, 0.3);
  color: var(--color-light);
}

/* ========== HEADER ========== */
header {
  background: var(--color-light);
  box-shadow: 0 2px 10px rgba(45, 41, 38, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-contrast);
  text-decoration: none;
}

.navbar-nav {
  flex-direction: row;
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--color-highlight);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-contrast);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--color-contrast);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-highlight);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--color-contrast);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-highlight);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--color-highlight);
}

/* ========== ABOUT SECTION ========== */
.about {
  background: var(--color-light);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background: var(--gradient-main);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.about-feature h4 {
  color: var(--color-contrast);
  margin-bottom: 1rem;
}

/* ========== SERVICES SECTION ========== */
.services {
  background: var(--gradient-main);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--color-light);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(45, 41, 38, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-light);
}

.service-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-contrast);
  margin: 1rem 0;
}

/* ========== FEATURES SECTION ========== */
.features {
  background: var(--color-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: var(--gradient-main);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

/* ========== PRICE PLAN SECTION ========== */
.priceplan {
  background: var(--gradient-main);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--color-light);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(45, 41, 38, 0.1);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-contrast);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--color-highlight);
}

/* ========== TEAM SECTION ========== */
.team {
  background: var(--color-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: var(--gradient-main);
  padding: 2rem;
  border-radius: 20px;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--gradient-accent);
  object-fit: cover;
}

.team-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-contrast);
}

.team-role {
  color: var(--color-highlight);
  font-style: italic;
}

/* ========== REVIEWS SECTION ========== */
.reviews {
  background: var(--gradient-main);
}

.swiper {
  padding: 2rem 0;
}

.review-card {
  background: var(--color-light);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(45, 41, 38, 0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-highlight);
}

.review-author {
  font-weight: bold;
  color: var(--color-contrast);
}

/* ========== CORE INFO SECTION ========== */
.coreinfo {
  background: var(--color-light);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  background: var(--gradient-main);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

/* ========== CONTACT FORM ========== */
.contact {
  background: var(--gradient-main);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-light);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(45, 41, 38, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--color-secondary);
  border-radius: 10px;
  font-family: var(--font-primary);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* ========== BLOG SECTION ========== */
.blog {
  background: var(--color-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--gradient-main);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(45, 41, 38, 0.1);
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-contrast);
}

.blog-excerpt {
  color: var(--color-highlight);
  margin-bottom: 1.5rem;
}

/* ========== FAQ SECTION ========== */
.faq {
  background: var(--gradient-main);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-light);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: var(--color-secondary);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: bold;
  color: var(--color-contrast);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--color-accent);
  color: var(--color-light);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--color-highlight);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* ========== GALLERY SECTION ========== */
.gallery {
  background: var(--color-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  background: var(--gradient-main);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* ========== FOOTER ========== */
footer {
  background: var(--color-contrast);
  color: var(--color-light);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--color-secondary);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-highlight);
  padding-top: 2rem;
  color: var(--color-secondary);
}

/* ========== DECORATIVE SHAPES ========== */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.1;
  z-index: 1;
}

.shape-blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
}

.shape-blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.d-none { display: none; }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 1rem 0;
  background: var(--color-primary);
}

.breadcrumb-img {
  width: 30px;
  height: 30px;
  background: var(--gradient-accent);
  border-radius: 50%;
} 