@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Inter:wght@400;500&family=Manrope:wght@400;500&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --primary-purple: #8B7AB8;
  --deep-purple: #6B5B95;
  --soft-lavender: #C5B9D6;
  --sage-green: #9CAF88;
  --warm-beige: #E8DCC4;
  --cream: #FAF7F2;
  --soft-blue: #A8C5DD;
  --accent-teal: #7DB4B5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #4a4a4a;
  line-height: 1.6;
  background-color: var(--cream);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-purple) 0%, var(--deep-purple) 100%);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--deep-purple) 0%, var(--primary-purple) 100%);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  height: clamp(90px, 14vw, 150px);
  max-width: 250px;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(139, 122, 184, 0.2);
}

.logo:hover {
  transform: scale(1.05);
}

.primary-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-left: auto;
  justify-content: flex-end;
  padding: 0.25rem 0;
}

.primary-nav__row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

nav a {
  color: inherit;
  text-decoration: none;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0,0,0,0.04);
  color: #333;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-icon svg {
  width: 22px;
  height: 22px;
}

.nav-icon--labeled {
  width: auto;
  min-height: 46px;
  padding: 0 0.85rem;
  gap: 0.45rem;
  border-radius: 999px;
}

.nav-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: inherit;
  white-space: nowrap;
}

.nav-icon:hover,
.nav-icon:focus-visible {
  background: rgba(156,175,136,0.14);
  color: var(--sage-green);
  outline: none;
}

.nav-icon.active {
  background: rgba(156,175,136,0.18);
  color: var(--deep-sage);
}

.nav-icon:focus-visible {
  box-shadow: 0 0 0 3px rgba(156,175,136,0.18);
}

@media (max-width: 600px) {
  header {
    padding: 0.65rem 0.85rem 0.9rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .logo {
    align-self: center;
    height: 70px;
    max-width: 180px;
  }

  .primary-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: center;
  }

  .primary-nav__row {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
  }

  .nav-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .primary-nav__row--primary .nav-icon {
    width: auto;
    min-height: 38px;
    padding: 0 0.75rem;
    gap: 0.35rem;
    border-radius: 999px;
  }

  .primary-nav__row--primary .nav-label {
    font-size: 0.75rem;
    letter-spacing: 0.06rem;
  }

  .primary-nav__row--secondary .nav-icon {
    width: 40px;
    height: 40px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.social-icons {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: 0.5rem;
}

@media (min-width: 1200px) {
  .social-icons {
    gap: 0.75rem;
    margin-left: 1rem;
  }
}

.social-icons a {
  color: #333;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--sage-green);
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

footer .social-icons {
  margin-top: 1rem;
  justify-content: center;
}

footer .social-icons svg {
  width: 20px;
  height: 20px;
}

.hero {
  min-height: 90vh;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: filter 0.6s ease-in-out;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    height: 70vh;
  }
}

.hero.is-transitioning {
  filter: brightness(0.82) saturate(1.05);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s ease, transform 1s ease;
  will-change: opacity, transform;
  pointer-events: none;
  z-index: 0;
}

.hero__background.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  animation: fadeInUp 1s ease-out;
  transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.215,0.61,0.355,1);
}

.hero-content.is-transitioning {
  opacity: 0;
  transform: translateY(12px);
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0,0,0,0.45);
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  max-width: 640px;
}

.hero-links {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
}

.hero-links a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.55);
}

.hero-links a:hover,
.hero-links a:focus {
  text-decoration-color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--deep-purple) 100%);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(139, 122, 184, 0.3);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  background: var(--deep-sage);
}

@media (hover: none) {
  .btn:hover {
    background: var(--sage-green);
  }
  .btn:active {
    background: var(--deep-sage);
    transform: scale(0.98);
  }
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: var(--primary-purple);
  font-size: 2.5rem;
  text-transform: capitalize;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--soft-lavender);
  display: inline-block;
  letter-spacing: 0.5px;
}

