/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

:root {
  /* Color Palette - Soft, Feminine, Warm */
  --color-pink: #f5d7da; /* Powder pink */
  --color-peach: #f4c2a1; /* Soft peach */
  --color-cream: #faf8f5; /* Warm cream */
  --color-white: #fffbf8; /* Warm white */
  --color-gold: #d4af8e; /* Soft gold */
  --color-brown: #c9a882; /* Light brown */
  --color-rose: #e8b4b8; /* Soft rose */
  --color-sage: #b8c5a0; /* Soft sage green */
  --color-lavender: #d4c4d9; /* Soft lavender */

  /* Text Colors - Rich Palette */
  --text-primary: #2c2c2c; /* Dark text for headings */
  --text-dark: #3a3a3a; /* Dark text */
  --text-medium: #5a5a5a; /* Medium text */
  --text-soft: #7a7a7a; /* Soft text */
  --text-accent-brown: #b8946a; /* Brown accent text */
  --text-accent-pink: #d48891; /* Pink accent text */
  --text-accent-peach: #d4976e; /* Peach accent text */

  /* Functional Colors */
  --primary-color: var(--text-primary);
  --text-color: var(--text-medium);
  --text-light: var(--text-soft);
  --accent-color: var(--color-brown);

  --bg-primary: var(--color-white);
  --bg-secondary: var(--color-cream);
  --bg-accent: var(--color-pink);

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Fonts - Hebrew Support */
  --font-heading:
    "Rubik", "Assistant", "Heebo", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-body:
    "Assistant", "Rubik", "Heebo", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* Import Hebrew Fonts */
@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700&family=Rubik:wght@300;400;500;600;700&display=swap");

html {
  scroll-behavior: smooth;
  direction: rtl;
}

html[dir="ltr"] {
  direction: ltr;
}

html[dir="ltr"] body {
  text-align: left;
  direction: ltr;
}

html[dir="ltr"] * {
  direction: ltr;
}

html[dir="ltr"] .nav-container {
  flex-direction: row-reverse;
}

html[dir="ltr"] .logo {
  order: 1;
}

html[dir="ltr"] .nav-menu {
  order: 0;
}

html[dir="ltr"] .nav-actions {
  order: -1;
}

html[dir="ltr"] .section-header {
  text-align: center;
}

html[dir="ltr"] .identification-content,
html[dir="ltr"] .eft-content,
html[dir="ltr"] .contact-content {
  text-align: center;
}

html[dir="ltr"] .about-text {
  text-align: left;
}

html[dir="ltr"] .identification-text,
html[dir="ltr"] .eft-description,
html[dir="ltr"] .eft-explanation,
html[dir="ltr"] .about-intro,
html[dir="ltr"] .about-belief {
  text-align: center;
}

html[dir="ltr"] .step-item,
html[dir="ltr"] .feature-item {
  text-align: center;
}

html[dir="ltr"] .identification-list li::before {
  right: auto;
  left: 0;
}

html[dir="ltr"] .identification-list li {
  padding-right: 0;
  padding-left: 2rem;
}

html[dir="ltr"] .title-underline {
  background: linear-gradient(
    to right,
    var(--color-brown),
    var(--color-peach),
    var(--color-gold)
  );
}

html[dir="ltr"] .nav-link::after {
  right: auto;
  left: 0;
}

html[dir="ltr"] .scroll-to-top {
  right: 2rem;
  left: auto;
}

html[dir="ltr"] .scroll-indicator {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

html[dir="ltr"] .hero-container {
  direction: ltr;
}

html[dir="ltr"] .about-content {
  direction: ltr;
}

html[dir="ltr"] .process-steps {
  direction: ltr;
}

html[dir="ltr"] .eft-features {
  direction: ltr;
}

html[dir="ltr"] .work-grid {
  direction: ltr;
}

html[dir="ltr"] .services-grid {
  direction: ltr;
}

/* Force LTR for all text elements in English */
html[dir="ltr"] body,
html[dir="ltr"] .container,
html[dir="ltr"] section,
html[dir="ltr"] p,
html[dir="ltr"] h1,
html[dir="ltr"] h2,
html[dir="ltr"] h3,
html[dir="ltr"] h4,
html[dir="ltr"] h5,
html[dir="ltr"] h6,
html[dir="ltr"] span,
html[dir="ltr"] a,
html[dir="ltr"] li {
  direction: ltr;
}

/* Override text-align for specific elements in LTR */
html[dir="ltr"] .section-header,
html[dir="ltr"] .identification-content,
html[dir="ltr"] .eft-content,
html[dir="ltr"] .contact-content,
html[dir="ltr"] .step-item,
html[dir="ltr"] .feature-item {
  text-align: center;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.8;
  overflow-x: hidden;
  background-color: var(--bg-primary);
  font-size: 18px;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--text-dark); /* Fallback */
  background: linear-gradient(
    135deg,
    var(--text-dark) 0%,
    var(--text-accent-brown) 50%,
    var(--text-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@supports not (-webkit-background-clip: text) {
  h1 {
    color: var(--text-dark);
    background: none;
  }
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--text-dark);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-dark);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-medium);
}

/* Highlight spans for colored text */
.highlight {
  color: var(--text-accent-brown);
  font-weight: 400;
  transition: var(--transition);
}

.highlight:hover {
  color: var(--text-accent-pink);
}

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

/* ============================================
   CONTAINER
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: rgba(255, 251, 248, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.navbar.scrolled {
  padding: 1rem 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-selector {
  display: flex;
  gap: 0.5rem;
  background-color: rgba(201, 168, 130, 0.1);
  padding: 0.25rem;
  border-radius: 50px;
}

.lang-btn {
  padding: 0.5rem 1rem;
  border: none;
  background-color: transparent;
  color: var(--text-medium);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
  font-family: var(--font-body);
}

.lang-btn:hover {
  color: var(--text-dark);
  background-color: rgba(201, 168, 130, 0.1);
}

.lang-btn.active {
  background-color: var(--color-brown);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(201, 168, 130, 0.3);
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo-img:hover {
  opacity: 0.8;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--text-dark);
  background: linear-gradient(
    135deg,
    var(--text-dark),
    var(--text-accent-brown)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

@supports not (-webkit-background-clip: text) {
  .logo-text {
    color: var(--text-dark);
    background: none;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 400;
  color: var(--text-medium);
  position: relative;
  padding: 0.5rem 0;
  font-size: 1rem;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-accent-brown);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to left, var(--color-brown), var(--color-peach));
  transition: width 0.3s ease;
  border-radius: 1px;
}

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

.nav-link.active {
  color: var(--text-accent-brown);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-cream) 0%,
    rgba(255, 251, 248, 0.95) 30%,
    var(--color-white) 50%,
    rgba(255, 251, 248, 0.95) 70%,
    var(--color-cream) 100%
  );
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(245, 215, 218, 0.4),
    rgba(244, 194, 161, 0.2),
    transparent
  );
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(244, 194, 161, 0.3),
    rgba(201, 168, 130, 0.15),
    transparent
  );
  border-radius: 50%;
  pointer-events: none;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.05);
  }
}

/* Decorative elements */
.hero::before,
.hero::after {
  filter: blur(40px);
}

/* Additional decorative gradient overlay */
.hero-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(245, 215, 218, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(244, 194, 161, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  justify-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-image {
  position: relative;
  display: none;
}

.hero-image .image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 25px 70px rgba(201, 168, 130, 0.25),
    0 10px 30px rgba(245, 215, 218, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: linear-gradient(
    135deg,
    var(--color-pink) 0%,
    var(--color-peach) 100%
  );
  padding: 4px;
}

.hero-image .image-wrapper::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    rgba(245, 215, 218, 0.6),
    rgba(244, 194, 161, 0.6),
    rgba(201, 168, 130, 0.4)
  );
  border-radius: 24px;
  z-index: -1;
  opacity: 0.5;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.hero-image:hover .image-wrapper {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 35px 90px rgba(201, 168, 130, 0.35),
    0 15px 40px rgba(245, 215, 218, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-image-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 1;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
  filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.hero-image:hover .hero-image-img {
  transform: scale(1.03);
  filter: brightness(1.08) contrast(1.08) saturate(1.15);
}

.hero-video {
  display: block;
}

.hero-image-en {
  display: none;
}

.hero-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(
    135deg,
    var(--color-pink) 0%,
    var(--color-peach) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
}

.hero-content {
  z-index: 2;
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 2rem;
}

.hero-title {
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text-dark);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.3;
  font-weight: 300;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 3rem;
  margin-top: -1rem;
  color: var(--text-medium);
  line-height: 1.8;
  font-weight: 300;
  text-align: center;
}

.hero-subtitle strong {
  color: var(--text-accent-brown);
  font-weight: 400;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-brown);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background-color: var(--color-brown);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 1.25rem;
  }
  .mouse {
    width: 20px;
    height: 34px;
    border-width: 1.5px;
    border-radius: 12px;
  }
  .wheel {
    width: 3px;
    height: 7px;
    top: 7px;
    border-radius: 1.5px;
    animation: scroll-mobile 2s infinite;
  }
}

@keyframes scroll-mobile {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 1.125rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: var(--font-body);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-brown), var(--color-peach));
  color: var(--color-white);
  box-shadow:
    0 4px 20px rgba(201, 168, 130, 0.3),
    0 2px 10px rgba(245, 215, 218, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 400;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 35px rgba(201, 168, 130, 0.5),
    0 4px 15px rgba(245, 215, 218, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, var(--color-peach), var(--color-gold));
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 300;
  position: relative;
}

