:root {
  --rose: #d4727e;
  --rose-light: #f2b5bc;
  --rose-pale: #fadadd;
  --blush: #fff0f3;
  --sakura: #ffb7c5;
  --plum: #8e3a59;
  --deep: #5c1a33;
  --cream: #fff8f6;
  --warm-white: #fffbf9;
  --text: #3d1f2e;
  --text-light: #7a5568;
  --gold-accent: #c9956b;
  --jade: #7ba69e;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Nunito Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
a {
  touch-action: manipulation;
}
button {
  touch-action: manipulation;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(255, 248, 246, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(93, 26, 51, 0.06);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--deep);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo span {
  color: var(--rose);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--rose);
}
.nav-cta-btn {
  background: var(--rose);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border: none;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
}
.nav-cta-btn:hover {
  background: var(--plum);
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep);
  margin: 4px 0;
  border-radius: 2px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--blush) 0%,
    var(--cream) 40%,
    var(--rose-pale) 100%
  );
  overflow: hidden;
}
.hero-petals {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.petal {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50% 0 50% 50%;
  opacity: 0.35;
  animation: fall linear infinite;
}
.petal:nth-child(1) {
  left: 10%;
  background: var(--sakura);
  animation-duration: 8s;
  top: -20px;
}
.petal:nth-child(2) {
  left: 25%;
  background: var(--rose-light);
  animation-duration: 11s;
  animation-delay: 2s;
  top: -20px;
  width: 14px;
  height: 14px;
}
.petal:nth-child(3) {
  left: 45%;
  background: var(--sakura);
  animation-duration: 9s;
  animation-delay: 4s;
  top: -20px;
}
.petal:nth-child(4) {
  left: 65%;
  background: var(--rose-pale);
  animation-duration: 13s;
  animation-delay: 1s;
  top: -20px;
  width: 22px;
  height: 22px;
}
.petal:nth-child(5) {
  left: 80%;
  background: var(--sakura);
  animation-duration: 10s;
  animation-delay: 3s;
  top: -20px;
}
.petal:nth-child(6) {
  left: 90%;
  background: var(--rose-light);
  animation-duration: 12s;
  animation-delay: 5s;
  top: -20px;
  width: 12px;
  height: 12px;
}
.petal:nth-child(7) {
  left: 35%;
  background: var(--rose-pale);
  animation-duration: 14s;
  animation-delay: 6s;
  top: -20px;
}
.petal:nth-child(8) {
  left: 55%;
  background: var(--sakura);
  animation-duration: 9s;
  animation-delay: 7s;
  top: -20px;
  width: 16px;
  height: 16px;
}
@keyframes fall {
  0% {
    transform: translateY(-10vh) rotate(0deg) translateX(0);
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(110vh) rotate(720deg) translateX(80px);
    opacity: 0;
  }
}
.hero-content {
  max-width: 650px;
  padding: 0 5%;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 114, 126, 0.1);
  border: 1px solid var(--rose-light);
  color: var(--rose);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.8rem;
  font-weight: 600;
  animation: fadeUp 0.7s 0.2s both;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--deep);
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeUp 0.7s 0.4s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
}
.hero-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 480px;
  animation: fadeUp 0.7s 0.6s both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.8s both;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  padding: 0.85rem 2.2rem;
  border: none;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(212, 114, 126, 0.3);
}
.btn-primary:hover {
  background: var(--plum);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(142, 58, 89, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--deep);
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--deep);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: var(--deep);
  color: #fff;
}
.hero-decoration {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 55%;
  height: 80%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-circle {
  width: min(500px, 45vw);
  height: min(500px, 45vw);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    var(--sakura),
    var(--rose-light) 60%,
    var(--rose) 100%
  );
  opacity: 0.18;
  position: relative;
}
.hero-circle::after {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.hero-flower {
  position: absolute;
  font-size: 8rem;
  opacity: 0.07;
  color: var(--plum);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: serif;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 6rem 5%;
}
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--rose);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 0.8rem;
  color: var(--deep);
}
.section-sub {
  color: var(--text-light);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--warm-white);
}
.about-visual {
  position: relative;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--sakura),
    var(--rose-light),
    var(--rose-pale)
  );
  box-shadow: 0 20px 60px rgba(212, 114, 126, 0.12);
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.about-visual-inner .flower {
  font-size: 5rem;
  opacity: 0.3;
}
.about-visual-inner .text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--deep);
  opacity: 0.4;
  letter-spacing: 0.1em;
}
.about-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  border-color: var(--rose);
  border-style: solid;
  border-width: 0;
}
.about-corner.tl {
  top: 15px;
  left: 15px;
  border-top-width: 1.5px;
  border-left-width: 1.5px;
  border-radius: 12px 0 0 0;
}
.about-corner.br {
  bottom: 15px;
  right: 15px;
  border-bottom-width: 1.5px;
  border-right-width: 1.5px;
  border-radius: 0 0 12px 0;
}
.about p {
  color: var(--text-light);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1rem;
}
.about-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.feature {
  text-align: center;
  padding: 1.2rem;
  background: var(--blush);
  border-radius: 16px;
  flex: 1;
}
.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--rose);
}

