/* Flores a Dias - Main Stylesheet */

:root {
  --sage-green: #6B8E71;
  --cream: #F5F3F0;
  --charcoal: #2B2B2B;
  --light-green: #8BA887;
  --dark-cream: #EBE8E3;
}

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

html {
  scroll-behavior: smooth;
  min-height: 100vh;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--charcoal);
  line-height: 1.6;
  background-color: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* GRADIENT OPTIONS - Option B (Cream to Rose): linear-gradient(135deg, var(--cream) 0%, rgba(232, 180, 168, 0.08) 100%); */

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
}

/* Header & Navigation */
header {
  background-color: var(--cream);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--dark-cream);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(245, 243, 240, 0.85);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
}

/* Mobile: more transparent scrolled header */
@media (max-width: 768px) {
  header.scrolled {
    background-color: rgba(245, 243, 240, 0.63);
  }
}

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

.logo {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage-green);
  letter-spacing: 1px;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

nav a:hover {
  color: var(--sage-green);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: 2.5px solid #4A5F41;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  margin-top: -12px;
}

.hamburger.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger.active {
  background-color: rgba(139, 168, 135, 0.85);
}

.hamburger:hover {
  border-color: #3D4933;
  transform: scale(1.05);
}

.hamburger span {
  display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--cream);
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-bottom: 1px solid var(--dark-cream);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
  }

  nav.active {
    max-height: 500px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 2rem;
  }

  nav li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--dark-cream);
  }

  nav li:last-child {
    border-bottom: none;
  }

  nav a {
    display: block;
  }

  .header-content {
    padding: 0 1.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }
}

