/* ===========================
   ACCESSIBILITY
=========================== */
.skip-link {
  position: absolute; top: -100px; right: 0;
  background: var(--teal-dark); color: white;
  padding: 12px 24px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 15px; font-weight: 700; z-index: 9999;
  transition: top 0.2s; text-decoration: none;
}
.skip-link:focus { top: 0; outline: 3px solid white; outline-offset: 2px; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --peach: #f5c5a3;
  --peach-light: #fdeee5;
  --peach-mid: #f9d9c3;
  --blush: #e8a587;
  --blush-dark: #d4895f;
  --cream: #fdf8f4;
  --warm-white: #fff9f5;
  --brown-soft: #b07d5e;
  --teal: #5b8f8f;
  --teal-dark: #3d6b6b;
  --teal-light: #7ab3b3;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8a8aaa;
  --shadow: 0 8px 40px rgba(176,125,94,0.15);
  --shadow-strong: 0 20px 60px rgba(176,125,94,0.25);
  --radius: 24px; --radius-sm: 14px; --radius-lg: 36px;
  --grad-warm: linear-gradient(135deg, #e8a587, #b07d5e);
  --grad-teal: linear-gradient(135deg, #7ab3b3, #3d6b6b);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Rubik', sans-serif;
  background: var(--warm-white); color: var(--text-dark);
  direction: rtl; overflow-x: hidden; line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* ===========================
   CUSTOM CURSOR
=========================== */
.cursor-dot, .cursor-ring {
  position: fixed; border-radius: 50%; pointer-events: none;
  z-index: 99999; transform: translate(-50%,-50%); transition: opacity 0.3s;
}
.cursor-dot { width: 8px; height: 8px; background: var(--blush); top: 0; left: 0; }
.cursor-ring {
  width: 36px; height: 36px; border: 2px solid rgba(232,165,135,0.5);
  top: 0; left: 0; transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--blush); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  background: linear-gradient(135deg,
    rgba(255,248,244,0.92) 0%,
    rgba(252,240,234,0.92) 50%,
    rgba(255,248,244,0.92) 100%
  );
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid rgba(212,168,176,0.2);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* Shimmer line at bottom of navbar */
.navbar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212,168,176,0.5) 20%,
    rgba(200,168,130,0.7) 50%,
    rgba(212,168,176,0.5) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: navShimmer 4s ease-in-out infinite;
}
@keyframes navShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.navbar.scrolled {
  background: linear-gradient(135deg,
    rgba(255,248,244,0.98) 0%,
    rgba(252,240,234,0.98) 50%,
    rgba(255,248,244,0.98) 100%
  );
  box-shadow:
    0 4px 30px rgba(212,168,176,0.15),
    0 1px 0 rgba(212,168,176,0.2);
}

.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 28px;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  height: 64px; width: auto; object-fit: contain; filter: none;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-logo:hover { transform: scale(1.06) rotate(-1deg); }

.nav-links { list-style: none; display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  color: #a07880;
  position: relative; padding: 6px 2px;
  transition: color 0.3s;
}

/* Pill highlight on hover */
.nav-links a::before {
  content: '';
  position: absolute; inset: 2px -10px;
  background: linear-gradient(135deg, rgba(212,168,176,0.15), rgba(200,168,130,0.1));
  border-radius: 50px;
  opacity: 0; transform: scale(0.85);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; right: 10%; left: 10%;
  height: 1.5px;
  background: linear-gradient(90deg, #d4a8b0, #c8a882);
  border-radius: 2px; transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  transform-origin: right;
}
.nav-links a:hover { color: #b07878; }
.nav-links a:hover::before { opacity: 1; transform: scale(1); }
.nav-links a:hover::after { transform: scaleX(1); }

/* CTA link styled as pill button */
.nav-links .nav-cta a {
  background: linear-gradient(135deg, #d4a8b0, #c8a882);
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  box-shadow: 0 4px 16px rgba(212,168,176,0.4);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-links .nav-cta a::before,
.nav-links .nav-cta a::after { display: none; }
.nav-links .nav-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,176,0.55);
  color: white !important;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  border-radius: 12px;
  transition: background 0.3s;
}
.hamburger:hover { background: rgba(212,168,176,0.12); }
.hamburger span {
  display: block; border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hamburger span:nth-child(1) { width: 22px; height: 2px; background: #d4a8b0; }
.hamburger span:nth-child(2) { width: 16px; height: 2px; background: #c8a882; align-self: flex-end; }
.hamburger span:nth-child(3) { width: 22px; height: 2px; background: #d4a8b0; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); width: 22px; }

.mobile-menu {
  display: none; list-style: none; flex-direction: column;
  background: linear-gradient(135deg, rgba(255,248,244,0.98), rgba(252,240,234,0.98));
  padding: 12px 28px 24px;
  border-top: 1px solid rgba(212,168,176,0.2);
  backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu li a {
  display: block; padding: 14px 0; font-size: 16px; font-weight: 600;
  color: #a07880;
  border-bottom: 1px solid rgba(212,168,176,0.15);
  transition: color 0.3s, padding-right 0.3s;
  position: relative;
}
.mobile-menu li:last-child a { border-bottom: none; }
.mobile-menu li a:hover { color: #c8a882; padding-right: 10px; }


/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 36px; border-radius: 50px;
  font-family: 'Rubik',sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  border: none; gap: 8px; position: relative; overflow: hidden;
}
.btn-primary { background: var(--grad-warm); color: white; box-shadow: 0 6px 24px rgba(176,125,94,0.45); }
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(176,125,94,0.55); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px); }
.btn-text { position: relative; z-index: 1; }
.btn-ripple {
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: scale(0); opacity: 0;
}
.btn-primary:active .btn-ripple { animation: rippleEffect 0.5s ease-out; }
@keyframes rippleEffect { 0% { transform: scale(0); opacity: 1; } 100% { transform: scale(2.5); opacity: 0; } }

.btn-ghost {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  color: white; border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: white; transform: translateY(-3px); }
.full-width { width: 100%; }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(150deg, #fdf8f4 0%, #fdeee5 40%, #f5ede2 100%);
  overflow: hidden;
  padding-top: 72px;
}

/* Subtle watercolour blobs in bg */
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -150px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,163,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,179,179,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.4; }

/* Split layout */
.hero-split {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  max-width: 1120px; width: 100%; padding: 60px 40px;
  margin: 0 auto;
}

/* ---- Text side ---- */
.hero-text-side { display: flex; flex-direction: column; gap: 20px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--brown-soft);
  padding: 8px 0;
  border-bottom: 1.5px solid var(--peach);
  width: fit-content;
  animation: badgeFadeIn 0.8s ease 0.2s both;
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900; line-height: 1.15;
  margin: 0; color: var(--text-dark);
}
.hero-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -1px;
  position: relative;
}
.line-plain {
  display: block;
  color: #d4a8b0;
  font-weight: 900;
  font-style: normal;
  animation: none;
}
.line-accent {
  display: block;
  color: #c8a882;
  font-weight: 900;
  font-style: normal;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #c8a882;
  background-clip: unset;
  background-size: unset;
  animation: none;
}

/* Character animation */
.char-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.char {
  display: inline-block;
  animation: charReveal 0.7s cubic-bezier(0.16,1,0.3,1) both;
  animation-delay: calc(0.05s + var(--i) * 0.055s);
}
@keyframes charReveal {
  0%   { transform: translateY(110%) rotate(6deg); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0) rotate(0deg); opacity: 1; }
}

/* Subtle shimmer sweep across the whole title */
.hero-title::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,245,240,0.55) 50%, transparent 70%);
  background-size: 250% 100%;
  animation: titleShimmer 4s ease-in-out 1.8s infinite;
  pointer-events: none;
}
@keyframes titleShimmer {
  0%   { background-position: 150% center; opacity: 0; }
  10%  { opacity: 1; }
  50%  { background-position: -50% center; }
  60%  { opacity: 0; }
  100% { background-position: -50% center; opacity: 0; }
}

