* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: #fde4ec;
  color: #333;
}

/* ===== WHITE SCROLL HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  padding: 18px 8%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 10px 8%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* CONTAINER */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 42px;
  transition: height 0.3s ease;
}

.site-header.scrolled .header-logo img {
  height: 34px;
}

.header-logo span {
  font-size: 26px;
  font-weight: 700;
  color: #5b0f14;
}

/* MENU */
.header-nav a {
  margin-left: 22px;
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: #d81b60;
}

/* underline effect */
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d81b60;
  transition: width 0.3s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

/* ================= MODERN HERO ================= */
.hero-modern {
  position: relative;
  background: linear-gradient(135deg, #5b0f14, #8e1230);
  color: #fff;
  padding: 90px 8%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25)
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #f48fb1;
}

.hero-text {
  font-size: 18px;
  max-width: 520px;
  line-height: 1.6;
  opacity: 0.95;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #f06292;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* TRUST POINTS */
.hero-highlights {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  font-size: 15px;
}

.hero-highlights i {
  color: #f48fb1;
  margin-right: 6px;
}

/* RIGHT IMAGE */
.hero-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-highlights {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* ================= CATEGORIES ================= */
.categories-section {
  background: #fde4ec;
  padding: 100px 8%;
}

.categories-container {
  max-width: 1300px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 34px;
  color: #5b0f14;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: #444;
  max-width: 650px;
  margin: auto;
}

/* GRID – 4 IN ONE ROW */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.category-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.category-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

/* IMAGE */
.category-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(91,15,20,0.9),
    rgba(216,27,96,0.55)
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.category-card:hover .overlay {
  opacity: 1;
}

.overlay i {
  font-size: 36px;
  margin-bottom: 12px;
}

.overlay h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.overlay p {
  font-size: 14px;
}

/* BADGES */
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  color: #fff;
  z-index: 10;
}

.badge.new {
  background: #d81b60;
}

.badge.trending {
  background: #ff9800;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= ABOUT US ================= */
.about-section {
  padding: 100px 8%;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

/* CONTENT */
.about-content h2 {
  font-size: 36px;
  color: #5b0f14;
  margin-bottom: 16px;
}

.about-intro {
  font-size: 18px;
  color: #d81b60;
  font-weight: 500;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

/* HIGHLIGHTS */
.about-highlights {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fde4ec;
  padding: 12px 18px;
  border-radius: 20px;
  font-size: 14px;
  color: #5b0f14;
  font-weight: 500;
}

.highlight i {
  color: #d81b60;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-content h2 {
    font-size: 30px;
  }
}

/* ================= GALLERY ================= */
.gallery-section {
  padding: 90px 8%;
  background: #fff;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 34px;
  color: #5b0f14;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ITEM */
.gallery-item {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}


/* ================= TESTIMONIALS ================= */
.testimonial-section {
  padding: 100px 8%;
  background: #fde4ec;
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 34px;
  color: #5b0f14;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: #444;
  max-width: 650px;
  margin: auto;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

/* CUSTOMER */
.customer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.customer img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.customer h4 {
  font-size: 16px;
  color: #5b0f14;
}

.customer span {
  font-size: 13px;
  color: #777;
}

/* REVIEW */
.review {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* STARS */
.stars {
  font-size: 18px;
  color: #ff9800;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 100px 8%;
  background: #ffffff;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

/* LEFT SIDE */
.contact-left {
  background: #fde4ec;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.contact-left h2 {
  font-size: 32px;
  color: #5b0f14;
  margin-bottom: 12px;
}

.contact-desc {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #5b0f14;
}

.info-item i {
  color: #d81b60;
  font-size: 16px;
}

.info-item a {
  color: #d81b60;
  text-decoration: none;
  font-weight: 600;
}

.info-item a:hover {
  text-decoration: underline;
}

/* FORM */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 14px;
  border: none;
  border-radius: 14px;
  outline: none;
  font-size: 14px;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #d81b60;
  border: none;
  border-radius: 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #b91550;
}

/* RIGHT SIDE - MAP */
.contact-right {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-right iframe {
    height: 320px;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #5b0f14;
  color: #ffffff;
  padding: 70px 8% 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

/* LOGO */
.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

/* TEXT */
.footer-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #f5cdd7;
}

/* HEADINGS */
.footer-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
}

/* LINKS */
.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #f5cdd7;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-box ul li a:hover {
  color: #ffffff;
}

/* ADDRESS ICONS */
.footer-box i {
  margin-right: 8px;
  color: #f8bbd0;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: #d81b60;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-social a:hover {
  background: #b91550;
  transform: translateY(-3px);
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
  font-size: 14px;
  color: #f5cdd7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