/* Hero Section with Dynamic Flowers & Parallax */
.hero {
  position: relative;
  color: var(--cream);
  padding: 8rem 2rem;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(139, 168, 135, 0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(45, 70, 50, 0.65) 0%, rgba(75, 108, 80, 0.55) 50%, rgba(107, 142, 113, 0.5) 100%), 
    url('/images/hero-bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

/* iOS Safari fix: background-attachment: fixed doesn't work on iOS */
@supports (-webkit-touch-callout: none) {
  .hero-background {
    background-attachment: scroll;
  }
}

/* Floating Flowers Animation */
.flowers-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.flower {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transform: translateZ(0);
  will-change: transform;
}

.flower-1 {
  top: 15%;
  left: 10%;
  animation: float 8s ease-in-out infinite, sway 4s ease-in-out infinite;
  font-size: 2.8rem;
}

.flower-2 {
  top: 20%;
  right: 15%;
  animation: float 10s ease-in-out infinite 1s, sway 5s ease-in-out infinite 0.5s;
  font-size: 2.2rem;
}

.flower-3 {
  top: 40%;
  left: 8%;
  animation: float 9s ease-in-out infinite 0.5s, sway 6s ease-in-out infinite 1s;
  font-size: 2.6rem;
}

.flower-4 {
  top: 35%;
  right: 10%;
  animation: float 11s ease-in-out infinite 2s, sway 5.5s ease-in-out infinite 1.5s;
  font-size: 2.4rem;
}

.flower-5 {
  top: 60%;
  left: 15%;
  animation: float 8.5s ease-in-out infinite 1.5s, sway 4.5s ease-in-out infinite 0.8s;
  font-size: 2.3rem;
}

.flower-6 {
  top: 55%;
  right: 12%;
  animation: float 10.5s ease-in-out infinite 0.8s, sway 5.5s ease-in-out infinite 1.2s;
  font-size: 2.7rem;
}

.flower-7 {
  top: 25%;
  left: 50%;
  animation: float 9.5s ease-in-out infinite 1.2s, sway 6s ease-in-out infinite 0.3s;
  font-size: 2.5rem;
}

.flower-8 {
  top: 70%;
  left: 40%;
  animation: float 8s ease-in-out infinite 2.5s, sway 4.5s ease-in-out infinite 1.8s;
  font-size: 2.1rem;
}

.flower-9 {
  top: 30%;
  right: 25%;
  animation: float 10s ease-in-out infinite 1.8s, sway 5s ease-in-out infinite 0.6s;
  font-size: 2.4rem;
}

.flower-10 {
  top: 50%;
  right: 20%;
  animation: float 9s ease-in-out infinite 2.2s, sway 6s ease-in-out infinite 1.3s;
  font-size: 2.5rem;
}

.flower-11 {
  top: 45%;
  left: 30%;
  animation: float 8.5s ease-in-out infinite 0.3s, sway 5.5s ease-in-out infinite 2s;
  font-size: 2.2rem;
}

.flower-12 {
  top: 65%;
  right: 35%;
  animation: float 11s ease-in-out infinite 1.1s, sway 4.5s ease-in-out infinite 0.9s;
  font-size: 2.6rem;
}

.flower-13 {
  top: 20%;
  left: 20%;
  animation: float 9.5s ease-in-out infinite 0.7s, sway 5s ease-in-out infinite 1.5s;
  font-size: 2.3rem;
}

.flower-14 {
  top: 42%;
  right: 5%;
  animation: float 8.5s ease-in-out infinite 2.1s, sway 6s ease-in-out infinite 0.4s;
  font-size: 2.5rem;
}

.flower-15 {
  top: 58%;
  left: 5%;
  animation: float 10.5s ease-in-out infinite 1.4s, sway 5.5s ease-in-out infinite 1.7s;
  font-size: 2.2rem;
}

.flower-16 {
  top: 28%;
  left: 45%;
  animation: float 9s ease-in-out infinite 0.9s, sway 4.5s ease-in-out infinite 2.2s;
  font-size: 2.4rem;
}

.flower-17 {
  top: 52%;
  left: 50%;
  animation: float 11s ease-in-out infinite 1.6s, sway 6s ease-in-out infinite 0.5s;
  font-size: 2.7rem;
}

.flower-18 {
  top: 38%;
  right: 30%;
  animation: float 8s ease-in-out infinite 2.3s, sway 5s ease-in-out infinite 1.1s;
  font-size: 2.3rem;
}

.flower-19 {
  top: 68%;
  right: 8%;
  animation: float 10s ease-in-out infinite 0.6s, sway 5.5s ease-in-out infinite 1.8s;
  font-size: 2.5rem;
}

.flower-20 {
  top: 32%;
  right: 40%;
  animation: float 9.5s ease-in-out infinite 1.9s, sway 4.5s ease-in-out infinite 0.7s;
  font-size: 2.4rem;
}

.flower-21 {
  top: 55%;
  left: 31%;
  animation: float 10s ease-in-out infinite 1.3s, sway 5s ease-in-out infinite 1.6s;
  font-size: 2.5rem;
}

.flower-22 {
  top: 72%;
  left: 31%;
  animation: float 9s ease-in-out infinite 0.4s, sway 6s ease-in-out infinite 0.8s;
  font-size: 2.3rem;
}

.flower-23 {
  top: 62%;
  left: 35%;
  animation: float 10.5s ease-in-out infinite 2s, sway 5.5s ease-in-out infinite 1.4s;
  font-size: 2.6rem;
}

.flower-24 {
  top: 78%;
  left: 33%;
  animation: float 8.5s ease-in-out infinite 1.5s, sway 4.5s ease-in-out infinite 2s;
  font-size: 2.2rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-35px) translateX(-8px);
  }
  75% {
    transform: translateY(-15px) translateX(12px);
  }
}

@keyframes sway {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(15px);
  }
}

/* Gentle Float Animation for Service Cards (Main Page - Desktop) */
@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* Gentle Float Animation for Service Cards (Main Page - Mobile) */
@keyframes gentleFloatMainMobile {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
}

/* Dynamic Logo */
.logo-dynamic {
  font-size: 5.2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: pulse-glow 3s ease-in-out infinite;
  cursor: default;
  filter: drop-shadow(0 0 15px rgba(255, 182, 193, 0.4));
}

.logo-text {
  display: inline-block;
  animation: rotate-gentle 8s linear infinite;
  transform-origin: center;
}

@keyframes pulse-glow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 182, 193, 0.3));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(255, 182, 193, 0.6));
    transform: scale(1.05);
  }
}

@keyframes rotate-gentle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Scroll Indicator Arrow */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-indicator-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5rem;
  z-index: 3;
}

@media (max-width: 768px) {
  .scroll-indicator-inline {
    display: flex;
    margin-top: 2rem;
  }
}