.hero-sub {
  font-size: 16px; font-weight: 400; color: var(--text-mid);
  line-height: 1.7; margin: 0; max-width: 420px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-outline-dark {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; border-radius: 50px;
  font-family: 'Rubik', sans-serif; font-size: 15px; font-weight: 600;
  background: transparent; color: var(--text-dark);
  border: 1.5px solid rgba(45,45,46,0.25);
  transition: all 0.3s; cursor: pointer; text-decoration: none;
}
.btn-outline-dark:hover {
  border-color: var(--brown-soft); color: var(--brown-soft);
  transform: translateY(-2px);
}

/* Hero tags */
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}
.hero-tag {
  display: inline-block;
  background: white; border: 1px solid rgba(232,160,176,0.35);
  color: var(--text-mid); font-size: 12.5px; font-weight: 500;
  padding: 6px 16px; border-radius: 50px;
  opacity: 0; animation: tagFloat 0.7s cubic-bezier(0.34,1.56,0.64,1) forwards;
  box-shadow: 0 2px 8px rgba(176,125,94,0.08);
}
.tag1 { animation: tagFloat 0.7s 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards, tagBob 4s 1.5s ease-in-out infinite; }
.tag2 { animation: tagFloat 0.7s 1.0s cubic-bezier(0.34,1.56,0.64,1) forwards, tagBob 5s 1.7s ease-in-out infinite reverse; }
.tag3 { animation: tagFloat 0.7s 1.2s cubic-bezier(0.34,1.56,0.64,1) forwards, tagBob 4.5s 1.9s ease-in-out infinite; }
@keyframes tagFloat { from { opacity:0; transform: translateY(16px) scale(0.9); } to { opacity:1; transform: translateY(0) scale(1); } }
@keyframes tagBob { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-5px); } }