#services,
#projects,
#contact,
#testimonials {
  padding: 4rem 2rem;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
  margin-top: 2rem;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(139, 122, 184, 0.15);
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(139, 122, 184, 0.25);
  border-color: var(--soft-lavender);
}

@media (hover: none) {
  .service-card:hover {
    transform: none;
  }
}

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

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  margin: 1rem 0 0.5rem;
}

.service-card p {
  padding: 0 1rem 1.5rem;
}

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

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 2rem auto;
  width: 100%;
}

input,
textarea {
  margin: 0.5rem 0;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

#contact {
  position: relative;
  color: #fff;
  background-image: url('assets/soothing-fountain.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 400px;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
}

@media (max-width: 768px) {
  #contact {
    min-height: auto;
  }
}

#contact::before,
.contact-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 122, 184, 0.7) 0%, rgba(107, 91, 149, 0.8) 100%);
  z-index: 0;
  pointer-events: none;
}

.contact-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.6rem);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  color: #141820;
  max-width: 820px;
  margin: 2rem auto;
  padding: clamp(1.35rem, 3vw, 2.1rem);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 28px 48px rgba(15,23,42,0.14);
}

.contact-card .avatar {
  width: clamp(150px, 28vw, 220px);
  height: clamp(150px, 28vw, 220px);
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 12px;
  border: 4px solid rgba(255,255,255,0.95);
  box-sizing: border-box;
  display: block;
  box-shadow: 0 20px 40px rgba(15,23,42,0.25);
  transition: transform 0.3s ease;
}

.contact-card .avatar:hover {
  transform: scale(1.05);
}

.contact-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.6vw, 1.2rem);
  align-items: center;
  text-align: center;
}

.contact-text {
  display: grid;
  gap: 0.35rem;
  text-align: center;
}

.contact-info h3 {
  margin: 0 0 0.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
}

.role {
  color: rgba(17,24,39,0.65);
  margin-bottom: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.contact-line {
  margin: 0.25rem 0;
}

.contact-actions {
  margin-top: 0;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-actions .btn {
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-size: 0.92rem;
  box-shadow: 0 16px 28px rgba(156,175,136,0.22);
  background: linear-gradient(135deg, var(--sage-green), var(--deep-sage));
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-actions .btn:hover,
.contact-actions .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(156,175,136,0.28);
}

.contact-actions .btn:last-child {
  background: rgba(255,255,255,0.92);
  color: var(--sage-green);
  border: 1px solid rgba(156,175,136,0.4);
  box-shadow: none;
}

.contact-actions .btn:last-child:hover,
.contact-actions .btn:last-child:focus-visible {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 24px rgba(15,23,42,0.12);
}

@media (min-width: 720px) {
  .contact-card {
    flex-direction: column;
    align-items: center;
    gap: clamp(0.85rem, 2vw, 1.6rem);
    padding: clamp(1.35rem, 3vw, 2.1rem);
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.8rem, 1.6vw, 1.2rem);
    text-align: center;
  }

  .contact-text {
    text-align: center;
  }

  .contact-actions {
    justify-content: center;
    gap: 0.65rem;
  }
}

#contact .section-title {
  display: inline-block;
  background: var(--sage-green);
  color: #fff;
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  font-size: 2.2rem;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 3;
  border-bottom: none;
}

footer {
  background: var(--warm-beige);
  color: #4a4a4a;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
  width: 100%;
  box-sizing: border-box;
}