.feature-icon i {
  display: inline-block;
  width: 1.6rem;
  text-align: center;
}
.feature-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose);
}
.feature-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.2rem;
}

.services {
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
  border: 1px solid rgba(212, 114, 126, 0.08);
  touch-action: manipulation;
  will-change: transform;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(212, 114, 126, 0.12);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sakura), var(--rose), var(--plum));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-emoji {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--deep);
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}
.before-after {
  background: var(--deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.before-after .section-label {
  color: var(--sakura);
}
.before-after .section-label::before {
  background: var(--sakura);
}
.before-after .section-title {
  color: #fff;
}
.before-after .section-sub {
  color: var(--rose-light);
}
.ba-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(var(--sakura) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.ba-carousel {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}
.ba-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.ba-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  padding: 1rem 2rem;
  flex-shrink: 0;
  box-sizing: border-box;
}
.ba-slider-wrap {
  position: relative;
  width: min(480px, 45vw);
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.ba-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}
.ba-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-after {
  z-index: 1;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
}
.ba-handle::after {
  content: "\25C0  \25B6";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--rose);
  color: #fff;
  font-size: 0.55rem;
  padding: 0.5rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: 4px;
}
.ba-label {
  position: absolute;
  bottom: 14px;
  padding: 0.35rem 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 20px;
  z-index: 6;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
}
.ba-label-before {
  left: 14px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.ba-label-after {
  right: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep);
}
.ba-info {
  max-width: 300px;
  flex-shrink: 1;
  min-width: 0;
}
.ba-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  color: var(--sakura);
}
.ba-info p {
  font-size: 0.88rem;
  color: var(--rose-light);
  line-height: 1.75;
  font-weight: 300;
}
.ba-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: center;
}
.ba-btn {
  background: none;
  border: 1.5px solid var(--sakura);
  color: var(--sakura);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.ba-btn:hover {
  background: var(--sakura);
  color: var(--deep);
}
.ba-dots {
  display: flex;
  gap: 0.5rem;
}
.ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 183, 197, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.ba-dot.active {
  background: var(--sakura);
  transform: scale(1.4);
}

.gallery {
  background: var(--warm-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  box-shadow: 0 4px 20px rgba(92, 26, 51, 0.08);
}
.gallery-item:hover {
  transform: scale(1.025);
  box-shadow: 0 8px 32px rgba(92, 26, 51, 0.16);
}
/* Bento item positions */
.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}
.gallery-item:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 3 / 5;
}
.gallery-item:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 3 / 5;
}
.gallery-item:nth-child(5) {
  grid-column: 1 / 3;
  grid-row: 5 / 7;
}
.gallery-item:nth-child(6) {
  grid-column: 3 / 4;
  grid-row: 5 / 6;
}
.gallery-item:nth-child(7) {
  grid-column: 3 / 4;
  grid-row: 6 / 7;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 280px;
}