/* ---- Image side ---- */
.hero-image-side { position: relative; display: flex; justify-content: center; align-items: center; }

.hero-img-frame {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}

.hero-main-img {
  width: 360px; height: 480px;
  object-fit: cover; object-position: center 10%;
  border-radius: 50%;
  display: block;
  position: relative; z-index: 3;
  box-shadow: 0 24px 70px rgba(180,130,130,0.22);
  animation: softFloat 6s ease-in-out infinite;
}
@keyframes softFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Single clean ellipse border */
.hero-img-deco-ring {
  position: absolute;
  width: 400px; height: 520px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,176,0.55);
  pointer-events: none; z-index: 2;
  inset: auto;
  animation: softFloat 6s ease-in-out infinite;
  box-shadow: 0 0 0 8px rgba(212,168,176,0.08);
}

.hero-img-frame::before,
.hero-img-frame::after { display: none; }
.hero-petal { display: none; }


/* Shared keyframes */
@keyframes badgeFadeIn { from { opacity:0; transform: translateY(12px); } to { opacity:1; transform: translateY(0); } }
@keyframes wordSlideUp { from { transform: translateY(60%); opacity:0; } to { transform: translateY(0); opacity:1; } }
@keyframes shimmerText { 0% { background-position:0% center; } 100% { background-position:200% center; } }
@keyframes spinRing { to { transform: rotate(360deg); } }

/* Scroll mouse */
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 4; }
.scroll-mouse { width: 26px; height: 42px; border: 2px solid rgba(176,125,94,0.4); border-radius: 13px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 4px; height: 8px; border-radius: 2px; background: var(--blush); animation: scrollWheel 2s ease-in-out infinite; }
@keyframes scrollWheel { 0% { transform:translateY(0); opacity:1; } 80% { transform:translateY(14px); opacity:0; } 100% { transform:translateY(0); opacity:0; } }