/* Simple Modern Scroll Arrow */
.scroll-chevron {
  width: 50px;
  height: 50px;
  opacity: 0.85;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: chevronBounce 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.scroll-chevron:hover {
  opacity: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes chevronBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (max-width: 768px) {
  .scroll-chevron {
    width: 48px;
    height: 48px;
  }
}

@keyframes bounce-down {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 3;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: fadeInDown 1s ease-out;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--sage-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.9);
}

.submit-button {
  background: linear-gradient(135deg, #6B8E71 0%, #8BA887 100%);
  color: white;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.submit-button:hover {
  background: linear-gradient(135deg, #5a7a62 0%, #7a9776 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 35px rgba(107, 142, 113, 0.4);
}

.submit-button:active {
  transform: translateY(-2px) scale(0.98);
}

/* Sections */
.section-title {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--sage-green);
  font-weight: 700;
}

/* Services Section */
.services {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #F5F3F0 0%, #FAFAF8 25%, white 50%, #FAFAF8 75%, #F0EBE8 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(107, 142, 113, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(139, 168, 135, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(212, 132, 122, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.services > * {
  position: relative;
  z-index: 1;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #999;
  text-align: center;
  margin: -2rem auto 3rem;
  max-width: 600px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-link {
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.service-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAFAF8 100%);
  border-radius: 16px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(107, 142, 113, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(107, 142, 113, 0.15);
  position: relative;
  animation: gentleFloat 3s ease-in-out infinite;
}

/* Staggered animation delays for wave effect (Desktop) */
.service-link:nth-of-type(1) .service-card {
  animation-delay: 0s;
}

.service-link:nth-of-type(2) .service-card {
  animation-delay: 0.3s;
}

.service-link:nth-of-type(3) .service-card {
  animation-delay: 0.6s;
}

.service-link:nth-of-type(4) .service-card {
  animation-delay: 0.9s;
}

.service-link:nth-of-type(5) .service-card {
  animation-delay: 1.2s;
}

/* Switch to mobile animation on smaller screens */
@media (max-width: 768px) {
  .service-card {
    animation: gentleFloatMainMobile 3s ease-in-out infinite;
  }

  .service-link:nth-of-type(1) .service-card {
    animation-delay: 0s;
  }

  .service-link:nth-of-type(2) .service-card {
    animation-delay: 0.3s;
  }

  .service-link:nth-of-type(3) .service-card {
    animation-delay: 0.6s;
  }

  .service-link:nth-of-type(4) .service-card {
    animation-delay: 0.9s;
  }

  .service-link:nth-of-type(5) .service-card {
    animation-delay: 1.2s;
  }
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6B8E71 0%, #8BA887 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  box-shadow: 0 2px 8px rgba(107, 142, 113, 0.3);
}

.service-card:hover .service-card-bg {
  opacity: 1;
}

.service-card-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(107, 142, 113, 0.18), 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(107, 142, 113, 0.25);
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F3F0 100%);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.35s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotateZ(-5deg);
}

.service-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.3;
}

.service-description {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(107, 142, 113, 0.1);
  gap: 1rem;
}

.service-price {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--sage-green);
  font-weight: 700;
  margin: 0;
}

.service-arrow {
  color: var(--sage-green);
  font-size: 1.8rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(107, 142, 113, 0.08);
  border: 2px solid rgba(107, 142, 113, 0.2);
  flex-shrink: 0;
}

.service-card:hover .service-arrow {
  transform: translateX(6px) scale(1.1);
  background: rgba(107, 142, 113, 0.15);
  border-color: rgba(107, 142, 113, 0.35);
  color: var(--sage-green);
}

/* Shop Section */
.shop {
  padding: 3rem 2rem;
  background-color: var(--cream);
}

.shop-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(43, 43, 43, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(107, 142, 113, 0.2);
}

.product-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product-info {
  padding: 2rem;
}

.product-info h4 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  color: var(--charcoal);
}