.gp1 {
  background: linear-gradient(135deg, var(--sakura), var(--rose-light));
  color: var(--deep);
}
.gp2 {
  background: linear-gradient(135deg, var(--rose-pale), var(--sakura));
  color: var(--plum);
}
.gp4 {
  background: linear-gradient(135deg, var(--rose-light), var(--rose-pale));
  color: var(--deep);
}
.gp5 {
  background: linear-gradient(135deg, var(--blush), var(--sakura));
  color: var(--plum);
}

.testimonials {
  background: var(--blush);
  text-align: center;
}
.testimonial-cards {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial {
  max-width: 360px;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(212, 114, 126, 0.06);
  position: relative;
  text-align: left;
}
.testimonial::before {
  content: "\201C";
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: var(--sakura);
  position: absolute;
  top: 0.8rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sakura), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--deep);
}
.testimonial-role {
  font-size: 0.72rem;
  color: var(--text-light);
}

.contact {
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--deep);
}
.contact-item {
  margin-bottom: 1.4rem;
}
.contact-item-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.contact-item-value {
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-item-value a {
  color: var(--deep);
  text-decoration: none;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-methods h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 0.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--rose-pale);
  transition: all 0.3s;
}

.contact-method:hover {
  box-shadow: 0 4px 20px rgba(212, 114, 126, 0.15);
  border-color: var(--rose);
  transform: translateY(-2px);
}

.contact-method-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
}

.contact-method-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.contact-method-content {
  flex: 1;
}

.contact-method-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-method-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep);
  text-decoration: none;
  display: inline-block;
}

.contact-method-value:hover {
  color: var(--rose);
}

.contact-method-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.2rem;
  font-weight: 300;
}

footer {
  background: var(--deep);
  color: var(--rose-light);
  text-align: center;
  padding: 2rem 5%;
}
footer .footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--sakura);
  margin-bottom: 0.5rem;
  display: block;
  text-decoration: none;
  height: 150px;
}
.footer-logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.5rem;
}
footer .footer-tagline {
  color: var(--rose-light);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
footer .footer-links a {
  color: var(--rose-light);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}
footer .footer-links a:hover {
  color: var(--sakura);
}
footer .footer-copy {
  font-size: 0.72rem;
  opacity: 0.4;
}
.footer-flower {
  font-size: 1.2rem;
  opacity: 0.3;
  margin-bottom: 0.8rem;
  display: block;
}

/* — Enhanced UI/UX — */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--rose);
}
.menu-toggle span {
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.service-tagline {
  color: var(--rose);
  font-weight: 500;
  font-size: 0.82rem;
  margin-top: 0.6rem;
  font-style: italic;
  letter-spacing: 0.02em;
}
.service-card .service-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: var(--blush);
  border-radius: 16px;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  transition:
    background 0.3s,
    transform 0.3s;
  color: var(--rose);
}

