:root {
  --font-gs: "General Sans", sans-serif;
  --font-cg: "Cabinet Grotesk", sans-serif;

  --normal: 400;
  --medium: 450;
  --semibold: 500;
  --bold: 700;

  --font16: 16px;
  --font18: 18px;
  --font20: 20px;
  --font24: 24px;
  --font32: 32px;
  --font48: 48px;
  --font56: 56px;
}

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

.hidden {
  display: none;
}

.mobile-only {
  display: none;
}

body {
  font-family: var(--font-gs);
  cursor: default;
  margin-top: 88px;
}

.header-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4.5vw;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
}

#header-logo {
  display: flex;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  padding: 8px 8px;
  text-decoration: none;
  color: #080808;
  font-weight: var(--medium);
  font-size: var(--font18);
  letter-spacing: -0.5px;
}

#header-cta-button {
  display: flex;
  justify-content: center;
  padding: 16px 24px;
  background-color: #387f39;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: var(--semibold);
  font-size: var(--font16);
  text-decoration: none;
}

#mobile-menu-button img {
  transform: scale(1.2);
}

.mobile-menu-expand-section {
  width: 100%;
  position: fixed;
  z-index: 500;
}

.menu-items {
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.menu-items.expanded {
  max-height: 240px;
}

.menu-items li {
  padding: 10px 24px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #ddd;
  font-family: var(--font-gs);
  font-size: var(--font24);
  color: #387f39;
}

section {
  padding: 80px 8.33vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 36px;
  overflow: hidden;
}

section .titles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.titles h1 {
  font-family: var(--font-cg);
  font-weight: var(--bold);
  font-size: var(--font56);
  color: #0f2411;
}

.titles h2 {
  font-weight: var(--semibold);
  font-size: var(--font16);
  color: #f06406;
  text-transform: uppercase;
}

.titles h3 {
  font-family: var(--font-cg);
  font-weight: var(--bold);
  font-size: var(--font48);
  color: #080808;
}

.titles p {
  font-weight: var(--medium);
  font-size: var(--font20);
  color: #080808;
  max-width: 58vw;
  align-self: center;
}

#hero {
  padding: unset;
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  grid-template-rows: repeat(9, 1fr);
  gap: 0px;
}

.hero-banner {
  grid-area: 1/1/-1/-1;
  margin: 40px 5.55vw;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

.hero-banner-background {
  grid-area: 1/1/3/-1;
  border-radius: 32px;
  background-color: #e5f4e4;
  padding: 48px 40px;
}

.hero-banner-content {
  grid-area: 1/1/2/-1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 60px 0px 60px;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-image.left {
  grid-area: 1/1/10/10;
  z-index: 300;
  margin: 64px 240px 240px 0px;
}

.hero-image.right {
  grid-area: 1/-10/10/-1;
  z-index: 300;
  margin: 0px 0px 124px 124px;
}

.hero-image.center {
  grid-area: 2/1/4/-1;
  z-index: 200;
  padding: 24px 40px;
}

.hero-video-container {
  position: relative;
  padding: 16px 16px;
  background-color: white;
  border-radius: 24px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  cursor: pointer;
}

.play-button:hover {
  background: rgba(255, 255, 255, 0.8);
  color: black;
}

.hero-video {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

#hero-cta-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #387f39;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  border: none;
  font-weight: var(--semibold);
  font-size: var(--font16);
  z-index: 200;
}

.mobile-hero-image img {
  width: 100%;
  height: auto;
}

.mobile-hero-image.left {
  grid-area: 1/1/3/10;
  z-index: 300;
}

.mobile-hero-image.right {
  grid-area: 1/-10/10/-1;
  z-index: 300;
}

.mobile-hero-buttons {
  grid-area: 16 / 1 / -1 / -1;
  flex-direction: column;
  gap: 16px;
  padding: 32px 64px;
  align-items: stretch;
}

.mobile-hero-process-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  color: #495057;
  padding: 8px 8px;
  border: 1px solid #adb5bd;
  border-radius: 8px;
  z-index: 200;
  justify-content: center;
  font-size: var(--font20);
}

.mobile-hero-cta-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #387f39;
  color: white;
  padding: 8px 8px;
  border: none;
  border-radius: 8px;
  z-index: 200;
  justify-content: center;
  font-size: var(--font20);
}