.section-title.highlight {
  color: var(--text-dark); /* Fallback */
  background: linear-gradient(
    135deg,
    var(--text-dark) 0%,
    var(--text-accent-brown) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@supports not (-webkit-background-clip: text) {
  .section-title.highlight {
    color: var(--text-dark);
    background: none;
  }
}

.title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(
    to left,
    var(--color-brown),
    var(--color-peach),
    var(--color-gold)
  );
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(201, 168, 130, 0.3);
}

/* ============================================
   IDENTIFICATION SECTION
   ============================================ */

.identification {
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  text-align: center;
  position: relative;
}

.identification::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    to left,
    transparent,
    var(--color-pink),
    transparent
  );
}

.identification-content {
  max-width: 700px;
  margin: 0 auto;
}

.identification-list {
  list-style: none;
  margin: 3rem 0;
  font-size: 1.5rem;
  line-height: 2.5;
}

.identification-list li {
  position: relative;
  padding-right: 2rem;
  color: var(--text-dark);
  font-weight: 400;
  transition: var(--transition);
}

.identification-list li:hover {
  color: var(--text-accent-brown);
  transform: translateX(-5px);
}

.identification-list li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: var(--color-brown); /* Fallback */
  background: linear-gradient(135deg, var(--color-brown), var(--color-peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  font-weight: 600;
}

@supports not (-webkit-background-clip: text) {
  .identification-list li::before {
    color: var(--color-brown);
    background: none;
  }
}

.identification-text {
  font-size: 1.35rem;
  line-height: 2;
  color: var(--text-dark);
  font-weight: 300;
  margin-top: 2rem;
}

.identification-text .highlight {
  color: var(--text-accent-pink);
  font-weight: 400;
}

/* ============================================
   EFT SECTION
   ============================================ */

.eft {
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
  position: relative;
}

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

.eft-description {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-weight: 300;
}

.eft-description .highlight {
  color: var(--text-accent-brown); /* Fallback */
  background: linear-gradient(
    135deg,
    var(--text-accent-brown),
    var(--text-accent-peach)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

@supports not (-webkit-background-clip: text) {
  .eft-description .highlight {
    color: var(--text-accent-brown);
    background: none;
  }
}

.eft-explanation {
  font-size: 1.2rem;
  line-height: 2;
  color: var(--text-medium);
  margin-bottom: 4rem;
}

.eft-explanation .highlight {
  color: var(--text-accent-brown);
  font-weight: 400;
}

.eft-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-cream) 100%
  );
  border-radius: 15px;
  transition: var(--transition);
  border: 1px solid rgba(201, 168, 130, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201, 168, 130, 0.15);
  border-color: rgba(201, 168, 130, 0.3);
}

