:root {
  --coral: #e07a5f;
  --coral-dark: #c96a52;
  --sage: #81b29a;
  --sage-light: #e8f3ed;
  --cream: #fdf6ec;
  --warm: #f4e4c1;
  --dark: #3d405b;
  --text: #5c5f77;
  --white: #ffffff;
  --shadow: 0 25px 60px rgba(224, 122, 95, 0.15);
  --radius: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--cream);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.15;
}

/* Navbar */
.navbar {
  padding: 1.25rem 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(253, 246, 236, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(61, 64, 91, 0.06);
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark) !important;
  letter-spacing: -0.5px;
}

.navbar-brand em {
  font-style: italic;
  color: var(--coral);
}

.nav-link {
  font-weight: 500;
  color: var(--text) !important;
  margin: 0 0.75rem;
  font-size: 0.95rem;
}

.btn-coral {
  background: var(--coral);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.35s ease;
  box-shadow: 0 8px 30px rgba(224, 122, 95, 0.35);
}

.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 14px 40px rgba(224, 122, 95, 0.4);
}

.btn-sage-outline {
  border: 2px solid var(--sage);
  color: var(--sage);
  background: transparent;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.35s ease;
}

.btn-sage-outline:hover {
  background: var(--sage);
  color: white;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}

.hero-bg-shape.one {
  width: 500px;
  height: 500px;
  background: var(--warm);
  top: -10%;
  right: -5%;
}

.hero-bg-shape.two {
  width: 400px;
  height: 400px;
  background: var(--sage-light);
  bottom: 10%;
  left: -10%;
}

.hero-content { position: relative; z-index: 1; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.hero-pill .dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--coral);
}

.hero-desc {
  font-size: 1.2rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.hero-visual {
  position: relative;
}

.hero-main-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 200px 200px 24px 24px;
  box-shadow: var(--shadow);
}

.hero-side-img {
  position: absolute;
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border: 4px solid white;
}

.hero-side-img.left {
  bottom: 10%;
  left: -8%;
}

.hero-side-img.right {
  top: 15%;
  right: -5%;
}

.hero-rating {
  position: absolute;
  bottom: 5%;
  right: 10%;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.hero-rating .stars { color: #fbbf24; }

/* Marquee */
.marquee-section {
  background: var(--dark);
  color: white;
  padding: 1.25rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  opacity: 0.85;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Sections */
section { padding: 110px 0; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--coral);
  margin-bottom: 1rem;
}

.section-heading {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
}

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

.service-item {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--warm);
}

.service-item .icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--sage-light), var(--warm));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* About */
.about { background: white; }

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-img-grid img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.about-img-grid img:first-child {
  grid-row: span 2;
  height: 100%;
  min-height: 450px;
}

.about-img-grid img:last-child { height: 200px; }

.about-list {
  list-style: none;
  margin-top: 2rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--sage-light);
}

.about-list li i {
  color: var(--coral);
  font-size: 1.1rem;
}

/* Gallery */
.gallery { background: var(--sage-light); }

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 64, 91, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  color: white;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Testimonials */
.testimonial-slider {
  background: white;
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--coral);
}

/* Pricing */
.pricing { background: white; }

.price-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
  border: 2px solid transparent;
}

.price-card:hover,
.price-card.popular {
  border-color: var(--coral);
  background: white;
  box-shadow: var(--shadow);
}

.price-card.popular { transform: scale(1.04); }

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--coral);
}

.price-amount small {
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
}

.price-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.price-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-features li i { color: var(--sage); }

/* Blog preview */
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body { padding: 1.75rem; }

.blog-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sage);
}

.blog-card h4 {
  font-size: 1.35rem;
  margin: 0.75rem 0;
}

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: var(--radius);
  padding: 5rem 3rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -50px;
}

.cta-banner h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

/* Contact */
.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-floating-custom .form-control {
  border: 2px solid var(--sage-light);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  background: var(--cream);
}

.form-floating-custom .form-control:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.12);
  background: white;
}

/* Footer */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 5rem 0 2rem;
}

footer h5 {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover { color: var(--coral); }

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: white;
}

.footer-brand em { color: var(--coral); font-style: italic; }

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-side-img { display: none; }
  .hero-main-img { height: 450px; border-radius: 24px; }
  .price-card.popular { transform: none; }
  .about-img-grid { grid-template-columns: 1fr; }
  .about-img-grid img:first-child { min-height: 300px; }
}

@media (max-width: 576px) {
  section { padding: 80px 0; }
  .cta-banner { padding: 3rem 1.5rem; }
}
