
/* Reset common gotchas */
html, body { height: auto; }
body { margin: 0; }

/* Debug outlines to see which block is tall */
/** { box-sizing: border-box; }
section, header, nav, main, div { outline: 1px dashed rgba(0,0,0,0.08); }*/

/* Prevent bottom-margin collapse looking like extra whitespace */
.about-section:last-of-type { margin-bottom: 0; }
.about-section > :last-child { margin-bottom: 0; }

/* If your hero is empty, don’t let it be huge unless intended */
.hero { min-height: 0; padding: 0; }

/* Helpful defaults for images */
img { display: block; max-width: 100%; height: auto; }


html, body {
  margin: 0;
  padding: 0;
}


/* 🌍 Base layout and reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}

/* 🧭 Header styling for all devices */
header {
  background-color: #f5e6e6; /* soft textured pink background */
  width: 100%;
  padding: 0;
  position: relative; /* default for mobile */
  z-index: 1000; /* ensures it stays above other content */
}

/* 🖥️ Sticky header only on desktop */
@media screen and (min-width: 768px) {
  header {
    position: sticky;
    top: 0;
    background-color: #f5e6e6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* optional visual polish */
  }
}


/* Flex/Grid layout for full nav bar */
.full-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | logo | right */
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}


.full-nav a {
  font-weight: bold;
  color: #333; /* darker text for contrast */
  text-transform: uppercase; /* optional for a clean look */
  letter-spacing: 0.5px; /* adds a bit of spacing */
}


/* Left and right nav links container */
.nav-links {
  display: flex;
  justify-content: space-evenly; /* spread links evenly */
  align-items: center;
  gap: 20px;
}

/* Left-aligned group */
.left-links {
  justify-content: flex-start;
}

/* Right-aligned group */
.right-links {
  justify-content: flex-end;
}

/* Link styling */
.nav-links a {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  padding: 5px 12px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: #a67c7c; /* soft brownish-pink hover */
}

/* Divider line (vertical pipe |) */
.divider {
  color: #000000;
  font-size: 20px;
  margin: 0 12px;
  user-select: none;
  line-height: 1;
}

/* Centered logo */
.nav-logo {
  margin: -20px 0;
  text-align: center;
}