.product-description {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.product-price {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--sage-green);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.add-to-cart {
  width: 100%;
  background-color: var(--sage-green);
  color: var(--cream);
  border: none;
  padding: 0.9rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.add-to-cart:hover {
  background-color: var(--light-green);
}

/* About Section */
.about {
  padding: 5rem 2rem;
  background-color: white;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 2rem;
}

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

.value-item {
  padding: 2rem;
  background-color: var(--cream);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  box-shadow: 0 8px 16px rgba(107, 142, 113, 0.15);
  transform: translateY(-3px);
}

.value-item h4 {
  font-family: 'Lora', serif;
  color: var(--sage-green);
  margin-bottom: 0.7rem;
}

/* Contact Section */
.contact {
  padding: 1.5rem 2rem;
  background: linear-gradient(180deg, #E8D4CC 0%, #8BA887 100%);
  color: var(--cream);
}

.contact h2 {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

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

.contact h2 {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-info {
  display: grid;
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
}

.contact-item strong {
  min-width: 120px;
  text-align: right;
}

/* Modern Form Styles */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(107, 142, 113, 0.08);
}

@media (min-width: 1200px) {
  .form-container.form-submitted {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('/images/bg-flower.jpg');
    background-size: auto;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
}

@media (max-width: 768px) {
  .form-container.form-submitted {
    background: linear-gradient(135deg, #E8F0E5 0%, #8BA887 100%);
    box-shadow: 0 8px 24px rgba(107, 142, 113, 0.3);
    border: 1px solid rgba(107, 142, 113, 0.2);
  }

  /* Mobile Date Input - Larger & More Spacious */
  #dateNeeded {
    font-size: 1.1rem;
    padding: 1.1rem 1rem;
  }
}

/* Success Message Text - Desktop White */
.success-message-text {
  color: #52B788;
}

@media (min-width: 769px) {
  .form-container.form-submitted .success-message-text {
    color: white;
  }
}

.shop {
  background: linear-gradient(180deg, rgba(245, 243, 240, 0) 0%, rgba(139, 168, 135, 0.08) 50%, rgba(255, 182, 193, 0.08) 100%) !important;
}

.form-progress {
  width: 100%;
  height: 3px;
  background-color: #EBE8E3;
  border-radius: 2px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #6B8E71 0%, #8BA887 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.modern-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  letter-spacing: 0.3px;
}

.form-input {
  padding: 0.95rem 1rem;
  border: 2px solid #E8E4DF;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background-color: #F0ECEA;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus {
  outline: none;
  border-color: #52B788;
  background-color: white;
  box-shadow: 0 0 0 4px rgba(107, 142, 113, 0.1);
}

.form-input.filled {
  border-color: #52B788;
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B8E71' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

/* Review Submission Form Styles */
.review-submission-container {
  max-width: 600px;
  margin: 3rem auto 0;
  background: linear-gradient(135deg, rgba(107, 142, 113, 0.08) 0%, rgba(139, 168, 135, 0.06) 100%);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(107, 142, 113, 0.15);
}

.review-submission-title {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.review-submission-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-form-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  letter-spacing: 0.3px;
}

.review-form-input {
  padding: 0.95rem 1rem;
  border: 2px solid #E8E4DF;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background-color: #F0ECEA;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-form-input:focus {
  outline: none;
  border-color: #52B788;
  background-color: white;
  box-shadow: 0 0 0 4px rgba(107, 142, 113, 0.1);
}

.review-form-input.filled {
  border-color: #52B788;
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

.review-form-textarea {
  resize: vertical;
  min-height: 80px;
}

/* Star Rating Input */
.star-rating-input {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.star-rating-input input[type="radio"] {
  display: none;
}

.star-label {
  font-size: 2.5rem;
  cursor: pointer;
  color: #CCCCCC;
  transition: color 0.2s ease, filter 0.2s ease;
  filter: brightness(0.9);
}

/* Highlighted star (hover cascade or checked) */
.star-label.highlight {
  color: #52B788;
  filter: brightness(1.1);
}

/* Checked star stays green */
.star-rating-input input[type="radio"]:checked + .star-label {
  color: #52B788;
  filter: brightness(1.1);
}

/* Character Counter */
.char-counter {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.4rem;
  text-align: right;
}

/* Submit Button */
.review-submit-btn {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #6B8E71 0%, #8BA887 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.review-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 142, 113, 0.3);
}

.review-submit-btn:active {
  transform: translateY(0);
}

/* Success Message */
.review-submission-success {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(107, 142, 113, 0.1) 0%, rgba(139, 168, 135, 0.08) 100%);
  border-radius: 12px;
  animation: slideInUp 0.4s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Toggle */
.contact-toggle {
  margin-bottom: 1rem;
}

.toggle-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
  letter-spacing: 0.3px;
}

.toggle-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.toggle-btn {
  padding: 0.8rem 1rem;
  border: 2px solid #E8E4DF;
  border-radius: 8px;
  background-color: white;
  color: var(--charcoal);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  border-color: #52B788;
  background-color: #F5F3F0;
}

.toggle-btn.active {
  background-color: #52B788;
  color: white;
  border-color: #52B788;
}

/* Submit Button - The Money Button (Nature-themed) */
.form-submit-btn {
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, #6B8E71 0%, #8BA887 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  position: relative;
  box-shadow: 0 4px 15px rgba(107, 142, 113, 0.3);
  text-transform: uppercase;
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, #D4847A 0%, #E39A8F 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(212, 132, 122, 0.4);
}

.form-submit-btn:active {
  transform: translateY(-1px);
}

/* Order Message */
.order-message {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  font-weight: 500;
}

.order-message.success {
  background-color: #E8F5E9;
  color: #2E7D32;
  border-left: 4px solid #4CAF50;
}

.order-message.error {
  background-color: #FFEBEE;
  color: #C62828;
  border-left: 4px solid #F44336;
}

/* Footer */
footer {
  background-color: var(--charcoal);
  color: var(--cream);
  padding: 3rem 2rem;
  text-align: center;
  font-size: 0.95rem;
}

footer p {
  margin: 0.7rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .hero {
    padding: 5rem 1.5rem;
    min-height: 450px;
  }

  .logo-dynamic {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

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

  .hero-subtitle,
  .hero-description {
    font-size: 1rem;
  }

  .flower {
    font-size: 2rem !important;
    opacity: 0.5;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid,
  .shop-grid,
  .values-list {
    grid-template-columns: 1fr;
  }

  .services,
  .shop,
  .about,
  .contact {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .cta-button {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

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

.message {
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.message-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Customers Section */
.customers {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #fdfefd 0%, #f5f3f0 100%);
  text-align: center;
}

.customers-container {
  max-width: 800px;
  margin: 3rem auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.customer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--sage-green);
  font-family: 'Lora', serif;
}

.stat-label {
  font-size: 1.2rem;
  color: var(--charcoal);
  font-weight: 500;
}

.customers-subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: 2rem;
}

/* Owner/Specialist Section */
.owner-section {
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 0 1rem;
}

.owner-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: linear-gradient(135deg, rgba(107, 142, 113, 0.08) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(107, 142, 113, 0.12);
  border: 1px solid rgba(107, 142, 113, 0.15);
}

.owner-photo-wrapper {
  flex-shrink: 0;
}

.owner-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--sage-green);
  box-shadow: 0 6px 20px rgba(107, 142, 113, 0.25);
}

.owner-info {
  text-align: left;
}

.owner-name {
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  font-family: 'Lora', serif;
}

.owner-role {
  font-size: 1rem;
  color: var(--sage-green);
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.owner-bio {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.owner-bio:last-child {
  margin-bottom: 0;
}

/* Owner Section Mobile */
@media (max-width: 768px) {
  .owner-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  
  .owner-info {
    text-align: center;
  }
  
  .owner-photo {
    width: 150px;
    height: 150px;
  }
  
  .owner-name {
    font-size: 1.4rem;
  }
}

/* Nature Emojis */
.nature-emoji {
  font-size: 2.5rem;
  opacity: 0.5;
  animation: float-nature 4s ease-in-out infinite;
  align-self: center;
}

.nature-emoji-1 {
  animation-delay: 0s;
}

.nature-emoji-2 {
  animation-delay: 1s;
}

@keyframes float-nature {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-15px);
    opacity: 0.8;
  }
}

/* Map Section */
.map {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #F5F3F0 0%, #E8D4CC 100%);
  text-align: center;
}

/* Loyalty Cards */
.loyalty-cards {
  max-width: 1000px;
  margin: 2rem auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.loyalty-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(107, 142, 113, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid var(--sage-green);
}

.loyalty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(107, 142, 113, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.loyalty-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--sage-green);
}

.loyalty-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.map-container {
  max-width: 900px;
  margin: 2rem auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(240, 245, 242, 0.6) 0%, rgba(230, 240, 235, 0.5) 100%);
  animation: float-subtle 3s ease-in-out infinite;
}

@keyframes float-subtle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.map-card {
  position: relative;
  border-radius: 12px;
  padding: 1rem;
  margin: 4rem auto;
  max-width: 800px;
}

.map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.map-info {
  font-size: 1rem;
  color: #666;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer with Parallax */
.footer-parallax {
  position: relative;
  background: var(--charcoal);
  color: white;
  padding: 3.875rem 1.5rem 1.5rem;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/bg-footer.webp') center/cover;
  opacity: 0.28;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--light-green);
}

.footer-section p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.9;
}

.footer-section a:hover {
  color: var(--light-green);
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.2rem 1rem 0.1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .customers-container {
    gap: 2rem;
  }
}

/* ===== SERVICE DETAIL PAGE STYLES ===== */

/* Service Detail Hero */
.service-detail-hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
  color: var(--cream);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 0;
  position: relative;
  background-size: cover;
  background-position: center;
}

/* Service-specific background images */
.service-detail-hero[data-service-id="1"] {
  background-image: url('/images/service-hero-bg-1.jpg');
}

.service-detail-hero[data-service-id="2"] {
  background-image: url('/images/service-hero-bg-3.jpg');
}

.service-detail-hero[data-service-id="3"] {
  background-image: url('/images/service-hero-bg-2.jpg');
}

.service-detail-hero[data-service-id="4"] {
  background-image: url('/images/service-hero-bg-4.jpg');
}

.service-detail-hero[data-service-id="5"] {
  background-image: url('/images/service-hero-bg-5.jpg');
}

/* Dark gradient overlay for better contrast */
.service-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(43, 43, 43, 0.65) 0%, rgba(107, 142, 113, 0.55) 100%);
  z-index: 1;
}

/* Ensure content stays above overlay */
.service-detail-header {
  position: relative;
  z-index: 2;
}

.service-detail-header {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.back-button {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  cursor: pointer;
  align-self: flex-start;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #fff;
  transform: translateX(-4px);
}

.service-detail-title {
  font-size: 2.2rem;
  margin: 0;
  font-family: 'Lora', serif;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.5px;
}

.service-detail-subtitle {
  display: none;
}

/* Service Detail Content */
.service-detail-content {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.service-detail-container {
  display: grid;
  gap: 4rem;
}

.service-description-section {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(107, 142, 113, 0.12) 100%);
  padding: 3rem;
  border-radius: 12px;
  border-left: 5px solid var(--sage-green);
  border-top: 4px solid #D4847A;
  box-shadow: 0 8px 24px rgba(107, 142, 113, 0.12);
}

.service-description-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--charcoal);
  font-family: 'Lora', serif;
  text-shadow: 0 2px 4px rgba(212, 132, 122, 0.1);
}

.description-with-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.description-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  text-align: justify;
}

.service-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(107, 142, 113, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  width: 100%;
  border: 2px solid rgba(212, 132, 122, 0.2);
}

.service-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(212, 132, 122, 0.2);
  border-color: #D4847A;
}

.service-photo-1,
.service-photo-2,
.service-photo-3 {
  width: 100%;
}

/* Desktop Layout: Photos beside text */
@media (min-width: 1024px) {
  .description-with-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2rem;
  }

  .description-text {
    grid-column: 1 / -1;
  }

  .service-photo-1 {
    grid-column: 1;
    grid-row: 2;
  }

  .service-photo-2 {
    grid-column: 2;
    grid-row: 3;
  }

  .service-photo-3 {
    grid-column: 1 / -1;
    grid-row: 5;
  }
}