.footer-logo {
  height: clamp(70px, 12vw, 100px);
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 280px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials {
  overflow: hidden;
  padding: 2rem 1rem;
  background: linear-gradient(180deg, #fff, #fbfbfb);
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  animation: scroll-left 24s linear infinite;
}

.testimony-visible {
  display: none;
}

.testimonial {
  min-width: 280px;
  max-width: 380px;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial.expanded {
  justify-content: flex-start;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-top: auto;
  justify-content: center;
}

.stars svg {
  width: 20px;
  height: 20px;
}

.stars svg path {
  fill: var(--soft-terracotta) !important;
}

.testimonial .quote {
  font-style: italic;
  margin-bottom: 0.6rem;
}

.testimonial .meta {
  color: #666;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

@media (max-width: 720px) {
  .testimonials-track {
    animation-name: scroll-left;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    overflow-x: hidden;
  }

  .testimonial {
    min-width: 80%;
    flex: 0 0 auto;
  }
}

.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 60;
  min-width: 300px;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item.is-open .dropdown {
  display: block;
}

.nav-item.is-open .nav-icon {
  background: rgba(229,9,20,0.18);
  color: var(--brand-red);
}

.served-panel {
  position: relative;
  border-radius: 16px;
  padding: 1.25rem 1.4rem 1.35rem;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 22px 44px rgba(12,14,31,0.16);
  border: 1px solid rgba(229,9,20,0.08);
  backdrop-filter: blur(12px);
  display: grid;
  gap: 0.8rem;
}

.served-panel h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: #111;
}

.served-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.served-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: rgba(229,9,20,0.05);
  color: #171717;
  font-size: 0.93rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.served-list li:hover {
  background: rgba(229,9,20,0.1);
  transform: translateX(2px);
}

.pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--brand-red);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .nav-item .dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(320px, calc(100vw - 2rem));
    min-width: 0;
  }

  .served-panel {
    padding: 1.1rem 1.2rem 1.2rem;
  }
}

.hero .btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

#work-showcase .section-title {
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  cursor: pointer;
  margin: 0;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.gallery-card__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.6rem 1.4rem 1.35rem;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.72) 70%, rgba(0,0,0,0.88) 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02rem;
  line-height: 1.35;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  text-transform: none;
}

.gallery-card:hover .gallery-card__caption {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.78) 68%, rgba(0,0,0,0.94) 100%);
}

@media (max-width: 900px) {
  header {
    gap: 0.75rem;
    padding: 0.65rem 1rem;
  }
}

@media (max-width: 1200px) {
  .pricing-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .slide-image {
    min-height: 280px;
    max-height: 320px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .gallery-card img {
    height: 280px;
  }

  .gallery-card__caption {
    padding: 2.1rem 1.2rem 1.15rem;
    font-size: 0.98rem;
  }

  .showcase-header h1 {
    font-size: 2rem;
  }

  .slideshow-nav {
    gap: 0.4rem;
    padding: 0 0.5rem;
  }

  .slideshow-nav__btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .slideshow-controls {
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .slideshow-control {
    width: 44px;
    height: 44px;
  }

  .pricing-slideshow {
    border-radius: 16px;
    margin: 0 0.5rem;
  }

  .slide-image {
    min-height: 220px;
    max-height: 250px;
  }

  .price-card {
    padding: 1.5rem;
  }

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

  .slide-popular-badge {
    top: 1rem;
    right: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .price-card__features li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pricing-main {
    padding: 2rem 0.5rem 3rem;
  }

  .slideshow-nav {
    gap: 0.3rem;
    padding: 0 0.25rem;
  }

  .slideshow-nav__btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .slideshow-controls {
    gap: 0.75rem;
    padding: 0 0.25rem;
    margin-bottom: 1.5rem;
  }

  .slideshow-control {
    width: 40px;
    height: 40px;
  }

  .pricing-slideshow {
    border-radius: 12px;
    margin: 0;
  }

  .slide-image {
    min-height: 180px;
    max-height: 200px;
  }

  .slide-popular-badge {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }

  .price-card {
    padding: 1.25rem;
  }

  .price-card__header {
    margin-bottom: 1rem;
  }

  .price-card__ribbon {
    right: 1rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
  }

  .price-card__features li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
  }
}

.showcase-hero {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.6rem) 1.6rem;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 0%, rgba(156, 175, 136, 0) 52%),
              linear-gradient(130deg, var(--deep-sage) 0%, var(--sage-green) 55%, var(--soft-terracotta) 100%);
  color: #fff;
  overflow: hidden;
}