.service-card .service-emoji i {
  display: inline-block;
}
.service-card:hover .service-emoji {
  background: var(--rose-pale);
  transform: scale(1.1) rotate(-3deg);
}
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 114, 126, 0.35);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--plum);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(142, 58, 89, 0.4);
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
}
#lightbox.open {
  display: flex;
}
.lb-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 8px 50px rgba(0, 0, 0, 0.5);
}
.lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lb-close:hover {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(92, 26, 51, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transform: translateY(8px);
  transition: transform 0.4s;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  padding: 0.45rem 1.2rem;
  border-radius: 30px;
}
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}
/* Service Modal */
.service-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.service-modal.open {
  display: flex;
}
.service-modal-content {
  position: relative;
  border-radius: 16px;
  width: 90vw;
  max-width: 1200px;
  min-width: 280px;
  height: 85vh;
  max-height: 800px;
  min-height: 400px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(93, 26, 51, 0.25);
  display: flex;
  flex-direction: column;
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  color: var(--rose);
  font-size: 2rem;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5); /* Add background for better visibility */
}
.service-modal-close:hover {
  background: var(--rose-light);
  transform: scale(1.1);
}
.service-modal-header {
  padding: 1.8rem 2rem 0.8rem;
  border-bottom: 1px solid rgba(212, 114, 126, 0.15);
  flex-shrink: 0; /* Prevent header from shrinking */
}
.service-modal-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #fff;
  margin: 0;
}
.service-modal-body {
  flex: 1;
  overflow: hidden; /* Changed from auto to hidden */
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  min-height: 0; /* Important for flex child scrolling */
}
.service-image-container {
  position: relative;
  /* background: var(--cream); */
  border-radius: 12px;
  overflow: auto; /* Changed from hidden to auto for scrollable image */
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0; /* Important for flex child */
}
.service-modal-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block; /* Remove extra spacing */
}
.service-modal-nav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  pointer-events: none;
  z-index: 10;
}
.service-modal-prev,
.service-modal-next {
  pointer-events: all;
  background: rgba(93, 26, 51, 0.7);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.service-modal-prev:hover,
.service-modal-next:hover {
  background: var(--rose);
  transform: scale(1.15);
}
.service-thumbnail {
  width: 70px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s;
  opacity: 0.6;
  flex-shrink: 0; /* Prevent thumbnails from shrinking */
}
.service-thumbnail:hover {
  opacity: 1;
}
.service-thumbnail.active {
  border-color: var(--rose);
  opacity: 1;
}
.service-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-modal-counter {
  padding: 1rem 2rem;
  text-align: center;
  color: #fff;
  font-size: 0.88rem;
  border-top: 1px solid rgba(212, 114, 126, 0.15);
  flex-shrink: 0; /* Prevent counter from shrinking */
}

.testimonial-stars {
  color: var(--gold-accent);
  font-size: 0.82rem;
  letter-spacing: 3px;
  padding-top: 1.5rem;
  margin-bottom: 0;
}
.testimonial-stars ~ p {
  padding-top: 0.3rem !important;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(242, 181, 188, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-light);
  text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--sakura);
  color: var(--deep);
  border-color: var(--sakura);
  transform: translateY(-3px);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transition: left 0.6s;
}
.btn-primary:hover::after {
  left: 100%;
}
.hero-circle {
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  animation: pageLoad 0.5s ease;
}
@keyframes pageLoad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.feature {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 114, 126, 0.12);
}
.testimonial {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 114, 126, 0.12);
}
.contact-item {
  transition: transform 0.3s;
}
.contact-item:hover {
  transform: translateX(4px);
}

/* ====== RESPONSIVE BREAKPOINTS ====== */

/* Large desktops (1400px+) */
@media (min-width: 1400px) {
  nav {
    padding: 1rem 8%;
  }
  section {
    padding: 7rem 8%;
  }
  .services-grid {
    gap: 2rem;
  }
  .gallery-grid {
    grid-template-rows: 260px 260px 220px;
  }
  .contact-grid {
    gap: 5rem;
  }
  .testimonial {
    max-width: 400px;
  }
}

/* Laptops / small desktops (1024-1399px) */
@media (max-width: 1399px) {
  section {
    padding: 6rem 5%;
  }
}

/* Tablets landscape (1024px) */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .nav-links {
    gap: 1.4rem;
  }
  .nav-links a {
    font-size: 0.72rem;
  }
  .ba-slide {
    gap: 2.5rem;
  }
  .ba-info {
    max-width: 260px;
  }
  .ba-info h3 {
    font-size: 1.3rem;
  }

  /* Service Modal Responsive Styles */
  .service-modal-prev,
  .service-modal-next {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .service-modal-body {
    padding: 1.25rem;
    gap: 1.25rem;
  }
}