.feature-icon {
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brown);
  transition: var(--transition);
}

.feature-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.feature-item:hover .feature-icon {
  color: var(--text-accent-pink);
}

.feature-item p {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-dark);
  font-weight: 400;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image {
  position: relative;
}

.about-image .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}

.about-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(
    135deg,
    var(--color-pink) 0%,
    var(--color-peach) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
}

.about-text {
  font-size: 1.2rem;
  line-height: 2.2;
}

.about-intro {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 2;
}

.about-intro .name {
  color: var(--text-accent-brown); /* Fallback */
  background: linear-gradient(
    135deg,
    var(--text-accent-brown),
    var(--text-accent-pink)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
}

@supports not (-webkit-background-clip: text) {
  .about-intro .name {
    color: var(--text-accent-brown);
    background: none;
  }
}

.about-belief {
  font-size: 1.15rem;
  color: var(--text-medium);
  line-height: 2.2;
  font-weight: 300;
}

.about-belief .highlight {
  color: var(--text-accent-brown);
  font-weight: 400;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-cream) 100%
  );
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(201, 168, 130, 0.08);
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(201, 168, 130, 0.15);
  border-color: rgba(201, 168, 130, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--color-brown),
    var(--color-peach),
    var(--color-gold)
  );
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 300;
  margin: 0 auto 2rem;
  box-shadow: 0 5px 20px rgba(201, 168, 130, 0.4);
  transition: var(--transition);
}