/* Request Service Button - Creative Pink Design */
/* Unified Gradient Section - Full Width Edge to Edge */
.service-gradient-section {
  width: 100%;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(107, 142, 113, 0.06) 20%, rgba(107, 142, 113, 0.1) 50%, rgba(107, 142, 113, 0.06) 80%, var(--cream) 100%);
  padding: 0;
  margin: 0;
}

.service-cta-area {
  padding: 4rem 2rem 2rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .service-cta-area {
    padding: 2rem 1rem 1rem;
  }
}

.service-features-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

/* Modern Service CTA Section - Bold with Gradient Border */
.service-cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  width: 45%;
  max-width: 550px;
  background: 
    linear-gradient(135deg, #4a6b4f 0%, #6B8E71 50%, #8BA887 100%) padding-box,
    linear-gradient(45deg, #D4849F, #E8A8B8, #E8C4D0, #D4849F) border-box;
  border: 4px solid transparent;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.service-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
  transition: all 0.4s ease;
}

.service-cta-section:hover {
  transform: translateY(-4px) scale(1.02);
  background: 
    linear-gradient(135deg, #3d5a42 0%, #5a7d60 50%, #7a9980 100%) padding-box,
    linear-gradient(45deg, #f5d0dc, #E8A8B8, #D4849F, #E8A8B8) border-box;
}

.service-cta-section:hover::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
}

.service-cta-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.service-cta-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.service-cta-action {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Lora', serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.service-cta-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.service-cta-section:hover .service-cta-hint {
  width: 62px;
  height: 62px;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
}

.service-cta-down-arrow {
  color: #fff;
  animation: ctaArrowBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.15));
}

