:root {
  /* Cozy Journaling Nook Color Palette */
  --primary-warm-brown: #85451e;
  --primary-soft-cream: #e2dfcb;
  --primary-sage-green: #8dc176;
  --primary-dusty-rose: #d2969f;
  --primary-charcoal: #405066;
  
  /* Light/Dark Shades */
  --warm-brown-light: #975021;
  --warm-brown-dark: #68371d;
  --soft-cream-light: #FFFEF7;
  --soft-cream-dark: #ffffff;
  --sage-green-light: #acbd8e;
  --sage-green-dark: #669447;
  --dusty-rose-light: #f7d6d5;
  --dusty-rose-dark: #d48c94;
  --charcoal-light: #5c677c;
  --charcoal-dark: #384051;
  
  /* Typography */
  --font-body: 'Georgia', 'Times New Roman', serif;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-accent: 'Lora', 'Georgia', serif;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lora:wght@400;500;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 18.00px;
  line-height: 1.6;
  color: var(--charcoal-dark);
  background: linear-gradient(135deg, var(--soft-cream-light) 0%, var(--soft-cream-dark) 100%);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1 {
  font-family: var(--font-heading);
  font-size: 2.31rem;
  font-weight: 600;
  color: var(--warm-brown-dark);
  margin-bottom: 1.21rem;
}

h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--sage-green-dark);
  margin-bottom: 0.99rem;
}

h3 {
  font-family: var(--font-accent);
  font-size: 1.41rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.69rem;
}

p {
  font-size: 1.06rem;
  margin-bottom: 1.21rem;
  color: var(--charcoal-dark);
}

.navbar {
  background: linear-gradient(90deg, var(--soft-cream-light) 0%, var(--dusty-rose-light) 100%);
  border-bottom: 2px solid var(--sage-green);
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.56rem;
  font-weight: 600;
  color: var(--warm-brown-dark) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-family: var(--font-accent);
  font-size: 1.06rem;
  color: var(--charcoal) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--sage-green-dark) !important;
}

.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dusty-rose-light) 0%, var(--sage-green-light) 50%, var(--soft-cream-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-journal-background.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-decorative-blob {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--dusty-rose);
  border-radius: 50% 40% 60% 30%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero-decorative-blob:nth-child(2) {
  top: 20%;
  right: 10%;
  background: var(--sage-green);
  animation-delay: -2s;
}

.hero-decorative-blob:nth-child(3) {
  bottom: 20%;
  left: 10%;
  background: var(--warm-brown-light);
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.06rem;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.14rem;
  color: var(--dusty-rose-dark);
  text-align: center;
  margin-bottom: 1.21rem;
}

.section-desc {
  font-size: 1.06rem;
  color: var(--charcoal);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.card {
  background: var(--soft-cream-light);
  border: 1px solid var(--dusty-rose-light);
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(135, 77, 24, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2.14rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 11px 25px rgba(120, 66, 25, 0.15);
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-family: var(--font-heading);
  color: var(--warm-brown-dark);
  margin-bottom: 1.21rem;
}

.service-item {
  text-align: center;
  padding: 2rem;
  background: var(--soft-cream-light);
  border-radius: 15px;
  border: 2px solid var(--sage-green-light);
  margin-bottom: 2.14rem;
  transition: all 0.3s ease;
}

.service-item:hover {
  border-color: var(--sage-green-dark);
  background: var(--soft-cream-dark);
}

.service-price {
  font-family: var(--font-heading);
  font-size: 2.04rem;
  color: var(--warm-brown-dark);
  font-weight: 600;
}

.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 7px solid var(--dusty-rose-light);
  margin: 0 auto 1rem;
  object-fit: cover;
}

.blog-item {
  background: var(--soft-cream-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(114, 58, 15, 0.10);
  transition: transform 0.3s ease;
  margin-bottom: 2.14rem;
}

.blog-item:hover {
  transform: translateY(-3px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-item-content {
  padding: 1.5rem;
}

.testimonial-item {
  background: var(--soft-cream-light);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--sage-green);
  margin: 1rem;
}

.faq-item {
  background: var(--soft-cream-light);
  border: 1px solid var(--dusty-rose-light);
  border-radius: 10px;
  margin-bottom: 1.21rem;
  overflow: hidden;
}

.faq-question {
  background: var(--dusty-rose-light);
  padding: 1rem;
  cursor: pointer;
  font-family: var(--font-accent);
  font-weight: 500;
  color: var(--charcoal-dark);
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--dusty-rose);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 1rem;
  display: none !important;
  color: var(--charcoal);
}

.faq-answer.show {
  display: block !important;
}

.contact-form {
  background: var(--soft-cream-light);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid var(--sage-green-light);
}

.form-control {
  border: 2px solid var(--dusty-rose-light);
  border-radius: 10px;
  padding: 0.8rem;
  font-family: var(--font-body);
  background: var(--soft-cream-dark);
  color: var(--charcoal-dark);
}

.form-control:focus {
  border-color: var(--sage-green);
  box-shadow: 0 0 0 0.2rem rgba(150, 185, 102, 0.25);
  background: var(--soft-cream-light);
}

.btn-primary {
  background: linear-gradient(45deg, var(--sage-green) 0%, var(--sage-green-dark) 100%);
  border: none;
  border-radius: 25px;
  padding: 0.8rem 2rem;
  font-family: var(--font-accent);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(45deg, var(--sage-green-dark) 0%, var(--warm-brown) 100%);
  transform: translateY(-2px);
}

.footer {
  background-color: #9b9c9e;
  color: var(--soft-cream-light);
  padding: 3rem 0 2rem;
}

.footer a {
  color: var(--dusty-rose-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--sage-green-light);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.21rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 3px;
}

.price-plan {
  background: var(--soft-cream-light);
  border: 2px solid var(--dusty-rose-light);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2.14rem;
  transition: all 0.3s ease;
}

.price-plan:hover {
  border-color: var(--sage-green);
  background: var(--soft-cream-dark);
}

.price-plan-price {
  font-family: var(--font-heading);
  font-size: 2.58rem;
  color: var(--warm-brown-dark);
  font-weight: 700;
  margin: 1rem 0;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: var(--sage-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.56rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.timeline-item {
  border-left: 3px solid var(--dusty-rose);
  padding-left: 2rem;
  margin-bottom: 2.14rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--sage-green);
  border-radius: 50%;
  position: absolute;
  left: -7.5px;
  top: 0.5rem;
}

.swiper {
  padding-bottom: 2.06rem;
}

.swiper-pagination-bullet {
  background: var(--sage-green);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--warm-brown-dark);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--sage-green-dark);
}



/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
