@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto/Roboto-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

img {
  max-width: 100%;
  object-fit: cover;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
:root {
  --orange: #ff6b35;
  --peach: #ffd2b3;
  --cream: #fff8f0;
  --sage: #a8b5a2;
  --deep: #2f2a45;
}

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

body {
  font-family: "Roboto", sans-serif;
  background: #fffaf7;
  color: var(--deep);
  line-height: 1.7;
  font-size: 20px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(
    135deg,
    rgba(255, 248, 240, 0.95),
    rgba(255, 255, 255, 0.8)
  );
  padding: 10px 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: var(--deep);
  font-weight: 500;
  position: relative;
  font-size: 18px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}
.burger {
  display: none;
}
.btn,
.btn-card,
.home-btn,
.submit-btn,
.occasion-btn,
.final-btn {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.4s;
  margin-top: 15px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  cursor: pointer;
  font-size: 18px;
}

.btn:hover,
.btn-card:hover,
.home-btn:hover,
.submit-btn:hover,
.occasion-btn:hover,
.final-btn:hover {
  transform: translateY(-4px) rotate(2deg);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.hero {
  height: 100vh;
  max-height: 1200px;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: url(image/banner.jpeg) center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.hero-content {
  color: #fff;
  position: relative;
  z-index: 5;
  text-align: center;
}
.hero h1 {
  font-size: 3.5rem;
}
.hero p {
  font-size: 1.4rem;
  opacity: 0.9;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
  padding: 120px 0;
}
.occasion-card {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
  position: relative;
}
.occasion-card:hover {
  transform: translateY(-16px);
}
.occasion-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.occasion-emoji {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.reviews-section {
  padding: 140px 0;
  background: var(--deep);
  color: white;
}
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.review-card {
    flex: 1 0 30%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.review-stars {
  color: #ffd700;
  font-size: 1.3rem;
  letter-spacing: 4px;
}

.faq-horizontal {
  padding: 140px 0;
  background: var(--cream);
}
.faq-list {
  display: flex;
  overflow-x: auto;
  gap: 32px;
  padding: 40px 0;
  scrollbar-width: none;
}
.faq-list::-webkit-scrollbar {
  display: none;
  display: none;
}
.faq-item {
  min-width: 380px;
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}
.faq-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
}

.moments-section {
  background: var(--sage);
  color: white;
}
.moments-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 640px;
}
.moments-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}
.moment-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.moment-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.moment-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  padding: 80px 40px 40px;
  font-size: 1.6rem;
  font-weight: 500;
}
.moments-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}
.moments-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.moments-btn:hover {
  background: rgba(255, 107, 53, 0.6);
  transform: scale(1.1);
}
.moments-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: var(--orange);
  transform: scale(1.4);
}
.contact {
  padding: 140px 0;
  background: linear-gradient(135deg, var(--cream), var(--peach));
}
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.form-image img{
    height: 100%;
    max-height: 600px;
    width: 100%;
}
input,
textarea {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #ddd;
  border-radius: 16px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: 0.3s;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-wrapper a {
  color: var(--orange);
  text-decoration: underline;
}
.form-block {
  text-align: center;
  margin-top: 40px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  margin: 20px 0;
}
.checkbox-label input {
  width: auto;
  margin: 0;
}
footer {
  padding: 100px 0 60px;
  background: var(--peach);
  color: #2f2a45;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 60px;
  margin-bottom: 80px;
}
.footer-col a {
  color: var(--deep);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.footer-col h3,
a.footer-logo {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--deep);
}
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.submit-btn {
  background: var(--orange);
  color: white;
  padding: 18px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.4s;
}
.submit-btn:hover {
  transform: rotate(3deg) scale(1.05);
}

.timeline {
  background: var(--cream);
}
.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  position: relative;
  background: white;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
}
section {
  padding: 80px 0;
}
.section-top {
  padding-top: 150px;
}
.split-assembly {
  background: var(--deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-img img {
  width: 100%;
  min-height: 300px;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.split-text ul{
    margin-top:32px;font-size:1.3rem; list-style: none;
}
h2,
h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.occasion-body {
  padding: 20px;
}
.numbers {
  background: linear-gradient(45deg, var(--peach), var(--cream));
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}
.number-item h3 {
  font-size: 4.5rem;
  color: var(--orange);
  margin-bottom: 16px;
}
.counter {
  display: inline-block;
}
.curved {
  background:url(image/banner2.jpeg) center / cover no-repeat;
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.curved::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;left: 0;background: rgba(0, 0, 0, 0.4);
}

.curved .container{
    position: relative;
    z-index: 5;
}
.asym {
  padding: 160px 0;
}
.asym-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}
.asym-card:nth-child(1) {
  grid-row: span 2;
  background: var(--orange);
  color: white;
  padding: 60px 40px;
  border-radius: 32px;
  font-size:1.6rem;
}

.asym-card {
  background: white;
  padding: 40px 20px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.asym-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 24px;
}

.final-slice {
  padding: 180px 0;
  background: var(--deep);
  color: white;
  text-align: center;
}
.final-slice a{
    display:inline-block;margin-top:40px;padding:20px 60px;background:var(--orange);color:white;border-radius:50px;font-size:1.4rem;text-decoration:none;
}
.cat-intro,
.care-intro {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #ffe5d9, #fff8f0);
  text-align: center;
}

.featured {
  background: var(--deep);
  color: white;
  text-align: center;
}
.featured-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--orange);
  padding: 80px 30px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}
.featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("image/Sunset.jpeg") center/cover;
  opacity: 0.35;
}
.featured-content {
  position: relative;
  z-index: 99;
}
.price {
  font-size: 3rem;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.bouquet-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: 0.5s;
}
.bouquet-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 40px 80px rgba(255, 107, 53, 0.25);
}
.bouquet-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.card-body {
  padding: 20px;
}
.quiz-section {
  padding: 140px 0;
  background: var(--peach);
  text-align: center;
}
.quiz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.quiz-card {
  background: white;
  padding: 48px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.4s;
}
.quiz-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 80px rgba(255, 107, 53, 0.2);
}
.quiz-card h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--orange);
}
.quiz-card p {
  font-size: 1.3rem;
}
.details-section {
  padding: 140px 0;
  background: var(--cream);
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 50px;
}
.detail-card {
  background: white;
  padding: 50px;
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.detail-card ul{
    list-style: none;
}
.detail-card i {
  font-size: 4.5rem;
  color: var(--orange);
  margin-bottom: 30px;
}
.detail-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.detail-card ul {
  text-align: left;
  margin: 20px auto;
  display: inline-block;
}
.detail-card li {
  margin: 12px 0;
  font-size: 1.1rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 60px auto;
  max-width: 1100px;
}
th {
  background: var(--orange);
  padding: 24px;
  font-size: 1.4rem;
}
td {
  padding: 20px 16px;
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.care-intro {
  padding: 180px 0 120px;
  background: url(image/vase.jpeg) center / cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.care-intro::before{
    position: absolute;
    content: '';
   width: 100%;
    height: 100%;
    top: 0;left: 0;
    background: rgba(0, 0, 0, 0.4);

}
.care-intro .container{
    position: relative;
    z-index: 5;
}
.care-intro h1 {
  font-size: 3.5rem;
  margin-bottom: 32px;
}
.care-intro p {
  font-size: 1.7rem;
  max-width: 900px;
  margin: 0 auto;
}
.golden-rules {
  background: var(--cream);
}
.rules-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 40px;
  padding: 40px 0;
  scrollbar-width: none;
}
.rules-wrapper::-webkit-scrollbar {
  display: none;
}
.rule-card {
  min-width: 380px;
  background: white;
  padding: 50px;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  text-align: center;
  transition: 0.4s;
}
.rule-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 50px 100px rgba(255, 107, 53, 0.2);
}
.rule-card i {
  font-size: 4rem;
  color: var(--orange);
  margin-bottom: 30px;
}
.rule-card h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.step-by-step {
  background: var(--deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.step-img img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.step-text ol {
  font-size: 1.4rem;
  counter-reset: item;
  padding-left: 40px;
}
.step-text li {
  margin: 32px 0;
  position: relative;
}

.flower-needs {
  background: linear-gradient(45deg, var(--peach), var(--cream));
}
.needs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
}
.need-card {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}
.need-header {
  padding: 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--orange);
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
}
.need-header i {
  transition: 0.4s;
}
.need-body {
  padding: 0 32px;
  background: white;
}

.need-body ul li {
  margin: 16px 0;
}

.pro-tips {
  background: var(--sage);
  color: white;
  position: relative;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 50px;
}
.tip-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 50px;
  border-radius: 32px;
  backdrop-filter: blur(10px);
  transform: rotate(-2deg);
  transition: 0.5s;
}
.tip-card:nth-child(even) {
  transform: rotate(2deg);
}
.tip-card:hover {
  transform: rotate(0) translateY(-20px);
  background: rgba(255, 107, 53, 0.3);
}
.tip-card i {
  font-size: 3.5rem;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}
.eternal {
  background: var(--deep);
  color: white;
  text-align: center;
}
.eternal p {
  font-size: 1.8rem;
  max-width: 900px;
  margin: 0 auto 50px;
}
.forever-img {
  max-width: 700px;
  margin: 80px auto 0;
}
.forever-img img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.legal {
  padding-top: 130px;
}
.legal h1 {
  margin-bottom: 40px;
  font-size: 2.5rem;
}
.legal h2 {
  margin-top: 30px;
  font-size: 2rem;
}
.thanks-wrapper {
  background: linear-gradient(135deg, #ffe5d9, #fff8f0);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 30px;
  padding: 30px 10px;
}
.thanks-wrapper h1 {
  font-size: 2.5rem;
}
.diagonal img {
  width: 100%;
  min-height: 300px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}
.diagonal{
    text-align: center;
}
.diagonal p{
    font-size:1.4rem; text-align:center; margin-top:40px; max-width:900px; margin-left:auto; margin-right:auto;
}
@media (max-width: 900px) {
  .split-grid,
  .step-grid,
  .asym-grid, .form-wrapper  {
    grid-template-columns: 1fr;
  }
  h1, .care-intro h1 {
    font-size: 3rem;
  }
  .moment-caption {
    font-size: 1.3rem;
    padding: 60px 20px 30px;
  }
  .container {
    padding: 0 10px;
  }
  .nav-links {
    gap: 12px;
  }
  h2, h1{
    font-size: 2rem;
  }
  .moments-slider{
    height: 500px;
  }
}