#explore {
  padding-top: 32px;
  position: relative;
  overflow: hidden;
}

#explore .carousel {
  overflow: visible;
}

#explore::before,
#explore::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  z-index: 1;
}

#explore::before {
  left: 0;
  background: linear-gradient(to right, rgba(60, 173, 63, 0.1), transparent);
}

#explore::after {
  right: 0;
  background: linear-gradient(to left, rgba(60, 173, 63, 0.1), transparent);
}

#explore:hover::before,
#explore:hover::after {
  opacity: 1;
}

/* Active scroll zone indicators */
#explore.scrolling-left::before {
  background: linear-gradient(to right, rgba(60, 173, 63, 0.2), transparent);
  opacity: 1;
}

#explore.scrolling-right::after {
  background: linear-gradient(to left, rgba(60, 173, 63, 0.2), transparent);
  opacity: 1;
}

.carousel {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 0;
  width: max-content;
}

#explore .carousel {
  min-width: 200%;
}

#testimonials .carousel {
  width: 100%;
  min-width: auto;
}

.carousel-clone {
  flex-shrink: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.5s ease;
  flex-shrink: 0;
}

.flower-card {
  background-color: #f3faf3;
  border: 1px solid #3cad3f;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  transform: translateX(0px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  overflow: hidden;
  width: 24vw;
  aspect-ratio: 19/20;
  min-width: 210px;
  display: flex;
  justify-content: center;
}

.flower-card img {
  transform: translateY(20px) scale(0.9);
}

.flower-title {
  font-family: var(--font-cg);
  font-size: var(--font24);
  font-weight: var(--bold);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.2;
  text-align: center;
  max-width: 24vw;
  min-width: 210px;
}

.flower-title p {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

.explore-all p {
  font-weight: var(--semibold);
  font-size: var(--font32);
  color: #3cad3f;
  align-content: center;
}

#why-us {
  background-color: #e5f4e4;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

.why-us-card {
  background-color: #4a9d4c;
  border-radius: 16px;
  padding: 32px 32px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-us-card:hover {
  transform: scale(1.05);
}

.why-us-card img {
  width: 64px;
  height: auto;
}

.why-us-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-us-card-content h4 {
  font-family: var(--font-cg);
  font-size: var(--font24);
  font-weight: var(--bold);
  color: white;
}

.why-us-card-content p {
  font-size: var(--font20);
  color: whitesmoke;
}

.process-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  margin-top: 48px;
  margin-right: 20px;
  font-family: var(--font-cg);
}

.timeline {
  display: flex;
  align-items: flex-start;
  width: 85%;
}

.timeline-number {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #e9ecef;
  color: #495057;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.step-number-text {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
  transition: color 2s linear;
  font-weight: var(--bold);
  font-size: var(--font24);
}

.step-number-fill {
  position: absolute;
  height: 0;
  width: 100%;
  background: linear-gradient(to bottom, #ff8010, #c74a07);
  color: white;
  transition: height 3s linear;
  z-index: 1;
}

.step-line {
  position: relative;
  width: 6px;
  height: 10.5%;
  background-color: #dee2e6;
  align-self: center;
  overflow: hidden;
  transition: background-color 3s ease;
}

.step-line-fill {
  position: absolute;
  height: 0;
  width: 6px;
  background-color: #c74a07;
  color: white;
  transition: height 3s linear;
  z-index: 1;
}

.timeline-name {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  width: 100%;
  padding-left: 24px;
}

.timeline-content {
  background-color: white;
  padding: 15px 15px;
  border: 1px solid #ff8010;
  border-radius: 15px;
  font-weight: var(--bold);
  font-size: var(--font20);
  color: black;
  text-align: left;
}

.timeline-step.active .step-number {
  background-color: var(--accent-orange);
}

.process-illustration-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
}

.feature1 {
  grid-row-start: 2;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 3;
}

.feature2 {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 3;
  grid-column-end: 5;
}

.feature3 {
  grid-row-start: 2;
  grid-row-end: 4;
  grid-column-start: 5;
  grid-column-end: 8;
}

.process-image {
  grid-row-start: 3;
  grid-row-end: 7;
  grid-column-start: 1;
  grid-column-end: 7;
  margin-top: 64px;
}

.process-image img {
  width: 100%;
  transform: translate(0px, 48px);
}

.circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 150px;
  margin: 10px auto;
}

