/* CSS Design System for Annies Florist */

/* --- Custom Variables & Tokens --- */
:root {
  /* Elegant Soft Palette */
  --clr-rose: hsl(356, 52%, 67%);      /* #d68286 */
  --clr-rose-dark: fill;
  --clr-rose-hover: hsl(356, 52%, 60%); /* slightly darker rose */
  --clr-rose-light: hsl(356, 52%, 93%);
  --clr-charcoal: fill;
  --clr-charcoal-light: hsl(0, 0%, 25%);
  --clr-bg-cream: hsl(30, 20%, 98%);    /* #fcfbfa */
  --clr-white: hsl(0, 0%, 100%);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-script: 'Alex Brush', cursive;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  
  /* Spacing */
  --nav-height: 90px;
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--clr-bg-cream);
  color: #2d2d2d;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Container Layout --- */
.nav-container,
.hero-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4%;
}

/* --- Header / Navigation --- */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  display: flex;
  align-items: center;
  background-color: transparent;
  transition: var(--transition-smooth);
}

/* Navbar on scroll (if needed later, class added via JS) */
.navbar.scrolled {
  background-color: rgba(252, 251, 250, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  height: 80px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: block;
  z-index: 101;
}

.logo-img {
  height: 120px;
  width: auto;
  transition: var(--transition-smooth);
  transform: translateY(25px);
}

.navbar.scrolled .logo-img {
  height: 104px;
  transform: translateY(16px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333333;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-item:hover {
  color: var(--clr-rose);
}

/* Underline style matching the active state in design */
.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--clr-rose);
  transition: var(--transition-smooth);
}

.nav-item.active {
  color: var(--clr-rose);
}

.nav-item.active::after {
  width: 18px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 101;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--clr-rose);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(214, 130, 134, 0.25);
  font-size: 0.9rem;
  padding: 14px 32px;
}

.btn-primary:hover {
  background-color: var(--clr-rose-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 130, 134, 0.35);
}

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

.btn-secondary {
  background-color: var(--clr-rose);
  color: var(--clr-white);
  padding: 10px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(214, 130, 134, 0.15);
}

.btn-secondary:hover {
  background-color: var(--clr-rose-hover);
  transform: scale(1.02);
}

.icon, .icon-flower {
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.btn:hover .icon,
.btn:hover .icon-flower {
  transform: rotate(15deg);
}

/* --- Hamburger Mobile Menu Icon --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 0;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
  transition: var(--transition-smooth);
  transform-origin: left center;
}

/* --- Hero Section Layout --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Background image on the right, smooth white fade on left */
.hero-bg-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%; /* covers right side */
  height: 100%;
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  transition: transform 8s ease-out;
}

/* Subtle scaling animation for photo on load */
.hero-section.loaded .hero-bg-image {
  transform: scale(1.03);
}

/* Custom premium gradient overlay to transition between image and off-white background */
.hero-overlay-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--clr-bg-cream) 0%,
    var(--clr-bg-cream) 35%,
    rgba(252, 251, 250, 0.98) 42%,
    rgba(252, 251, 250, 0.85) 48%,
    rgba(252, 251, 250, 0.4) 58%,
    rgba(252, 251, 250, 0) 75%
  );
  pointer-events: none;
}

/* Content Container positioning */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  pointer-events: none; /* Let clicks pass through if background is active, but re-enable for child content */
}

.hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: auto; /* re-enable interactions */
}

/* --- Hero Content Elements --- */
.greeting-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--clr-rose);
  margin-bottom: 0.5rem;
}

.main-title {
  font-family: var(--font-serif);
  font-size: 5.6rem;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

/* Decorative Heart Divider Style */
.title-divider-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 420px;
  margin-bottom: 2.2rem;
  gap: 12px;
}

.divider-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--clr-rose);
  opacity: 0.5;
}