/* Tablets portrait (768-900px) */
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .about-visual {
    height: 300px;
  }
  .section-label {
    justify-content: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px 180px;
    gap: 0.75rem;
  }
  .gallery-item {
    min-height: 180px;
  }
  .gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
  .gallery-item:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
  }
  .gallery-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 3 / 5;
  }
  .gallery-item:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 5 / 6;
  }
  .gallery-item:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 5 / 6;
  }
  .gallery-item:nth-child(6) {
    grid-column: 1 / 3;
    grid-row: 6 / 7;
  }
  .gallery-item:nth-child(7) {
    grid-column: 1 / 3;
    grid-row: 7 / 8;
  }
  .hero-decoration {
    display: none;
  }
  .hero {
    justify-content: center;
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .testimonial-cards {
    gap: 1.2rem;
  }
  .testimonial {
    max-width: 100%;
    width: 100%;
  }
  .ba-slide {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 5%;
  }
  .ba-slider-wrap {
    width: 100%;
    max-width: 420px;
    flex-shrink: 1;
  }
  .ba-info {
    max-width: 420px;
    width: 100%;
    text-align: center;
    padding: 0 0.5rem;
  }
  .ba-info h3 {
    font-size: 1.2rem;
  }
  .ba-info p {
    font-size: 0.82rem;
    word-wrap: break-word;
  }
  .contact-info {
    text-align: center;
  }
  .contact-item {
    text-align: center;
  }
  .contact-item:hover {
    transform: none;
  }

  /* Service Modal Responsive Styles */
  .service-modal-content {
    height: 90vh;
    min-height: 350px;
  }

  .service-modal-body {
    padding: 1rem;
    gap: 1rem;
  }

  .service-modal-prev,
  .service-modal-next {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .service-modal-nav {
    padding: 0.75rem;
  }
}

/* Large phones / phablets (680px) */
@media (max-width: 680px) {
  .nav-links {
    display: none;
  }
  .nav-cta-btn {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 248, 246, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 5% 2rem;
    gap: 0;
    box-shadow: 0 10px 30px rgba(93, 26, 51, 0.08);
    animation: slideDown 0.35s ease;
  }
  .nav-links.open li {
    border-bottom: 1px solid var(--rose-pale);
  }
  .nav-links.open li:last-child {
    border-bottom: none;
  }
  .nav-links.open li a {
    display: block;
    padding: 0.9rem 0;
    font-size: 0.85rem;
  }
  section {
    padding: 3.5rem 5%;
  }
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 160px 160px;
    gap: 0.8rem;
  }
  .gallery-item {
    min-height: 150px;
  }
  .gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .gallery-item:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
  }
  .gallery-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
  }
  .gallery-item:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
  .gallery-item:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 5 / 6;
  }
  .gallery-item:nth-child(6) {
    grid-column: 2 / 3;
    grid-row: 5 / 6;
  }
  .gallery-item:nth-child(7) {
    grid-column: 2 / 3;
    grid-row: 5 / 6;
  }

  .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
  .about-features {
    flex-direction: column;
    gap: 1rem;
  }
  .about-visual {
    height: 250px;
  }
  .hero {
    min-height: 90vh;
  }
  .hero-badge {
    font-size: 0.62rem;
    padding: 0.4rem 1rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.8rem;
    font-size: 0.76rem;
  }
  .service-card {
    padding: 1.8rem 1.4rem;
  }

  .ba-slider-wrap {
    width: 100%;
    max-width: 380px;
  }
  .ba-slide {
    padding: 1rem 5%;
    gap: 1.2rem;
  }
  .ba-info {
    max-width: 380px;
  }
  .ba-nav {
    margin-top: 1.5rem;
    gap: 0.8rem;
  }
  .back-to-top {
    width: 42px;
    height: 42px;
    bottom: 1.2rem;
    right: 1.2rem;
    font-size: 1rem;
  }
  footer {
    padding: 2.5rem 5%;
  }
  footer .footer-links {
    gap: 1rem;
  }
  footer .footer-links a {
    font-size: 0.68rem;
  }

  /* Service Modal Responsive Styles */
  .service-modal-content {
    height: 92vh;
    min-height: 300px;
    border-radius: 12px;
  }

  .service-modal-body {
    padding: 0.875rem;
    gap: 0.875rem;
    flex-direction: column;
  }

  .service-image-container {
    min-height: 200px;
    max-height: 55vh;
  }

  .service-modal-nav {
    display: none;
  }

  .service-modal-header h2 {
    font-size: 1.4rem;
  }

  .service-modal-counter {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  .service-modal-thumbnails {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }
}