.circle {
  width: 16vw;
  height: 16vw;
  background-color: #fff;
  border: 2px solid #ffa833;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px #ffc270;
  transform: translate(0px, -24px);
}

.circle-smaller {
  width: 13vw;
  height: 13vw;
}

.circle img {
  width: 5.45vw;
  height: auto;
}

.circle-text {
  margin-top: 10px;
  padding: 0px 20px;
  color: #0d0d0d;
  line-height: 1.4;
  font-weight: var(--semibold);
  font-size: var(--font16);
}

.feature-container-mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-details-mobile {
  display: none;
}

.feature-mobile {
  display: flex;
  padding: 8px 8px;
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  border: 0.5px solid #ffa833;
  background-color: #fff;
  font-size: var(--font20);
  font-weight: var(--normal);
}

.process-image-mobile {
  align-self: center;
}

.feature-mobile img {
  width: 32px;
  height: auto;
}

.process-image-mobile img {
  width: 100%;
  max-width: 400px;
}

.active {
  background-color: #fff8ed;
}

#testimonials {
  background-color: #e5f4e4;
}

.testimonial-header-container {
  display: flex;
  justify-content: space-between;
}

#testimonials .titles {
  align-items: start;
  text-align: left;
}

.carousel-control-container {
  display: flex;
  align-items: center;
  padding: 32px 0px;
}

.carousel-controls {
  display: flex;
  gap: 16px;
}

.carousel-btn {
  background-color: #387f39;
  color: white;
  width: 48px;
  height: 48px;
  border: none;
  font-size: var(--font24);
  border-radius: 8px;
  cursor: pointer;
}

.testimonial-card {
  min-width: 365px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #e88a2e;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  flex-basis: 1440px;
  transform: translateX(0px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.quote {
  font-family: var(--font-cg);
  font-weight: var(--bold);
  font-size: var(--font24);
  margin-bottom: 16px;
  color: #080808;
}

.description {
  font-size: var(--font18);
  color: #333333;
  margin-bottom: 16px;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.customer-info img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.customer-name {
  font-weight: var(--semibold);
  font-size: var(--font18);
  color: #080808;
}

.customer-title {
  font-size: var(--font16);
  color: #4f4f4f;
}

#app-download {
  padding: 0px 0px;
}

.app-download-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1.2fr;
}

.content-section {
  background: linear-gradient(to bottom right, #ff8010, #451705);
  padding: 20px 20px;
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 3;
  display: flex;
  align-items: center;
}

.content {
  padding-left: 8.33vw;
  width: 50%;
  text-align: left;
}

.content h2 {
  font-family: var(--font-cg);
  font-size: var(--font48);
  font-weight: var(--bold);
  color: white;
  margin-bottom: 40px;
}

.content p {
  font-size: var(--font18);
  font-weight: var(--medium);
  margin-bottom: 10px;
  color: white;
}

.qr-codes {
  display: flex;
  gap: 28px;
}

.qr-code {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 2px 0px;
  align-items: center;
}

.qr-code > img {
  width: 108px;
  height: 108px;
  margin-bottom: 5px;
  border-radius: 10px;
  background-color: #fff;
}

.qr-code-description {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.qr-code-description img {
  width: 20px;
  height: 20px;
}

.qr-code p {
  font-size: var(--font18);
  color: #fff;
}

.phone-image {
  display: flex;
  justify-content: end;
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 2;
  grid-column-end: 3;
  overflow: hidden;
}

.phone-image img {
  max-width: 100%;
  height: auto;
  transform: translate(0px, 88px);
}

#gallery {
  background-color: #e5f4e4;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
}

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

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

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.contact-us-container {
  display: flex;
  flex-wrap: wrap;
  border-radius: 24px;
  padding: 24px 24px;
  gap: 16px;
  background-color: #2f6630;
}

.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  border-radius: 16px;
  background-color: #fff;
  justify-content: center;
}

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 24px;
  gap: 16px;
  background-color: #fff;
}