@media (min-width: 992px) {
  #work-showcase {
    margin-bottom: 0;
  }

  #gallery-section {
    padding: 0 1.6rem 4.5rem;
  }

  .showcase-description {
    padding: clamp(0.6rem, 1.6vw, 1rem) 1.6rem 0;
  }

  .showcase-description p {
    margin-left: auto;
    margin-right: auto;
  }
}

.showcase-hero::before {
  content: '';
  position: absolute;
  inset: -60% -40% 40% -40%;
  background: linear-gradient(150deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.02) 70%);
  transform: rotate(-6deg);
  opacity: 0.35;
}

.showcase-hero::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  bottom: -180px;
  right: -60px;
  background: radial-gradient(circle, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 70%);
  filter: blur(0.5px);
}

.showcase-header {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  text-align: left;
}

.showcase-header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin: 0;
  background: linear-gradient(90deg, #ffffff 0%, var(--cream) 45%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.showcase-description {
  padding: clamp(0.9rem, 2.6vw, 1.6rem) 1.6rem 0;
  background: #fff;
}

.showcase-description p {
  margin: 0;
  max-width: 780px;
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  line-height: 1.55;
  color: #1f1f1f;
  font-family: 'Manrope', 'Inter', sans-serif;
}

.showcase-description a {
  color: var(--deep-sage);
  text-decoration: none;
  font-weight: 600;
}

.showcase-description a:hover,
.showcase-description a:focus-visible {
  text-decoration: underline;
}

#gallery-section {
  padding: clamp(2.75rem, 6vw, 4.25rem) 1.6rem 4.5rem;
}

/* NEW MODERN PRICING PAGE DESIGN */

/* Pricing Hero Section */
.pricing-hero {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 8vw, 4rem) clamp(1rem, 4vw, 2rem);
  overflow: hidden;
  color: #fff;
}

@media (max-width: 768px) {
  .pricing-hero {
    min-height: 50vh;
  }
}

.pricing-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 155, 118, 0.92) 0%, rgba(156, 175, 136, 0.88) 50%, rgba(200, 159, 145, 0.92) 100%);
  z-index: 1;
}

.pricing-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.pricing-hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.pricing-hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* Duration Toggle */
.duration-toggle {
  display: inline-flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.duration-toggle__btn {
  padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1.25rem, 4vw, 2rem);
  border: none;
  background: transparent;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1rem);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  white-space: nowrap;
}

.duration-toggle__btn.active {
  background: #fff;
  color: var(--deep-sage);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.duration-toggle__btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
}

@media (hover: none) {
  .duration-toggle__btn:hover:not(.active) {
    background: transparent;
  }
  .duration-toggle__btn:active:not(.active) {
    background: rgba(255, 255, 255, 0.15);
  }
}

/* Floating Decorative Elements */
.hero-decorative {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}

.floating-element--1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.floating-element--2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: 10%;
}

.floating-element--3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: -50px;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Main Pricing Section */
.pricing-main {
  padding: 3rem 2rem 5rem;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

/* Slideshow Navigation */
.slideshow-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.slideshow-nav__btn {
  padding: 0.75rem 1.5rem;
  background: rgba(156, 175, 136, 0.1);
  border: 2px solid transparent;
  border-radius: 50px;
  color: var(--deep-sage);
  font-weight: 600;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.slideshow-nav__btn:hover {
  background: rgba(156, 175, 136, 0.2);
  transform: translateY(-2px);
}

@media (hover: none) {
  .slideshow-nav__btn:hover {
    transform: none;
  }
}

.slideshow-nav__btn.active {
  background: var(--sage-green);
  color: #fff;
  border-color: var(--deep-sage);
  box-shadow: 0 4px 12px rgba(122, 155, 118, 0.3);
}

/* Slideshow Controls */
.slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.slideshow-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sage-green);
  color: var(--sage-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.slideshow-control:hover {
  background: var(--sage-green);
  color: #fff;
  transform: scale(1.1);
}

@media (hover: none) {
  .slideshow-control:hover {
    transform: none;
  }
  .slideshow-control:active {
    background: var(--sage-green);
    color: #fff;
  }
}

.slideshow-progress {
  flex: 1;
  height: 6px;
  background: rgba(156, 175, 136, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.slideshow-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--sage-green), var(--deep-sage));
  width: 0%;
  transition: width 8s linear;
}

/* Slideshow Container */
.pricing-slideshow {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: #fff;
}

/* Pricing Slides */
.pricing-slide {
  display: none;
  grid-template-columns: 1fr;
  min-height: 500px;
  background: #fff;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pricing-slide.active {
  display: grid;
  opacity: 1;
  transform: translateX(0);
  animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide Image */
.slide-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  max-height: 350px;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 155, 118, 0.5) 0%, rgba(156, 175, 136, 0.3) 100%);
}