@keyframes ctaArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 768px) {
  .service-cta-section {
    width: auto;
    max-width: 90%;
    padding: 2rem 1.8rem;
    margin: 2.5rem auto;
    border-radius: 16px;
  }
  
  .service-cta-action {
    font-size: 1.2rem;
  }
  
  .service-cta-hint {
  width: 62px;
  height: 62px;
    width: 55px;
    height: 55px;
  }
  
  .service-cta-down-arrow {
    width: 20px;
    height: 20px;
  }
}

/* Legacy button styles (keeping for compatibility) */
.request-service-btn-legacy {
  display: block;
  margin: 3rem auto 0.75rem;
  padding: 1.3rem 3.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Lora', serif;
  color: var(--charcoal);
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(45deg, #D4849F, #E8A8B8, #E8C4D0) border-box;
  border: 3px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(212, 132, 159, 0.25);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.request-service-btn-legacy:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 40px rgba(212, 132, 159, 0.35);
  background: 
    linear-gradient(#FAFAFA, #FAFAFA) padding-box,
    linear-gradient(45deg, #D4849F, #E8A8B8, #E8C4D0) border-box;
}

.request-service-btn:active {
  transform: translateY(-2px) scale(1.03);
}

/* Feature Cards Section */
.service-features-section {
  margin: 0;
  padding: 0;
}

.features-grid-with-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 0;
  align-items: center;
  grid-auto-flow: dense;
}

/* Row 1 (items 1-2): Normal - Card LEFT, Image RIGHT */
.features-grid-with-images > .feature-card:nth-child(1) {
  grid-column: 1;
}

.features-grid-with-images > .feature-image:nth-child(2) {
  grid-column: 2;
}

/* Row 2 (items 3-4): FLIP - Image LEFT, Card RIGHT */
.features-grid-with-images > .feature-card:nth-child(3) {
  grid-column: 2;
}

.features-grid-with-images > .feature-image:nth-child(4) {
  grid-column: 1;
}

/* Row 3 (items 5-6): Normal - Card LEFT, Image RIGHT */
.features-grid-with-images > .feature-card:nth-child(5) {
  grid-column: 1;
}

.features-grid-with-images > .feature-image:nth-child(6) {
  grid-column: 2;
}

/* Row 4 (items 7-8): FLIP - Image LEFT, Card RIGHT */
.features-grid-with-images > .feature-card:nth-child(7) {
  grid-column: 2;
}

.features-grid-with-images > .feature-image:nth-child(8) {
  grid-column: 1;
}

.feature-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(107, 142, 113, 0.15);
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.feature-image:hover img {
  transform: scale(1.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 0;
}

/* Organic Card Animations */
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes subtleGlow {
  0%, 100% { box-shadow: 0 8px 20px rgba(107, 142, 113, 0.1); }
  50% { box-shadow: 0 8px 28px rgba(107, 142, 113, 0.2); }
}

.feature-card {
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 14px 36px rgba(107, 142, 113, 0.25);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #6B8E71 0%, #8BA887 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(107, 142, 113, 0.35);
  border-color: rgba(255, 255, 255, 0.5);
}

.feature-icon {
  font-size: 3.8rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.5s ease;
  filter: grayscale(100%) brightness(1.2);
  animation: gentleFloat 3s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
  animation: iconPulse 0.6s ease-in-out;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  font-family: 'Lora', serif;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}

/* Placeholder images below text */
.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Gallery Section */
.service-photo-gallery {
  margin: 3rem 0;
}

.service-photo-gallery h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--charcoal);
  font-family: 'Lora', serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(107, 142, 113, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(212, 132, 122, 0.2);
}

/* Mobile: Feature Cards 1 Column */
@media (max-width: 768px) {
  .request-service-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    margin: 3rem auto 0.6rem;
  }

  .request-service-btn:hover {
    transform: translateY(-3px) scale(1.04);
  }

  .service-features-section {
    margin: 0rem 0 1.5rem 0;
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }

  .features-grid,
  .features-grid-with-images {
    grid-template-columns: 1fr;
    gap: 2rem;
    grid-auto-flow: row;
  }

  .features-grid-with-images > * {
    grid-column: 1 !important;
  }

  .feature-card {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }

  .feature-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
  }

  .feature-title {
    font-size: 1.15rem;
  }

  .feature-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }

  .feature-card img {
    height: 160px;
  }

  .feature-card:hover {
    transform: translateY(-12px) scale(1.02);
  }
}