.map-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.map-image {
  width: 29vw;
  height: auto;
  max-width: 416px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: left;
}

.contact-info-detail {
  display: flex;
  justify-content: left;
  gap: 8px;
  text-align: left;
  font-size: var(--font20);
}

.contact-right-titles {
  display: flex;
  flex-direction: column;
  justify-content: left;
  gap: 8px;
}

.contact-right h2 {
  font-family: var(--font-cg);
  color: #2f6630;
  text-align: left;
  font-size: var(--font32);
  font-weight: var(--bold);
}

.contact-right p {
  text-align: left;
  font-size: var(--font20);
  font-weight: var(--semibold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: var(--font16);
}

.contact-form textarea {
  font-size: var(--font16);
  min-height: 186px;
}

.submit-row {
  display: flex;
  justify-content: right;
}

.contact-form button {
  background-color: #387f39;
  color: white;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: var(--font20);
  width: fit-content;
}

.faq-item {
  border-top: 1px solid #ddd;
  padding: 24px 24px;
  cursor: pointer;
  text-align: left;
  margin: 0 auto;
  position: relative;
}

.question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--bold);
  color: #333;
}

.faq-text {
  font-weight: var(--medium);
  font-size: var(--font24);
}

.answer {
  display: none;
  padding-top: 10px;
  color: #555;
  font-size: var(--font20);
}

.toggle {
  font-size: 2em;
  padding: 0px 15px;
  color: #4caf50;
  transition: transform 0.3s;
}

.faq-item.active .answer {
  display: block;
}

.faq-item.active .toggle {
  transform: rotate(45deg); /* Rotate to show "-" */
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
}