.slide-popular-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--sage-green);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

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

/* Slide Content */
.slide-content {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.slide-header {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.slide-badge {
  display: inline-block;
  background: rgba(156, 175, 136, 0.15);
  color: var(--deep-sage);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--deep-sage);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.slide-description {
  color: #666;
  line-height: 1.7;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  max-width: 800px;
  margin: 0 auto;
}

/* Slide Pricing Grid */
.slide-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 1400px) {
  .slide-pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {
  .slide-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

/* Price Cards */
.price-card {
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
  border: 2px solid var(--warm-beige);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--sage-green);
}

@media (hover: none) {
  .price-card:hover {
    transform: none;
  }
}

.price-card--popular {
  border: 2px solid var(--sage-green);
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--deep-sage) 100%);
  color: #fff;
  transform: scale(1.02);
}

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

.price-card--popular .price-card__label,
.price-card--popular .price-card__duration,
.price-card--popular .price-card__amount,
.price-card--popular .price-card__features {
  color: #fff;
}

.price-card__ribbon {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--soft-terracotta);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.price-card__header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(122, 155, 118, 0.2);
}

.price-card--popular .price-card__header {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.price-card__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--deep-sage);
  margin-bottom: 0.25rem;
}

.price-card__duration {
  display: block;
  font-size: 0.95rem;
  color: #666;
}

.price-card__amount {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--deep-sage);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.price-card__save {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  color: var(--soft-terracotta);
  font-weight: 600;
  background: rgba(200, 159, 145, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.price-card--popular .price-card__save {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.price-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card__features li {
  padding: 0.5rem 0;
  color: #555;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card__features li:last-child {
  border-bottom: none;
}

/* Slide CTA */
.slide-cta {
  margin-top: clamp(1.5rem, 4vw, 2rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  text-align: center;
}

.btn-slide-book {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: clamp(1rem, 3vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--sage-green), var(--deep-sage));
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(122, 155, 118, 0.3);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-slide-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(122, 155, 118, 0.4);
}

@media (hover: none) {
  .btn-slide-book:hover {
    transform: none;
  }
  .btn-slide-book:active {
    transform: scale(0.98);
  }
}

/* Service Pricing Cards */
.service-pricing {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(30px);
}

.service-pricing.revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-pricing:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--sage-green);
}

.service-pricing--featured {
  border: 2px solid var(--sage-green);
  background: linear-gradient(135deg, #fff 0%, rgba(156, 175, 136, 0.05) 100%);
  position: relative;
}

.service-pricing--wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--soft-terracotta) 0%, var(--warm-beige) 100%);
  color: #fff;
}

.service-pricing--wide .service-pricing__title,
.service-pricing--wide .service-pricing__description,
.service-pricing--wide .service-pricing__features {
  color: #fff;
}

.service-pricing--wide .service-pricing__icon svg {
  color: #fff;
}

/* Featured Flag */
.featured-flag {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--sage-green);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(122, 155, 118, 0.3);
}

.featured-flag svg {
  width: 16px;
  height: 16px;
}