/* ===========================
   ABOUT
=========================== */
.about { padding: 100px 0 120px; background: var(--cream); position: relative; overflow: hidden; }
.about-decor-circle {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,163,0.14) 0%, transparent 70%);
  top: -200px; left: -250px; pointer-events: none;
}
.about::after {
  content: '';
  position: absolute; width: 420px; height: 420px;
  background: linear-gradient(135deg, rgba(91,143,143,0.08), rgba(245,197,163,0.12));
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  bottom: -80px; left: 60px;
  animation: morphShape 8s ease-in-out infinite; pointer-events: none;
}
@keyframes morphShape {
  0%,100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; transform: rotate(0deg); }
  33%      { border-radius: 40% 70% 30% 60% / 60% 40% 60% 40%; transform: rotate(60deg); }
  66%      { border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%; transform: rotate(120deg); }
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-images { position: relative; height: auto; }

.img-card, .img-main, .img-secondary, .img-third, .img-fourth { all: unset; }

.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 500px;
}

.photo-cell {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(176,125,94,0.14);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s;
}

.photo-cell:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(176,125,94,0.25);
}

.photo-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.photo-cell:hover img { transform: scale(1.05); }

.img-deco-ring { display: none; }

/* Responsive */
@media (max-width: 640px) {
  .about-photo-grid { height: 380px; gap: 10px; }
  .photo-cell { border-radius: 14px; }
}

/* Service images */
.service-img-wrap {
  margin: 16px 0 22px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
}
.service-img-wrap .service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
}
.service-img-wrap:hover .service-img { transform: scale(1.04); }

.service-imgs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 22px;
  height: 220px;
}
.service-imgs-row .service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-sm);
  transition: transform 0.5s ease;
}
.service-imgs-row .service-img:hover { transform: scale(1.04); }



.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--text-dark); margin-bottom: 22px; line-height: 1.25; }
.about-text p { color: var(--text-mid); margin-bottom: 16px; font-size: 15px; line-height: 1.8; }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--peach-mid), var(--peach-light));
  color: var(--brown-soft); font-size: 11.5px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 16px;
  border: 1px solid rgba(232,165,135,0.3);
}
.section-tag.center { display: block; text-align: center; width: fit-content; margin: 0 auto 16px; }

.section-title { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.section-title.center { text-align: center; }

.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.badge {
  background: white; border: 1.5px solid var(--peach);
  color: var(--brown-soft); padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600; box-shadow: 0 2px 12px rgba(176,125,94,0.1);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.badge:hover { background: var(--grad-warm); color: white; border-color: transparent; transform: translateY(-4px) scale(1.04); box-shadow: 0 8px 24px rgba(176,125,94,0.3); }

/* ===========================
   WHY SECTION
=========================== */
.why-section { padding: 90px 0; background: white; position: relative; overflow: hidden; }
.why-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(176,125,94,0.3), rgba(176,125,94,0.5), rgba(176,125,94,0.3), transparent);
  background-size: 200% auto; animation: lineShimmer 3s linear infinite;
}
@keyframes lineShimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.why-section .section-title { margin-bottom: 55px; }

.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  background: var(--cream); border-radius: var(--radius); padding: 36px 28px; text-align: center;
  border: 1px solid rgba(245,197,163,0.4);
  transition: all 0.45s cubic-bezier(0.25,0.46,0.45,0.94); cursor: default;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-warm); opacity: 0; transition: opacity 0.4s; z-index: 0;
}
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-strong); border-color: transparent; }
.feature-card:hover::before { opacity: 1; }
.feature-card:hover h3, .feature-card:hover p { color: white; }
.feature-card:hover .feature-icon { transform: scale(1.2) rotate(10deg); }
.feature-icon { font-size: 1.6rem; margin-bottom: 18px; display: block; position: relative; z-index: 1; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); color: var(--blush); font-style: normal; line-height: 1; }
.feature-card h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); position: relative; z-index: 1; transition: color 0.4s; }
.feature-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; position: relative; z-index: 1; transition: color 0.4s; }