/* Small phones (480px) */
@media (max-width: 480px) {
  nav {
    padding: 0.8rem 4%;
  }
  .nav-logo {
    font-size: 1.15rem;
  }
  section {
    padding: 3rem 4%;
  }
  .hero {
    min-height: 85vh;
    padding-top: 5rem;
  }
  .hero-content {
    padding: 0 4%;
  }
  .hero-badge {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    padding: 0.35rem 0.8rem;
    margin-bottom: 1.4rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 0.8rem;
  }
  .hero-sub {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 0.74rem;
  }
  .about {
    gap: 2rem;
  }
  .about-visual {
    height: 220px;
    border-radius: 14px;
  }
  .about-visual-inner .flower {
    font-size: 3.5rem;
  }
  .about-visual-inner .text {
    font-size: 1rem;
  }
  .about-corner {
    width: 50px;
    height: 50px;
  }
  .about p {
    font-size: 0.88rem;
    line-height: 1.7;
  }
  .about-features {
    gap: 0.8rem;
  }
  .feature {
    padding: 1rem 0.8rem;
    border-radius: 12px;
  }
  .feature-num {
    font-size: 1.6rem;
  }
  .feature-label {
    font-size: 0.62rem;
  }
  .service-card {
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
  }
  .service-card .service-emoji {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.8rem;
  }
  .service-tagline {
    font-size: 0.76rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 180px 180px 180px 180px;
    gap: 0.8rem;
  }
  .gallery-item {
    min-height: 160px;
    border-radius: 12px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7) {
    grid-column: 1/2;
    grid-row: auto;
  }

  .testimonial {
    padding: 2rem 1.4rem;
    border-radius: 16px;
  }
  .testimonial::before {
    font-size: 3rem;
    top: 0.5rem;
    left: 1rem;
  }
  .testimonial p {
    font-size: 0.82rem;
    line-height: 1.7;
  }
  .testimonial-stars {
    font-size: 0.75rem;
  }
  .testimonial-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }
  .testimonial-name {
    font-size: 0.78rem;
  }
  .testimonial-role {
    font-size: 0.66rem;
  }
  .contact-grid {
    gap: 2rem;
  }
  .contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .contact-item-label {
    font-size: 0.62rem;
  }
  .contact-item-value {
    font-size: 0.85rem;
  }

  .ba-slider-wrap {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4/3;
  }
  .ba-slide {
    padding: 0.8rem 4%;
    gap: 1rem;
  }
  .ba-info {
    max-width: 320px;
  }
  .ba-info h3 {
    font-size: 1.1rem;
  }
  .ba-info p {
    font-size: 0.78rem;
    line-height: 1.6;
  }
  .ba-nav {
    margin-top: 1.2rem;
  }
  .ba-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  .ba-label {
    font-size: 0.55rem;
    padding: 0.25rem 0.6rem;
  }
  .ba-handle::after {
    font-size: 0.48rem;
    padding: 0.4rem 0.55rem;
  }
  footer .footer-logo {
    font-size: 1.2rem;
  }
  footer .footer-tagline {
    font-size: 0.7rem;
  }
  footer .footer-copy {
    font-size: 0.65rem;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
  }
  .footer-social svg {
    width: 14px;
    height: 14px;
  }
  .back-to-top {
    width: 38px;
    height: 38px;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.9rem;
  }

  /* Service Modal Responsive Styles */
  .service-modal-content {
    height: 100vh;
    border-radius: 0;
  }

  .service-modal-body {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .service-image-container {
    min-height: 180px;
    max-height: 50vh;
  }

  .service-modal-nav {
    display: none;
  }

  .service-modal-header h2 {
    font-size: 1.2rem;
  }

  .service-modal-counter {
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
  }

  .service-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
  }

  .service-modal-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
}