/* Service Image */
.service-pricing__image {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-pricing__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-pricing:hover .service-pricing__image {
  transform: scale(1.05);
}

.service-pricing:hover .service-pricing__image img {
  transform: scale(1.1);
}

/* Service Content */
.service-pricing__content {
  min-width: 0;
}

.service-pricing__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  color: var(--deep-sage);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.service-pricing__description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.service-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-pricing__features li {
  font-size: 0.95rem;
  color: #666;
  padding: 0.4rem 0.9rem;
  background: rgba(156, 175, 136, 0.1);
  border-radius: 20px;
  font-weight: 500;
}

/* Price Box */
.service-pricing__price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}

.price-display {
  text-align: right;
}

.price-display__amount {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--deep-sage);
  line-height: 1;
  transition: all 0.3s ease;
}

.service-pricing--wide .price-display__amount {
  color: #fff;
}

.price-display__duration {
  display: block;
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.25rem;
  transition: all 0.3s ease;
}

.service-pricing--wide .price-display__duration {
  color: rgba(255, 255, 255, 0.8);
}

/* Service Button */
.service-pricing__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--sage-green);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(122, 155, 118, 0.3);
}

.service-pricing__btn:hover {
  background: var(--deep-sage);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(122, 155, 118, 0.4);
}

.service-pricing--featured .service-pricing__btn {
  background: var(--deep-sage);
}

.service-pricing--wide .service-pricing__btn {
  background: #fff;
  color: var(--soft-terracotta);
}

.service-pricing--wide .service-pricing__btn:hover {
  background: var(--cream);
}

/* Special Packages Section */
.special-packages {
  padding: 5rem 2rem;
  background: var(--deep-sage);
  color: #fff;
}

.special-packages__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.special-packages__header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.special-packages__header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

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

.package-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.package-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.package-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.package-card--highlight {
  background: rgba(255, 255, 255, 0.95);
  color: var(--deep-sage);
  border-color: var(--warm-beige);
}

.package-card--highlight:hover {
  background: #fff;
}

.package-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.package-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.package-card__savings {
  display: inline-block;
  background: var(--soft-terracotta);
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.package-card--highlight .package-card__savings {
  background: var(--sage-green);
}

.package-card p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.package-card--highlight p {
  color: #555;
}

.package-card__price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}

/* Pricing Footer */
.pricing-footer {
  padding: 5rem 2rem;
  background: #fff;
}

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

.footer-section h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--deep-sage);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--warm-beige);
  line-height: 1.6;
  color: #555;
}

.footer-section li:last-child {
  border-bottom: none;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--sage-green);
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(122, 155, 118, 0.3);
}

.btn-cta:hover {
  background: var(--deep-sage);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 155, 118, 0.4);
}

.btn-cta--outline {
  background: transparent;
  border: 2px solid var(--sage-green);
  color: var(--sage-green);
  box-shadow: none;
}

.btn-cta--outline:hover {
  background: var(--sage-green);
  color: #fff;
}

/* Responsive Styles for Pricing Page */
@media (max-width: 900px) {
  .service-pricing {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-pricing__image {
    width: 100%;
    height: 200px;
    margin: 0 auto;
  }
  
  .service-pricing__content {
    text-align: center;
  }
  
  .service-pricing__price-box {
    align-items: center;
  }
  
  .price-display {
    text-align: center;
  }
  
  .price-display__amount {
    font-size: 2.5rem;
  }
  
  .service-pricing__features {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .showcase-header {
    text-align: center;
  }

  .showcase-header p {
    margin: 0 auto;
  }

  .showcase-hero {
    padding: 2.4rem 1.4rem;
  }

  #gallery-section {
    padding: 2.6rem 1.25rem 3.5rem;
  }
  
  .pricing-hero {
    min-height: 50vh;
    padding: 3rem 1.5rem;
  }
  
  .duration-toggle {
    flex-direction: column;
    width: 100%;
  }
  
  .duration-toggle__btn {
    width: 100%;
  }
  
  .service-pricing {
    padding: 2rem 1.5rem;
  }
  
  .service-pricing__title {
    font-size: 1.5rem;
  }
  
  .service-pricing__description {
    font-size: 1rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .floating-element {
    display: none;
  }
}