.step-item:hover .step-number {
  box-shadow: 0 8px 30px rgba(201, 168, 130, 0.5);
  transform: scale(1.05);
}

.step-item h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.step-item p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-medium);
  margin: 0;
}

.step-item p .highlight {
  color: var(--text-accent-brown);
  font-weight: 400;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  position: relative;
}

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

.contact-intro {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
}

.contact-intro .highlight {
  color: var(--text-accent-pink);
  font-weight: 400;
}

.contact-form {
  margin-bottom: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
  font-family: var(--font-body);
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  transition: var(--transition);
  background-color: var(--color-white);
  color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-brown);
  box-shadow: 0 0 0 3px rgba(201, 168, 130, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.whatsapp-option {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e8e8e8;
}

.whatsapp-option p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

.btn-catalog {
  background-color: var(--color-brown);
  color: white;
  box-shadow: 0 4px 20px rgba(201, 168, 130, 0.3);
}

.btn-catalog:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 130, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--primary-color);
  color: var(--color-white);
  padding: 3rem 0;
  position: relative;
  text-align: center;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

.footer-sep {
  margin: 0 0.5rem;
  opacity: 0.8;
}

.footer-content p a,
.footer-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  transition: var(--transition);
}

.footer-content p a:hover {
  color: var(--color-white);
  text-decoration: none;
}

/* ============================================
   FLOATING SOCIAL BUTTONS
   ============================================ */

.floating-social {
  position: fixed;
  left: 2rem;
  bottom: 8rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

html[dir="ltr"] .floating-social {
  left: auto;
  right: 2rem;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  color: var(--text-dark);
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-btn svg {
  width: 24px;
  height: 24px;
}

.social-facebook:hover {
  background-color: #1877f2;
  color: var(--color-white);
}

.social-instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: var(--color-white);
}

.social-whatsapp:hover {
  background-color: #25d366;
  color: var(--color-white);
}

/* Floating social links bar */
.floating-social {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0.75rem;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 251, 248, 0.95);
  border-radius: 0 12px 12px 0;
  box-shadow: 2px 4px 20px rgba(44, 44, 44, 0.08);
  z-index: 998;
  border: 1px solid rgba(201, 168, 130, 0.2);
  border-left: none;
}