.divider-heart {
  color: var(--clr-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s infinite ease-in-out;
}

.heart-icon {
  width: 13px;
  height: 13px;
}

.description-text {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  font-weight: 300;
  line-height: 1.45;
  color: #444444;
  margin-bottom: 2.5rem;
}

.cta-wrap {
  margin-top: 0.5rem;
}

/* --- Entrance & Micro Animations --- */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Loading animations state */
.fade-in-element {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-section.loaded .greeting-text.fade-in-element {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-section.loaded .main-title.fade-in-element {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.hero-section.loaded .title-divider-wrap.fade-in-element {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.hero-section.loaded .description-text.fade-in-element {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.hero-section.loaded .cta-wrap.fade-in-element {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

/* --- Mobile Menu Overlay styling --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-bg-cream);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-item {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  font-family: var(--font-serif);
  transition: var(--transition-fast);
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: var(--clr-rose);
}

.mobile-btn {
  background-color: var(--clr-rose);
  color: var(--clr-white);
  padding: 10px 32px;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 1rem;
}

/* Hamburger transition when active */
.menu-toggle.active .hamburger-bar:nth-child(1) {
  transform: rotate(45deg) translate(2px, 1px);
}

.menu-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active .hamburger-bar:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -1px);
}


/* --- Responsive Breakpoints --- */

@media (max-width: 1200px) {
  .main-title {
    font-size: 4.8rem;
  }
  .description-text {
    font-size: 1.7rem;
  }
}

@media (max-width: 992px) {
  /* Show Mobile Menu Hamburger */
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    display: none;
  }
  .nav-actions .btn {
    display: none; /* Hide primary nav button on tablet/mobile */
  }
  
  .hero-section {
    min-height: 70vh;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  /* Adjust split layout for smaller viewports */
  .hero-bg-image {
    width: 100%; /* Cover background entirely */
    opacity: 0.85; /* Make background image vibrant and visible */
    background-position: center center;
  }
  
  .hero-overlay-filter {
    background: linear-gradient(
      to bottom,
      rgba(252, 251, 250, 0.35) 0%,
      rgba(252, 251, 250, 0.65) 100%
    ); /* Softened transparent filter to prevent whitewash */
  }
  
  .hero-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }
  
  .hero-content .btn-primary {
    align-self: center;
  }
  
  .title-divider-wrap {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }
  .logo-img {
    height: 96px;
    transform: translateY(18px);
  }
  .main-title {
    font-size: 3.5rem;
  }
  .greeting-text {
    font-size: 1.4rem;
  }
  .description-text {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2.8rem;
  }
  .description-text {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   About Us Section Styles
   ========================================================================== */

.about-section {
  padding: 120px 0;
  background-color: var(--clr-bg-cream);
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6%;
}

.about-image-wrap {
  position: relative;
  width: 100%;
}

/* Elegant shadow and soft rose border around the shop storefront photo */
.about-image-frame {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(214, 130, 134, 0.12);
  border: 1px solid rgba(214, 130, 134, 0.15);
  background-color: #fff;
  line-height: 0;
}

.about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image-wrap:hover .about-img {
  transform: scale(1.04);
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-subtitle {
  font-family: var(--font-script);
  font-size: 3.8rem;
  color: var(--clr-rose);
  margin-bottom: -10px;
  line-height: 1;
}

.about-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

/* About Divider */
.about-divider-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 380px;
  margin-bottom: 2rem;
  gap: 12px;
}

.about-divider-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--clr-rose);
  opacity: 0.4;
}

.about-divider-heart {
  color: var(--clr-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s infinite ease-in-out;
}

.about-heart-icon {
  width: 12px;
  height: 12px;
}

.about-description {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #555555;
  letter-spacing: 0.01em;
  max-width: 540px;
}

/* ==========================================================================
   Services Section Styles
   ========================================================================== */

.services-section {
  padding: 120px 0;
  background-color: var(--clr-bg-cream);
  position: relative;
}

.services-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6%;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-subtitle {
  font-family: var(--font-script);
  font-size: 3.8rem;
  color: var(--clr-rose);
  line-height: 1;
  margin-bottom: -5px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.services-subtitle::before,
.services-subtitle::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--clr-rose);
  opacity: 0.5;
  vertical-align: middle;
}

.services-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.services-description {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #555555;
  max-width: 680px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card Styling */
.service-card {
  background-color: var(--clr-white);
  border-radius: 16px;
  border: 1px solid rgba(214, 130, 134, 0.12);
  box-shadow: 0 10px 30px rgba(214, 130, 134, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 10 / 11;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-icon-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background-color: var(--clr-rose);
  border: 4px solid var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  box-shadow: 0 4px 12px rgba(214, 130, 134, 0.25);
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.3s ease;
}

.service-card-content {
  position: relative;
  padding: 42px 24px 30px 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: #1e1e1e;
  margin-bottom: 12px;
}

.service-card-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: #555555;
}

/* Hover effects */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(214, 130, 134, 0.12);
  border-color: rgba(214, 130, 134, 0.25);
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

.service-card:hover .service-icon-badge {
  transform: translate(-50%, -50%) scale(1.1) rotate(10deg);
  background-color: var(--clr-rose-hover);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */

.scroll-reveal {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animation active states */
.scroll-reveal.revealed {
  opacity: 1;
}

.scroll-reveal.revealed .reveal-left {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal.revealed .reveal-right {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal.revealed .reveal-up {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }
.delay-5 { transition-delay: 0.7s; }

/* ==========================================================================
   Why Choose Us Section Styles
   ========================================================================== */

.why-section {
  padding: 120px 0;
  background-color: var(--clr-white);
  border-top: 1px solid rgba(214, 130, 134, 0.08);
  position: relative;
}

.why-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6%;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.why-divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  gap: 12px;
}

.why-divider-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--clr-rose);
  opacity: 0.4;
}

.why-divider-heart {
  color: var(--clr-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s infinite ease-in-out;
}

.why-heart-icon {
  width: 12px;
  height: 12px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.why-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-item:hover {
  transform: translateY(-5px);
}

.why-icon-wrap {
  color: var(--clr-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 0.3s ease;
}

.why-item:hover .why-icon-wrap {
  transform: scale(1.15);
  color: var(--clr-rose-hover);
}

.why-item-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-item-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.65;
  color: #666666;
  max-width: 240px;
}

/* ==========================================================================
   Gallery Section Styles
   ========================================================================== */

.gallery-section {
  padding: 120px 0;
  background-color: var(--clr-bg-cream);
  position: relative;
}

.gallery-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6%;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-subtitle {
  font-family: var(--font-script);
  font-size: 3.8rem;
  color: var(--clr-rose);
  line-height: 1;
  margin-bottom: -5px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.gallery-subtitle::before,
.gallery-subtitle::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--clr-rose);
  opacity: 0.5;
  vertical-align: middle;
}

.gallery-divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  gap: 12px;
}

.gallery-divider-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--clr-rose);
  opacity: 0.4;
}

.gallery-divider-heart {
  color: var(--clr-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s infinite ease-in-out;
}

.gallery-heart-icon {
  width: 12px;
  height: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  width: 100%;
}

.gallery-image-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(214, 130, 134, 0.04);
  border: 1px solid rgba(214, 130, 134, 0.1);
  background-color: var(--clr-white);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

.gallery-btn {
  padding: 14px 36px;
  font-size: 0.9rem;
}

/* ==========================================================================
   Testimonial Section Styles
   ========================================================================== */

.testimonials-section {
  padding: 120px 0;
  background-color: var(--clr-white);
  border-top: 1px solid rgba(214, 130, 134, 0.08);
  position: relative;
}

.testimonials-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6%;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  color: #1e1e1e;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.testimonials-divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  gap: 12px;
}

.testimonials-divider-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--clr-rose);
  opacity: 0.4;
}

.testimonials-divider-heart {
  color: var(--clr-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s infinite ease-in-out;
}

.testimonials-heart-icon {
  width: 12px;
  height: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background-color: var(--clr-white);
  border-radius: 16px;
  padding: 50px 35px 40px 35px;
  border: 1px solid rgba(214, 130, 134, 0.12);
  box-shadow: 0 10px 30px rgba(214, 130, 134, 0.03);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(214, 130, 134, 0.1);
  border-color: rgba(214, 130, 134, 0.22);
}

.testimonial-quote-icon {
  position: absolute;
  top: 15px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--clr-rose);
  opacity: 0.15;
  line-height: 1;
  user-select: none;
}

.testimonial-stars {
  color: var(--clr-rose);
  font-size: 1.15rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.75;
  color: #555555;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e1e1e;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Contact Info Section Styles
   ========================================================================== */

.contact-info-section {
  padding: 80px 0;
  background-color: var(--clr-bg-cream);
  border-top: 1px solid rgba(214, 130, 134, 0.08);
  border-bottom: 1px solid rgba(214, 130, 134, 0.08);
  position: relative;
}

.contact-info-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6%;
}

.contact-info-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.contact-info-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info-item:hover {
  transform: translateY(-4px);
}

.contact-info-icon-badge {
  width: 54px;
  height: 54px;
  background-color: var(--clr-rose);
  border-radius: 50%;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(214, 130, 134, 0.2);
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info-item:hover .contact-info-icon-badge {
  transform: scale(1.1) rotate(10deg);
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.contact-info-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.65;
  color: #555555;
}

.contact-info-text a {
  transition: color 0.2s ease;
}

.contact-info-text a:hover {
  color: var(--clr-rose);
}

.contact-info-text.text-multiline {
  max-width: 240px;
}

.contact-info-divider {
  width: 1px;
  align-self: stretch;
  background-color: var(--clr-rose);
  opacity: 0.15;
  margin: 10px 0;
}

/* ==========================================================================
   Footer Section Styles
   ========================================================================== */

.footer-section {
  background-color: #231f1e;
  color: #e8e4e3;
  padding: 80px 0 30px 0;
  font-family: var(--font-sans);
}

.footer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 6%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #c4bebd;
  margin-bottom: 24px;
  max-width: 480px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4bebd;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--clr-rose);
  color: var(--clr-white);
  border-color: var(--clr-rose);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.footer-links-list,
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: #c4bebd;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-link:hover {
  color: var(--clr-rose);
  padding-left: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #c4bebd;
}

.footer-contact-icon {
  color: var(--clr-rose);
  flex-shrink: 0;
}

.footer-contact-txt {
  line-height: 1.5;
}

.footer-bottom-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 25px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #9c9493;
}