/* ===========================
   SERVICES
=========================== */
.services { padding: 100px 0; background: var(--cream); position: relative; overflow: hidden; }
.services-bg-decor {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 5% 50%, rgba(245,197,163,0.15) 0%, transparent 45%), radial-gradient(ellipse at 95% 20%, rgba(91,143,143,0.1) 0%, transparent 45%);
  pointer-events: none;
}
.services .section-title { margin-bottom: 60px; }

.services-wrapper {
  display: grid; grid-template-columns: 1fr auto 1fr;
  background: white; border-radius: 36px;
  box-shadow: 0 30px 80px rgba(176,125,94,0.18);
  overflow: hidden; position: relative;
}
.services-wrapper::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blush), var(--teal-light), var(--blush));
  background-size: 200% auto; animation: lineShimmer 3s linear infinite;
}
.service-block { padding: 54px 48px; }
.service-divider { width: 1px; background: linear-gradient(to bottom, transparent, rgba(245,197,163,0.5), transparent); margin: 40px 0; }

.service-emoji { font-size: 2rem; margin-bottom: 16px; display: block; color: var(--blush); }

.service-block h3 {
  font-size: 1.45rem; font-weight: 800; margin-bottom: 14px;
  background: var(--grad-warm); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.service-desc { font-size: 14.5px; color: var(--text-mid); margin-bottom: 30px; line-height: 1.75; }
.service-options { display: flex; flex-direction: column; gap: 18px; }
.service-option {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--cream); padding: 20px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(245,197,163,0.3);
  transition: all 0.35s; position: relative; overflow: hidden;
}
.service-option::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,197,163,0.1), rgba(91,143,143,0.05));
  opacity: 0; transition: opacity 0.35s;
}
.service-option:hover { transform: translateX(-5px); box-shadow: var(--shadow); border-color: var(--peach); }
.service-option:hover::before { opacity: 1; }
.option-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 4px; color: var(--blush); line-height: 1; }
.service-option strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.service-option p { font-size: 13px; color: var(--text-mid); margin: 0; }