/* Pricing Section */
.service-pricing-section {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
  color: var(--cream);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
}

.service-pricing-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Lora', serif;
}

.price-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
}

.amount {
  font-size: 4rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.price-note {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 1rem;
}

/* Service Detail Form Section */
.service-detail-form {
  padding: 4rem 2rem;
  margin: 2rem auto;
  max-width: 1200px;
}

.service-detail-form .form-container {
  max-width: 600px;
  margin: 0 auto;
}

/* Reviews Section (with gradient background) */
.service-reviews-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 4rem 2rem 12rem 2rem;
  background: linear-gradient(180deg, #F5F3F0 0%, #E8D4CC 100%);
}

.service-reviews-section h2 {
  margin-bottom: 3rem;
  margin-top: 0;
  color: var(--sage-green);
}

/* Reviews Carousel */
.reviews-carousel-wrapper {
  position: relative;
  max-width: 700px;
  margin: 2rem auto 3rem;
  padding: 0 2rem;
}

.reviews-carousel {
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--light-green) 100%);
  position: relative;
  height: 320px;
  box-shadow: 0 8px 30px rgba(107, 142, 113, 0.2);
}

.review-slide {
  flex: 0 0 100%;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
}

.review-slide.active {
  opacity: 1;
  position: relative;
  animation: slideInReview 0.5s ease-out;
}