.footer-heart-icon {
  color: var(--clr-rose);
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
  animation: pulse 2.5s infinite ease-in-out;
}

/* ==========================================================================
   Media Queries & Responsiveness
   ========================================================================== */

@media (max-width: 1024px) {
  .about-container {
    gap: 50px;
    padding: 0 4%;
  }
  .about-title {
    font-size: 2.8rem;
  }
  .about-subtitle {
    font-size: 3.4rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 90px 0;
  }
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .about-content {
    align-items: center;
  }
  .about-divider-wrap {
    justify-content: center;
  }
  .about-description {
    margin: 0 auto;
  }
  .services-section {
    padding: 90px 0;
  }
  .services-header {
    margin-bottom: 45px;
  }
  .why-section {
    padding: 90px 0;
  }
  .gallery-section {
    padding: 90px 0;
  }
  .testimonials-section {
    padding: 90px 0;
  }
  .contact-info-section {
    padding: 70px 0;
  }
  .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .contact-info-divider {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 70px 0;
  }
  .about-title {
    font-size: 2.3rem;
  }
  .about-subtitle {
    font-size: 2.8rem;
  }
  .about-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .services-section {
    padding: 70px 0;
  }
  .services-title {
    font-size: 2.6rem;
  }
  .services-subtitle {
    font-size: 2.6rem;
  }
  .why-section {
    padding: 70px 0;
  }
  .why-title {
    font-size: 2.6rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .gallery-section {
    padding: 70px 0;
  }
  .gallery-subtitle {
    font-size: 3.2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .testimonials-section {
    padding: 70px 0;
  }
  .testimonials-title {
    font-size: 2.6rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-section {
    padding: 60px 0 30px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .contact-info-section {
    padding: 50px 0;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .contact-info-icon-badge {
    margin-bottom: 10px;
  }
  .contact-info-title {
    margin-bottom: 6px;
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.95rem;
  }
  .about-subtitle {
    font-size: 2.5rem;
  }
  .services-title {
    font-size: 1.95rem;
  }
  .services-subtitle {
    font-size: 2.2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .why-title {
    font-size: 1.95rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .gallery-subtitle {
    font-size: 2.8rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-image-frame {
    aspect-ratio: 1.1;
  }
  .testimonials-title {
    font-size: 1.95rem;
  }
}