/* Extra small phones (360px) */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero-badge {
    font-size: 0.52rem;
    padding: 0.3rem 0.7rem;
  }
  .hero-sub {
    font-size: 0.82rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .nav-logo {
    font-size: 1.05rem;
  }
  .about-visual {
    height: 180px;
  }
  .feature {
    padding: 0.8rem 0.6rem;
  }
  .feature-num {
    font-size: 1.4rem;
  }
  .service-card {
    padding: 1.3rem 1rem;
  }
  .ba-slider-wrap {
    width: 100%;
    max-width: 280px;
  }

  /* Service Modal Responsive Styles */
  .service-modal-prev,
  .service-modal-next {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .service-modal-body {
    padding: 0.6rem;
    gap: 0.6rem;
  }

  .service-modal-header h2 {
    font-size: 1rem;
  }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 6rem 5% 3rem;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-sub {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }
  section {
    padding: 3rem 5%;
  }

  /* Service Modal Responsive Styles   */

  .service-modal-content {
    height: 96vh;
  }

  .service-modal-body {
    flex-direction: row;
    padding: 0.75rem;
    gap: 1rem;
  }

  .service-image-container {
    max-height: 70vh;
    min-height: 150px;
  }

  .service-modal-prev,
  .service-modal-next {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .service-modal-header {
    padding: 0.75rem 1.25rem 0.35rem;
  }

  .service-modal-header h2 {
    font-size: 1.2rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover {
    transform: none;
    box-shadow: none;
  }
  .service-card:active {
    transform: scale(0.98);
    box-shadow: 0 4px 20px rgba(212, 114, 126, 0.12);
  }
  .gallery-item:hover {
    transform: none;
  }
  .gallery-overlay {
    opacity: 0 !important;
  }
  .gallery-item:active .gallery-overlay {
    opacity: 1 !important;
  }
  .testimonial:hover {
    transform: none;
  }
  .testimonial:active {
    transform: scale(0.98);
  }
  .feature:hover {
    transform: none;
  }
  .feature:active {
    transform: scale(0.96);
  }
  .btn-primary:hover,
  .btn-secondary:hover,
  .nav-cta-btn:hover {
    transform: none;
  }
  .btn-primary:active,
  .btn-secondary:active,
  .nav-cta-btn:active {
    transform: scale(0.96);
  }
  .back-to-top:hover {
    transform: none;
  }
  .back-to-top:active {
    transform: scale(0.92);
  }
  .contact-item:hover {
    transform: none;
  }

  /* Service Modal Responsive Styles */
  .service-modal-prev,
  .service-modal-next {
    background: rgba(93, 26, 51, 0.85);
    backdrop-filter: blur(8px);
  }

  .service-modal-prev:active,
  .service-modal-next:active {
    transform: scale(0.92);
    background: var(--rose);
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .petal {
    animation: none !important;
    display: none;
  }
  .hero-circle {
    animation: none !important;
  }

  /* Service Modal Responsive Styles */
  .service-modal-prev:hover,
  .service-modal-next:hover {
    background: var(--rose);
    transform: scale(1.1);
  }
}