@keyframes slideInReview {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-content {
  color: var(--cream);
  text-align: center;
  max-width: 100%;
  animation: fadeInContent 0.6s ease-out 0.1s backwards;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
  font-style: italic;
  color: var(--cream);
  font-family: 'Lora', serif;
}

.review-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.review-author-simple h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.review-verified {
  display: none;
}

.review-rating {
  font-size: 1rem;
  letter-spacing: 0.1rem;
}

.review-stars {
  font-size: 1.5rem;
  filter: grayscale(100%) brightness(1.2);
  display: inline-block;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.3);
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: -50px;
}

.carousel-next {
  right: -50px;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(107, 142, 113, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: var(--sage-green);
  transform: scale(1.3);
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  .service-detail-hero {
    padding: 2rem 1.5rem;
    margin-top: 0;
  }

  .service-detail-header {
    padding: 0;
  }

  .service-detail-title {
    font-size: 1.5rem;
    margin: 0;
  }

  .service-detail-subtitle {
    display: none;
  }

  .back-button {
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
    margin-bottom: 1rem;
  }

  /* Description Section - Flexbox already stacks naturally */
  .service-description-section {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--sage-green);
    border-top: 3px solid #D4847A;
  }

  .service-description-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .description-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .service-photo {
    margin: 1.5rem 0;
    max-height: 250px;
  }

  /* Pricing Section */
  .service-pricing-section {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .price-display {
    gap: 0.25rem;
  }

  .currency {
    font-size: 1.5rem;
  }

  .amount {
    font-size: 2.5rem;
  }

  .price-note {
    font-size: 0.85rem;
  }

  /* Form Section */
  .service-detail-form {
    background: transparent;
    padding: 1.5rem;
    margin: 1.5rem auto;
    max-width: 100%;
  }

  .service-detail-form .form-container {
    /* Removed padding: 0; and max-width: 100%; to inherit base styles */
  }

  .modern-form {
    gap: 1.5rem;
  }

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

  .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
    padding: 0.85rem 0.9rem;
  }

  .form-textarea {
    min-height: 80px;
  }

  .toggle-buttons {
    gap: 0.6rem;
  }

  .toggle-btn {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }

  .form-progress {
    height: 3px;
  }

  .form-submit-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  /* Reviews Section */
  .service-reviews-section {
    padding: 0 1.5rem 6rem 1.5rem;
    margin: 2rem auto;
  }

  .service-reviews-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  /* Mobile Carousel */
  .reviews-carousel-wrapper {
    padding: 0 1rem;
    margin: 1rem auto 2rem;
  }

  .reviews-carousel {
    height: 380px;
  }

  .review-slide {
    padding: 1.5rem 1rem;
    height: 380px;
  }

  .review-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .review-author-simple h4 {
    font-size: 0.85rem;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }

  .carousel-indicators {
    gap: 0.35rem;
  }

  .carousel-indicator {
    width: 8px;
    height: 8px;
  }

  /* Mobile Reviews Section */
  .service-reviews-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 3rem 1.5rem 6rem 1.5rem;
  }

  .service-reviews-section h2 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
  }

  /* General Content Padding */
  .service-detail-content {
    padding: 0 1.5rem;
    margin: 2rem auto;
  }
}

/* Newsletter input filled state */
.newsletter-input.filled {
  border-color: #52B788 !important;
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

/* Feature card link styling */
.feature-text a {
  color: #FFE8EE;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.feature-text a:hover {
  color: #52B788;
}

/* Star rating cursor fix */
.star-rating-input label {
  cursor: pointer;
}