/* ===========================
   REVIEWS – SCATTER PILE
=========================== */
.reviews-section {
  padding: 100px 0 140px;
  background: linear-gradient(160deg, #fdf8f4 0%, #fef5ef 50%, #faf5ef 100%);
  position: relative; overflow: hidden;
}
.reviews-section::before {
  content: ''; position: absolute; top: -180px; left: -180px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,163,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.reviews-section::after {
  content: ''; position: absolute; bottom: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,179,179,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-sub {
  text-align: center; color: var(--text-light); font-size: 13.5px;
  margin-bottom: 64px; letter-spacing: 0.3px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.reviews-sub::before, .reviews-sub::after {
  content: ''; display: block; flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176,125,94,0.3));
}
.reviews-sub::after { background: linear-gradient(90deg, rgba(176,125,94,0.3), transparent); }

/* ---- Phone pile ---- */
.reviews-pile-wrap {
  width: 100%;
  overflow: hidden;
  padding: 20px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-pile {
  position: relative;
  width: 100%;
  height: 390px;
  overflow: hidden;
}

/* The inner sits dead center - cards use px offsets from center */
.pile-inner {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 0;
  /* cards use negative margins/transforms from this center point */
}

.pile-card {
  position: absolute;
  width: 115px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  border: 3px solid white;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  /* transform-origin at bottom center so rotation fans naturally */
  transform-origin: bottom center;
  /* left/top set via JS using px from center of pile-inner */
  margin-left: -57px; /* half card width so left:0 = centered */
}

.pile-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  pointer-events: none;
}

.pile-card:hover {
  transform: scale(1.15) rotate(0deg) !important;
  box-shadow: 0 28px 64px rgba(0,0,0,0.35) !important;
  z-index: 999 !important;
}

.reviews-pile-hint {
  text-align: center;
  color: var(--text-light);
  font-size: 13px;
  margin-top: 24px;
  letter-spacing: 0.3px;
}

@media (max-width: 600px) {
  .reviews-pile { height: 300px; }
  .pile-card {
    width: 80px;
    height: 142px;
    border-radius: 11px;
    border-width: 2px;
    margin-left: -40px;
  }
}

/* ---- Lightbox ---- */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-overlay {
  position: absolute; inset: 0;
  background: rgba(12,8,6,0.9);
  backdrop-filter: blur(16px) saturate(1.4);
}
.lightbox-content {
  position: relative; z-index: 1;
  max-width: 92vw; max-height: 90vh;
  animation: lightboxIn 0.42s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes lightboxIn {
  from { transform: scale(0.72) translateY(20px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
#lightboxImg {
  max-width: 88vw; max-height: 84vh;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.08);
  object-fit: contain; display: block;
}
.lightbox-close {
  position: absolute; top: -16px; left: -16px;
  width: 42px; height: 42px; border-radius: 50%;
  background: white; border: none; font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); z-index: 2;
}
.lightbox-close:hover { transform: scale(1.15) rotate(90deg); background: var(--peach-mid); }

@media (max-width: 768px) {
  .reviews-scatter { height: 480px; max-width: 100%; }
  .scatter-card { width: 120px; height: 160px; }
}
@media (max-width: 480px) {
  .reviews-scatter { height: 400px; }
  .scatter-card { width: 100px; height: 135px; border-radius: 10px; }
}

/* ===========================
   STORY
=========================== */
.story-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #faf6f0 0%, #f5ede2 50%, #faf0e6 100%);
  position: relative; overflow: hidden;
}
.story-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.6) 0%, transparent 40%), radial-gradient(circle at 80% 30%, rgba(245,197,163,0.15) 0%, transparent 40%);
}
.story-card {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9); border-radius: 36px; padding: 64px;
  text-align: center; position: relative; max-width: 860px; margin: 0 auto;
  transition: transform 0.4s, box-shadow 0.4s;
}
.story-card:hover { transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,0.3); }
.story-quote { font-size: 7rem; line-height: 0.5; font-family: Georgia,serif; background: linear-gradient(135deg, #e8a0b0, #b07d5e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 24px; display: block; }
.story-card p { font-size: 1.1rem; color: #4a4a6a; line-height: 2; font-style: italic; }
.story-author { margin-top: 30px; font-weight: 700; color: var(--brown-soft); font-size: 15px; }

/* ===========================
   CONTACT
=========================== */
.contact-section { padding: 100px 0; background: var(--cream); position: relative; overflow: hidden; }
.contact-section::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,143,143,0.07) 0%, transparent 70%);
  top: -200px; right: -200px; pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--text-mid); margin-bottom: 32px; font-size: 15px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-item {
  display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 500;
  color: var(--text-dark); transition: all 0.35s; padding: 13px 18px;
  background: white; border-radius: var(--radius-sm);
  border: 1px solid var(--peach-light); box-shadow: 0 2px 12px rgba(176,125,94,0.06);
}
.contact-item:hover { color: var(--blush-dark); border-color: var(--peach); transform: translateX(-6px); box-shadow: 0 6px 24px rgba(176,125,94,0.15); }
.contact-icon { font-size: 1.1rem; color: var(--blush); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: 600; transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94); }
.social-btn svg { width: 18px; height: 18px; }
.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.whatsapp  { background: #25D366; color: white; }
.social-btn:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }

.contact-form-wrap {
  background: white; border-radius: 28px; padding: 44px;
  box-shadow: 0 20px 60px rgba(176,125,94,0.12);
  border: 1px solid rgba(245,197,163,0.3); position: relative; overflow: hidden;
}
.contact-form-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-warm); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 20px; border: 2px solid rgba(245,197,163,0.4);
  border-radius: var(--radius-sm); font-family: 'Rubik',sans-serif;
  font-size: 14px; color: var(--text-dark); background: var(--cream); transition: all 0.35s; outline: none; direction: rtl;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blush); background: white;
  box-shadow: 0 0 0 5px rgba(232,165,135,0.15); transform: scale(1.01);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none; text-align: center; padding: 16px;
  background: linear-gradient(135deg, var(--peach-light), rgba(91,143,143,0.1));
  border-radius: var(--radius-sm); color: var(--brown-soft); font-weight: 600; margin-top: 12px;
  border: 1px solid var(--peach-mid);
}
.form-success.show { display: block; animation: fadeInUp 0.5s ease; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: linear-gradient(135deg, #f5ede2, #ede3d5, #f0e8d8);
  color: white; padding: 50px 24px; text-align: center; position: relative; overflow: hidden;
}
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(176,125,94,0.3), rgba(176,125,94,0.5), rgba(176,125,94,0.3), transparent); }
.footer-logo { height: 52px; width: auto; object-fit: contain; margin: 0 auto 18px; filter: drop-shadow(0 2px 8px rgba(176,125,94,0.2)); transition: opacity 0.3s; }
.footer-logo:hover { opacity: 1; }
.footer p { font-size: 14px; color: #7a6a5a; margin-bottom: 8px; }
.footer-copy { font-size: 12px !important; color: #a89880 !important; margin-top: 18px !important; }

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.85s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.85s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-up    { transform: translateY(55px); }
.reveal-left  { transform: translateX(-55px); }
.reveal-right { transform: translateX(55px); }
.revealed     { opacity: 1 !important; transform: none !important; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 960px) {
  .cursor-dot, .cursor-ring { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { order: -1; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .services-wrapper { grid-template-columns: 1fr; }
  .service-divider { width: 100%; height: 1px; margin: 0 44px; background: linear-gradient(to right, transparent, rgba(245,197,163,0.5), transparent); }
  .service-block { padding: 40px 32px; }
  .reviews-grid { grid-template-columns: repeat(4,1fr); gap: 8px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-tags { gap: 10px; margin-bottom: 60px; }
  .hero-tag { font-size: 12px; padding: 8px 16px; }
}
@media (max-width: 640px) {
  /* Hero: stack vertically, image first */
  .hero-split {
    grid-template-columns: 1fr;
    padding: 20px 20px 60px;
    gap: 28px;
  }

  /* Image side comes first on mobile */
  .hero-image-side {
    order: -1;
  }

  /* Image frame on mobile */
  .hero-img-frame {
    margin: 0 auto;
  }

  .hero-main-img {
    width: 260px;
    height: 340px;
    box-shadow: 0 16px 50px rgba(180,130,130,0.2);
  }

  .hero-img-deco-ring {
    width: 295px;
    height: 378px;
    inset: auto;
  }

  /* Text side: center aligned */
  .hero-text-side {
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 14.5px;
    text-align: center;
    max-width: 320px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 30px;
    font-size: 15px;
  }

  .hero-tags {
    justify-content: center;
    gap: 8px;
    margin-top: 0;
  }
  .hero-tag { font-size: 11.5px; padding: 7px 14px; }

  .hero-eyebrow {
    text-align: center;
    font-size: 11px;
  }

  /* Other sections */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feature-card { padding: 24px 16px; }
  .reviews-grid { grid-template-columns: repeat(4,1fr); gap: 7px; }
  .story-card { padding: 40px 24px; }
  .story-quote { font-size: 5rem; }
  .contact-form-wrap { padding: 32px 22px; }
  .service-block { padding: 30px 22px; }
}

/* ===========================
   FLOATING WHATSAPP BUTTON
=========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 2px 10px rgba(0,0,0,0.15);
  z-index: 9000;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
  animation: waBob 3.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.13);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6), 0 4px 16px rgba(0,0,0,0.18);
  animation: none;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}
@keyframes waBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2.5px solid rgba(37,211,102,0.5);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}