.floating-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-medium);
  border-radius: 10px;
  transition: var(--transition);
}

.floating-social-link:hover {
  color: var(--color-brown);
  background: rgba(212, 175, 142, 0.15);
  transform: scale(1.05);
}

.floating-social-icon {
  width: 24px;
  height: 24px;
}

html[dir="ltr"] .floating-social {
  left: auto;
  right: 0;
  border-radius: 12px 0 0 12px;
  border: 1px solid rgba(201, 168, 130, 0.2);
  border-right: none;
}

@media (max-width: 768px) {
  .floating-social {
    padding: 0.5rem 0.35rem;
    gap: 0.5rem;
  }
  .floating-social-link {
    width: 40px;
    height: 40px;
  }
  .floating-social-icon {
    width: 22px;
    height: 22px;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--color-brown);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 20px rgba(201, 168, 130, 0.4);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201, 168, 130, 0.5);
}

/* ============================================
   ARTICLES PAGE
   ============================================ */

.articles-hero {
  padding-top: 140px;
  padding-bottom: 4rem;
  background: linear-gradient(
    135deg,
    var(--color-cream) 0%,
    rgba(255, 251, 248, 0.95) 30%,
    var(--color-white) 50%,
    rgba(255, 251, 248, 0.95) 70%,
    var(--color-cream) 100%
  );
  position: relative;
  overflow: hidden;
}

.articles-intro {
  font-size: 1.3rem;
  color: var(--text-medium);
  margin-top: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.articles-list {
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
  padding: 4rem 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.article-card {
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-cream) 100%
  );
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
  border: 1px solid rgba(201, 168, 130, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(201, 168, 130, 0.2);
  border-color: rgba(201, 168, 130, 0.3);
  text-decoration: none;
  color: inherit;
}

/* Terms page */
.terms-content {
  padding: 2rem 0 4rem;
  background: var(--bg-primary);
}
.terms-body {
  max-width: 720px;
  margin: 0 auto;
}
.terms-body .terms-h2 {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}
.terms-body .terms-h2:first-of-type {
  margin-top: 0;
}
.terms-body .terms-p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.article-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.article-excerpt {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.article-read-more {
  display: inline-block;
  color: var(--text-accent-brown);
  font-weight: 500;
  font-size: 1rem;
  margin-top: 1rem;
  transition: var(--transition);
}

.article-card:hover .article-read-more {
  color: var(--text-accent-pink);
  transform: translateX(-5px);
}

html[dir="ltr"] .article-card:hover .article-read-more {
  transform: translateX(5px);
}

/* ============================================
   ARTICLE PAGE
   ============================================ */

.article-page {
  padding-top: 140px;
  padding-bottom: 4rem;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
}

.article-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.article-back-link {
  display: inline-block;
  color: var(--text-accent-brown);
  text-decoration: none;
  margin-bottom: 2rem;
  font-weight: 500;
  transition: var(--transition);
}

.article-back-link:hover {
  color: var(--text-accent-pink);
  transform: translateX(-5px);
}

html[dir="ltr"] .article-back-link:hover {
  transform: translateX(5px);
}

.article-full {
  background: linear-gradient(
    135deg,
    var(--color-white) 0%,
    var(--color-cream) 100%
  );
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(201, 168, 130, 0.1);
}

.article-full-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.article-full-content {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-medium);
}

.article-full-content h2 {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-full-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.article-full-content ul,
.article-full-content ol {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

html[dir="ltr"] .article-full-content ul,
html[dir="ltr"] .article-full-content ol {
  padding-right: 0;
  padding-left: 2rem;
}

.article-full-content li {
  margin-bottom: 0.75rem;
}

.article-end-image {
  margin-top: 2.5rem;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
}

.article-end-img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 12px;
}

.article-cta {
  margin-top: 2rem;
  text-align: center;
}

.article-cta-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-brown);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201, 168, 130, 0.35);
}

.article-cta-link:hover {
  background-color: var(--text-accent-brown);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 130, 0.45);
}