.nav-logo img {
  height: 150px;   /* bigger logo */
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

/* 💡 Hero section */
.hero {
  width: 100%;
  height: 700px; /* adjust height if needed */
  background-image: url('https://res.cloudinary.com/dpbwmozkj/image/upload/q_10,f_auto/v1757960271/Home1_heah5a.jpg'); /* replace with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}


.hero-heading {
  color: white;
  font-size: 3rem;
  font-family: 'Tangerine', serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.5rem;
  }
}


/* 💡 Hero section - About page */
.about-hero {
  background-image: url('https://res.cloudinary.com/dpbwmozkj/image/upload/q_10,f_auto/v1757960267/Home2_ogrnbw.jpg'); /* replace with your image */
}

/* 💡 Hero section - About page */
.services-hero {
  background-image: url('https://res.cloudinary.com/dpbwmozkj/image/upload/q_10,f_auto/v1757960275/S_Heading_hcjdou.jpg'); /* replace with your image */
}

.contact-hero {
  background-image: url('https://res.cloudinary.com/dpbwmozkj/image/upload/q_10,f_auto/v1757960273/Home5_te8jod.jpg'); /* replace with your image */
}

.portfolio-hero {
  background-image: url('https://res.cloudinary.com/dpbwmozkj/image/upload/q_10,f_auto/v1757960274/PP_Heading_bowb8w.jpg'); /* replace with your image */
}

/* 🎯 Button style (used in forms) */
.btn {
  padding: 10px 25px;
  background-color: #a67c7c;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #8a6464;
}



/* 🖼️ Contact Page: image placeholder */
.contact-image-placeholder {
  height: 300px;
  background-color: #f2f2f2; /* Placeholder color */
}

/* 🌸 Contact intro heading */
.contact-intro {
  text-align: center;
  margin-top: 40px;
  position: relative;
}

.contact-intro h2 {
  text-align: center;
  font-family: 'Tangerine', cursive;
  font-size: 8rem;
  margin: 40px 0 20px;
  color: #a67c7c;
}

/* Optional floral decorations */
.floral-left,
.floral-right {
  position: absolute;
  top: 320px;
  width: 100px;
}

.floral-left {
  left: 20px;
}

.floral-right {
  right: 20px;
}

/* 📝 Contact Form Section */
.contact-form-section {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.form-title {
  text-align: center;
  font-family: 'Tangerine', cursive;
  font-size: 3rem;
  margin: 40px 0 20px;
  color: #3b2f2f;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: Arial, sans-serif;
}

.contact-form textarea {
  resize: vertical;
}

/* 🌸 Services Page */

/* Section title */
.section-title {
  text-align: center;
  font-family: 'Tangerine', serif;
  font-size: 4rem;
  color: #3b2f2f;
  margin: 60px 0 40px;
  position: relative;
}

.section-title::before,
.section-title::after {
  content: '';
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #d4a4a4;
  vertical-align: middle;
  margin: 0 15px;
}

/* Services container */
.services {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* Individual service card */
.service-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 50px;
  align-items: flex-start;
}

.service-card img {
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-info {
  flex: 1;
}

.service-info h4 {
  flex: 1;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #a67c7c;
  font-family: 'Century Gothic', serif;
}

.service-info p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.service-info ul {
  list-style-type: disc;
  padding-left: 20px;
}

.service-info ul li {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

/* 🔁 Alternating Service Card Layout */
.service-card.reverse {
  flex-direction: row-reverse;
}

.service-card.reverse .service-info {
  text-align: right;
}

.service-card.reverse ul {
  list-style-position: inside;
  padding-left: 0;
}

/* 📱 Responsive design */
@media (max-width: 768px) {
  .full-nav {
    grid-template-columns: 1fr; /* stack */
    justify-items: center;
    padding: 20px;
  }

  .nav-links {
    flex: none;
    justify-content: center;
    margin: 10px 0;
  }

  .nav-logo {
    margin: 10px 0;
  }

  .divider {
    display: none; /* Hide dividers on mobile for cleaner look */
  }

  .floral-left,
  .floral-right {
    display: none; /* Optional: hide floral images on smaller screens */
  }

  .service-card {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
  }

  .service-card img {
    width: 100%;
    max-width: 300px;
  }

  .service-info {
    text-align: left;
    margin-top: 15px;
  }

  .service-card.reverse .service-info {
    text-align: left;
  }

  .service-card.reverse ul {
    text-align: left;
  }
}
/*Replacing carousel stuffs from here*/
/* ========================= */
/* 🎠 Carousel Styles */
/* ========================= */

.carousel-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin: 60px auto;
}

.carousel-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 1300px;
}

.carousel-track {
  overflow: hidden;
  width: 1240px;
  height: 180px;
  position: relative;
  background: rgba(242,239,222,0);
  border-radius: 10px;
}

.carousel-track-inner {
  display: flex;
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
  padding-left: 10px;
}

.carousel-track-inner img {
  width: 200px;
  height: 180px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 5px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.carousel-track-inner img.active {
  opacity: 1;
  filter: brightness(1.3);
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.carousel-row:hover .carousel-track-inner {
  animation-play-state: paused;
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .carousel-track-inner img {
    transition: none !important;
  }
}

/* Intro Heading Section */
.intro-heading {
  text-align: center;
  margin: 40px 20px 40px;
}

.intro-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #a67c7c;
  font-weight: 600;
}

/* 🌸 Intro Section */
.intro-section {
  padding: 40px 20px;
  background-color: #fff7f7;
  text-align: center;
}

.intro-heading {
  font-size: 2.8rem;
  color: #a67c7c;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.intro-image img {
  width: 100%;
  max-width: 400px;
  max-height: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.intro-text {
  flex: 1;
  font-size: 1.15rem;
  line-height: 2;
  color: #3b2f2f;
  font-family: 'Century Gothic', serif;
}

/* 🌸 Footer styling */
.custom-footer {
  background-color: #f5e6e6; /* soft pink background */
  width: 100%;
  padding: 20px 0;
  font-family: 'Georgia', serif; /* serif font for elegance */
  color: #333; /* dark text for contrast */
  font-weight:bold
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-content span {
  flex: 1;
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}

/* ============ Our Services ============ */
.services {
  padding: clamp(2.5rem, 1vw, 6rem) min(0vw, 3rem);
}

.services__title {
  font-family: "Century Gothic";
  font-weight: 600;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 clamp(1.5rem, 3vw, 2rem);
}

.services__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* collage : text */
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.services__image {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.services__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* ---- Right column ---- */
.services__side {
  display: grid;
  align-content: start;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.services__cta-row {
  display: flex;
  justify-content: flex-end;
}

.btn-outline {
  display: inline-block;
  font-family: "Playfair Display", serif;
  color: #1f1f1f;
  border: 1px solid #c9c9c9;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, #e7e7e7, #f6f6f6) border-box;
  padding: .6rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn-outline:hover {
  transform: translateY(-1px);
  border-color: #9e9e9e;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

/* List with heart markers */
.service-list {
  font-family: 'Century Gothic';
  display: grid;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #333;
}

.service-list li {
  position: relative;
  padding-left: 1.8rem;
  line-height: 1.4;
}
.service-list li::before {
  content: "♡";
  position: absolute;
  left: 0;
  top: 0;
  color: #8a8a8a;
  font-size: 1.05em;
  line-height: 1.2;
}

/* ---- Responsive tweaks ---- */
@media (max-width: 1000px) {
  .services__content {
    grid-template-columns: 1fr;
  }
  .services__cta-row {
    justify-content: flex-start; /* button aligns left on mobile */
  }
  .collage {
    aspect-ratio: 1 / 1; /* square-ish on smaller screens so it stays visually balanced */
  }
}

/* =========================
   Why Choose Us? (scoped)
========================= */
#why-choose-us {
  /* theme */
  --text: #2e2e2e;
  --muted: #5a5a5a;
  --radius: 14px;
  --shadow: 0 6px 18px rgba(0,0,0,.08);

  background-color: #f5e6e6; /* your requested pink */
  padding: clamp(48px, 7vw, 88px) 20px clamp(54px, 8vw, 96px);
  position: relative;
  overflow: hidden;
  
  
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);

}

#why-choose-us .container {
  max-width: 1180px;
  margin: 0 auto;
}

/* Heading */
#why-choose-us .why-title {
  font-family: "Playfair Display", Georgia, serif; /* fallback stack */
  font-size: clamp(36px, 6.2vw, 64px);
  line-height: 1.15;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  margin: 0 0 18px;
}

/* Copy */
#why-choose-us .lead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text);
  text-align: center;
  margin: 0 auto 12px;
  max-width: 920px;
  letter-spacing: .2px;
}
#why-choose-us .para {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  text-align: center;
  margin: 0 auto clamp(22px, 4vw, 34px);
  max-width: 980px;
  line-height: 1.7;
}

/* Gallery */
#why-choose-us .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2.4vw, 18px);
  margin-top: clamp(18px, 3.4vw, 28px);
  width: 100%;
  height: auto;
  object-fit: cover;
}

#why-choose-us figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

#why-choose-us img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;   /* keeps consistent card height */
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

#why-choose-us figure:hover img {
  transform: scale(1.02);
  filter: saturate(1.05);
}

/* Responsive */
@media (max-width: 980px) {
  #why-choose-us .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  #why-choose-us .gallery { grid-template-columns: 1fr; }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  #why-choose-us img { transition: none; }
  #why-choose-us figure:hover img { transform: none; filter: none; }
}


/* 🌸 About Section */
.about-section {
  background-color: #ffffff;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-heading {
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.about-heading h2 {
  font-family: 'Tangerine', cursive;
  font-size: 7rem;
  color: #a67c7c;
  margin: 0 20px;
  display: inline-block;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.floral-decor {
  width: 400px;
  height: auto;
  vertical-align: top;
}

.floral-left {
  position: Left;
  left: 0;
  top: -30px;
}

.floral-right {
  position: Right;
  right: 0;
  top: -30px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.about-image-cont-p1 img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.about-text {
  flex: 1;
  font-size: 1.15rem;
  line-height: 2;
  color: #3b2f2f;
  font-family: 'Century Gothic', serif;
  max-width: 700px;
}


/* 🌸 Founder Section */
.founder-section {
  background-color: #f5e6e6;
  padding: 60px 20px;
  width: 100%
}

.founder-heading {
  text-align: center;
  margin-bottom: 40px;
}

.founder-heading h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: #3b2f2f;
}

.founder-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.founder-image img {
  width: 100%;
  max-width: 600px; /* wider image */
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.white-bg {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 12px;
}

.flower-heading {
  text-align: center;
  position: relative;
  margin-bottom: 5px;
}

.fun-facts-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fffafc;
}

.fun-facts-title {
  font-family: 'Tangerine', cursive;
  font-size: 48px;
  margin: 20px 0;
  color: #b76e79;
}

.fun-facts-content {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.fun-facts-column ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.fun-facts-column li {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.fun-facts-column img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Staggering effect */
.stagger-1 {
  margin-left: 0;
}

.stagger-2 {
  margin-left: 20px;
}

.flower-heading-lower {
  text-align: center;
  position: relative;
  margin-bottom: -10px;
}

.floral-decor-lower {
  width: 400px;
  height: auto;
  vertical-align: centre;
}

.fun-facts-title {
  font-family: 'Tangerine', cursive;
  font-size: 7rem;
  color: #a67c7c;
  margin: 0 20px;
  display: inline-block;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.floral-left {
  position: Left;
  left: 0;
  top: -30px;
}

.floral-right {
  position: Right;
  right: 0;
  top: -30px;
}

.testimonials {
  text-align: center;
  position: relative;
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Georgia', serif;
}

.testimonial-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.testimonial-header h2 {
  font-family: 'Tangerine', cursive;
  font-size: 7rem;
  color: #a67c7c;
  margin: 0 20px;
  display: inline-block;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.test-floral-left {
  width: 400px;
  position: Left;
  left: 0;
}

.test-floral-right {
  width: 400px;
  height: auto;
  position: relative;
}

.testimonial-body p {
  max-width: 1500px;
  margin: 0 auto 30px;
  font-size: 1.1em;
  line-height: 1.6;
  quotes: "“" "”";
}

.testimonial-body p::before {
  content: open-quote;
}

.testimonial-body p::after {
  content: close-quote;
}

.heart-divider {
  width: 60px;
  margin: 20px auto;
  display: block;
}

.cont-p1-contact-section {
  padding: 40px 20px;
  font-family: 'Georgia', serif;
  background-color: #fff;
  max-width: 1200px;
  margin: auto;
}

.cont-p1-header {
  text-align: center;
  margin-bottom: 40px;
}

.cont-p1-title {
  font-size: 5em;
  font-family: 'Tangerine', cursive;
  font-style: italic;
  color: #a67c7c;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.cont-p1-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.cont-p1-image-wrapper {
  flex: 1 1 400px;
}

.cont-p1-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cont-p1-text-wrapper {
  flex: 1 1 400px;
  max-width: 500px;
}

.cont-p1-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
}

.cont-p1-contact-info a {
  color: #5a3e36;
  text-decoration: none;
}

.cont-p1-contact-info a:hover {
  text-decoration: underline;
}

.featured-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.badge-img {
  max-width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.social-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.social-badge-img {
  max-width: 80px;
  height: auto;
  transition: transform 0.3s ease;
}

.badge-img:hover {
  transform: scale(1.05);
}
  input,
  textarea,
  button {
    font-size: 1rem;
  }
  
.notification.success {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 6px;
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
}

.get-in-touch-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f5e6e6; /* Soft background to separate from footer */
}

.get-in-touch-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  color: #000000;
  background-color: #ffffff; /* white */
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.get-in-touch-button:hover {
  background-color: #Cb9191; /* Slightly darker on hover */
}


.call-to-action-heading {
  font-family: 'Tangerine', cursive;
  font-size: 5rem;
  color: #333333;
  margin-bottom: 20px;
}

.call-to-action-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff; /* Soft background to separate from footer */
}

.call-to-action-button {
  display: inline-flex; /* Use flex to align items horizontally */
  align-items: center;  /* Vertically center image and text */
  gap: 10px;            /* Space between image and text */
  padding: 12px 30px;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  color: #000000;
  background-color: #f5e6e6;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}


.call-to-action-button:hover {
  background-color: #Cb9191; /* Slightly darker on hover */
}

.button-icon {
  height: 20px;
  width: 20px;
}



/* 🌐 Global Mobile Adjustments */
@media (max-width: 768px) {
  section,
  .about-section,
  .founder-section,
  .fun-facts-section,
  .testimonials,
  .cont-p1-contact-section {
    padding: 30px 15px;
  }

  .full-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
  }

  .nav-logo img {
    height: 100px;
    max-width: 200px;
  }

  .divider,
  .floral-left,
  .floral-right,
  .test-floral-left,
  .test-floral-right {
    display: none;
  }

  .hero {
    height: 40vh;
    min-height: 300px;
  }

  .service-card {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
  }

  .service-card img {
    width: 100%;
    max-width: 300px;
  }

  .service-info {
    text-align: left;
    margin-top: 15px;
  }

  .service-card.reverse .service-info,
  .service-card.reverse ul {
    text-align: left;
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }

  .about-content,
  .founder-content,
  .cont-p1-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .about-text,
  .cont-p1-text-wrapper {
    max-width: 100%;
  }

  .founder-image img,
  .about-image img,
  .cont-p1-image {
    max-width: 100%;
  }

  .fun-facts-content {
    flex-direction: column;
    gap: 30px;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 10px;
  }

  .testimonial-body p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .badge-img {
    max-width: 140px;
  }
}

/* 📱 Extra Small Screens */
@media (max-width: 480px) {
  .nav-links a {
    font-size: 16px;
    padding: 4px 8px;
  }

  .contact-intro h2,
  .fun-facts-title,
  .testimonial-header h2,
  .cont-p1-title,
  .about-heading h2 {
    font-size: 3rem;
  }

  .form-title,
  .section-title,
  .intro-heading h2 {
    font-size: 2rem;
  }

  .intro-text,
  .service-list li {
    font-size: 1rem;
    line-height: 1.6;
  }

  .carousel-row {
    flex-direction: column;
    width: 100%;
  }

  .carousel-track {
    width: 100%;
    height: auto;
  }

  .carousel-track-inner img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  #why-choose-us .why-title {
    font-size: 2rem;
  }

  #why-choose-us .lead,
  #why-choose-us .para {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
  }

  .badge-img {
    max-width: 120px;
  }
}