.blog-card {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateX(0px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #f0f0f0;
}

.blog-content {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  text-align: left;
}

.blog-content h3 {
  font-size: var(--font20);
  font-weight: var(--medium);
  color: #01021d;
  margin: 10px 0;
}

.blog-content .date {
  font-size: var(--font16);
  color: #595959;
  margin-bottom: 10px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag {
  display: inline-block;
  padding: 5px 10px;
  font-size: var(--font16);
  font-weight: var(--medium);
  color: #c74a07; /* Coral color */
  background-color: #fff0d4; /* Light coral background */
  border-radius: 10px;
  text-transform: uppercase;
}

footer {
  background-color: #254426; /* Dark green background color */
  color: #ffffff;
  padding: 56px 8.33vw;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 48px;
  gap: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  width: 300px;
  margin-bottom: 10px;
}

.footer-logo span {
  font-size: 1.5em;
  font-weight: var(--bold);
}

.footer-logo p {
  font-size: var(--font24);
  font-weight: var(--medium);
  margin-top: 5px;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 64px;
}

.footer-nav-item {
  color: #ffffff;
  text-decoration: none;
  font-size: var(--font18);
}

.footer-nav a:hover {
  color: #cccccc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-links p {
  margin-right: 20px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 20px;
}

.footer-links a:hover {
  color: #cccccc;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social img {
  width: 25px;
  height: auto;
}

.footer-social-mobile {
  display: none;
}

.footer-top-links {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-contact-details {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  font-size: var(--font18);
}

.footer-contact-number {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-email {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1328px) {
  .titles p {
    max-width: 50vw;
  }
}

@media (max-width: 1232px) {
  :root {
    --font16: 14px;
    --font18: 16px;
    --font20: 18px;
    --font24: 21px;
    --font32: 28px;
    --font48: 42px;
    --font56: 49px;
  }

  .hero-image.left {
    grid-area: 1/1/11/11;
  }

  .hero-image.right {
    grid-area: 1/-11/11/-1;
  }

  .app-download-container {
    grid-template-rows: 0.8fr 1.2fr;
  }

  .content {
    width: 52%;
  }
}

@media (max-width: 1024px) {
  :root {
    --font20: 16px;
    --font24: 18px;
    --font32: 24px;
    --font48: 36px;
    --font56: 42px;
  }

  body {
    margin-top: 77px;
  }

  section {
    padding: 80px 6vw;
  }

  #header-logo img {
    width: 90%;
    height: auto;
  }

  #header-cta-button {
    padding: 14px 18px;
  }

  .hero-image.center {
    padding: 12px 24px;
  }

  .hero-video-container {
    padding: 12px 12px;
  }

  .hero-image.left {
    grid-area: 2 / 1 / 11 / 11;
    margin: 6px 240px 240px 0px;
  }

  .hero-image.right {
    grid-area: 2 / -10 / 10 / -1;
    margin: -30px 0px 124px 124px;
  }

  .process-image {
    margin-top: 32px;
  }

  .step-number {
    width: 50px;
    height: 50px;
  }

  .carousel-control-container {
    padding: 16px 0px;
  }

  .content {
    padding-left: 8.33vw;
  }

  .contact-us-container {
    padding: 12px 12px;
    gap: 12px;
  }

  footer {
    padding: 56px 6vw;
  }

  .footer-logo img {
    width: 200px;
  }
}

@media (max-width: 896px) {
  :root {
    --font18: 15px;
    --font20: 15px;
    --font24: 17px;
    --font32: 20px;
    --font48: 34px;
    --font56: 40px;
  }

  .header-content {
    padding: 16px 4vw;
  }

  .nav-links {
    gap: 8px;
  }

  .titles p {
    max-width: 40vw;
  }

  .hero-image.left {
    grid-area: 2 / 1 / 13 / 13;
    margin: 6px 240px 240px 0px;
  }

  .hero-image.right {
    grid-area: 2 / -12 / 12 / -1;
    margin: -30px 0px 124px 124px;
  }

  .timeline {
    width: 90%;
  }

  .app-download-container {
    grid-template-rows: 0.5fr 1.2fr;
  }
}

@media (max-width: 768px) {
  :root {
    --font32: 22px;
    --font48: 28px;
    --font56: 32px;
  }

  .laptop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
  }

  body {
    margin-top: 73.8px;
  }

  section {
    padding: 32px 7vw;
  }

  #header-cta-button {
    display: none;
  }

  #header-logo img {
    width: 85%;
    height: auto;
  }

  #hero {
    grid-template-columns: repeat(18, 1fr);
    grid-template-rows: repeat(18, 1fr);
  }

  .hero-banner {
    margin: 160px 5.55vw;
  }

  .hero-banner-content {
    padding: 32px 32px 0px 32px;
  }

  .mobile-hero-image.left {
    grid-area: 1 / 1 / 6 / 7;
    transform: rotateZ(22deg) translate(-32px, 0px);
  }

  .mobile-hero-image.right {
    grid-area: 12 / 13 / -3 / -1;
    transform: translate(40px, 20px);
  }

  .titles p {
    max-width: 64vw;
  }

  .hero-image.center {
    padding: 24px 24px;
  }

  .why-us-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .timeline-content {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .process-container {
    margin: unset;
    display: block;
  }

  .timeline {
    width: 100%;
  }

  .timeline-name {
    width: 100%;
    padding: unset;
    gap: 16px;
  }

  .process-details-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .step-content {
    font-size: var(--font24);
  }

  #testimonials .titles {
    align-items: center;
    width: 100%;
  }

  .carousel {
    gap: 16px;
  }

  .testimonial-card {
    min-width: 264px;
  }

  .carousel-controls {
    width: 100%;
    justify-content: space-between;
  }

  .app-download-container {
    display: flex;
    width: 100%;
  }

  .content-section {
    width: 100%;
    flex-direction: column;
    padding: 44px 88px;
    gap: 24px;
  }

  .content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    padding-left: unset;
    text-align: center;
    align-items: center;
  }

  .content h2 {
    margin-bottom: unset;
    max-width: 400px;
  }

  .content p {
    display: none;
  }

  .app-download-buttons-mobile {
    display: flex;
    width: 100%;
    gap: 8px;
    justify-content: center;
  }

  .app-download-appstore-button,
  .app-download-playstore-button {
    width: 100%;
    display: flex;
    padding: 8px 8px;
    gap: 8px;
    border-radius: 8px;
    border: none;
    background-color: #f3faf3;
    align-items: center;
    justify-content: center;
  }

  .gallery-grid {
    width: 100%;
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .gallery-item {
    flex: 0 0 auto;
    width: 100%;
  }

  .contact-us-container {
    background-color: #fff;
    padding: unset;
    flex-direction: column;
    gap: 16px;
  }

  .contact-left,
  .contact-right {
    border: 1px solid #e0e0e0;
  }

  .map-image {
    width: 100%;
  }

  .faq-item {
    padding: 12px 12px;
  }

  .blog-grid {
    width: 100%;
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .blog-card {
    flex: 0 0 auto;
    width: 100%;
  }

  footer {
    padding: 56px 7vw;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 42px;
    padding-bottom: 24px;
  }

  .footer-nav-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-top-links {
    gap: 42px;
  }

  .footer-contact-details {
    flex-direction: column;
  }

  .footer-social-mobile {
    display: flex;
    gap: 24px;
  }

  .footer-links {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    margin-top: unset;
  }
}

@media (max-width: 596px) {
  .mobile-hero-image.left {
    grid-area: 1 / 1 / 6 / 9;
  }

  .mobile-hero-image.right {
    grid-area: 12 / 11 / -3 / -1;
  }

  .testimonial-card {
    flex: 0 0 auto;
    width: 100%;
  }

  .product-card {
    flex: 0 0 auto;
    width: 80vw;
    max-width: 300px;
  }

  .flower-card {
    width: 100%;
    aspect-ratio: 19/20;
    max-width: 300px;
    padding: 0;
    margin: 0;
  }

  .flower-title {
    font-size: var(--font20);
  }
}

@media (max-width: 425px) {
  body {
    margin-top: 69px;
  }

  #header-logo img {
    width: 75%;
    height: auto;
  }

  .menu-items li {
    font-size: var(--font20);
  }

  .mobile-hero-image.left {
    grid-area: 1 / 1 / 6 / 11;
  }

  .mobile-hero-image.right {
    grid-area: 12 / 9 / -3 / -1;
  }

  .hero-image.center {
    padding: 8px 8px;
  }

  .hero-video-container {
    padding: 4px 4px;
    border-radius: 8px;
  }

  .product-card {
    flex: 0 0 auto;
    width: 70vw;
    max-width: 280px;
  }

  .flower-card {
    width: 100%;
    aspect-ratio: 19/20;
    max-width: 280px;
    padding: 0;
    margin: 0;
  }

  .flower-title {
    font-size: var(--font18);
  }

  .carousel {
    gap: 12px;
  }
}

@media (max-width: 375px) {
  body {
    margin-top: 64.2px;
  }

  #header-logo img {
    width: 65%;
    height: auto;
  }

  .hero-banner {
    margin: 120px 5.55vw;
  }

  .mobile-hero-image.left {
    grid-area: 1 / 1 / 5 / 11;
  }

  .mobile-hero-image.right {
    grid-area: 13 / 9 / -3 / -1;
    transform: translate(40px, 0px);
  }

  .product-card {
    flex: 0 0 auto;
    width: 65vw;
    max-width: 260px;
  }

  .flower-card {
    width: 100%;
    aspect-ratio: 19/20;
    max-width: 260px;
    padding: 0;
    margin: 0;
  }

  .flower-title {
    font-size: var(--font16);
  }

  .carousel {
    gap: 10px;
  }
}

.inactive {
  display: none;
}

.immediate {
  transition: none; /* No transition for this class */
}
