@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&family=Maiandra+GD&display=swap');

:root {
  --primary-gold: #bf9225;
  --bg-white: #ffffff;
  --bg-light: #f0f2f5;
  --bg-dark: #191e2a;
  --text-black: #000000;
  --text-white: #ffffff;
  --text-gray: #666666;

  --max-width: 1200px;
  --radius: 15px;
  --shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


.bg-light-gray {
  background-color: #f9f9f9 !important;
}

.step-card,
.review-card {
  background: #ffffff !important;
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('images/bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  height: 100vh !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: white;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-black);
  line-height: 1.6;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 38px 20px;
}

.section-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 32px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text-black);
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.steps-note {
  max-width: 620px;
  margin: 0 auto 14px;
  text-align: center;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.mini-gold-line {
  width: 55px;
  height: 3px;
  background: #bf9225;
  border-radius: 20px;
  margin: 0 auto 35px;
}

.steps-grid {
  margin-top: 0;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--bg-white);
  box-shadow: 0 4px 4px rgba(191, 146, 37, 0.2);
  /* Gold tint shadow */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Maiandra GD', sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.nav-actions {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--text-white);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  padding: 10px 25px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.btn-outline:hover {
  background-color: var(--primary-gold);
  color: var(--text-white);
}

.hero {
  height: 85vh;
  margin-top: 80px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('img/pexels-pixabay-265947-1.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.packages-section {
  margin-bottom: 20px;
}

.package-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-5px);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.img-container {
  position: relative;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-gold);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  z-index: 10;
  margin: 0;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.description {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.4;
}

.btn-details {
  background-color: var(--primary-gold);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  transition: 0.3s;
}

.btn-details:hover {
  background-color: #a37b1f;
}

.package-card ul {
  margin-bottom: 25px;
}

.package-card li {
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--text-gray);
  padding-left: 15px;
  position: relative;
}

.package-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
}

.package-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.price {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

.package-card ul {
  margin-bottom: 20px;
  flex-grow: 1;
}

.package-card li {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-gray);
}

.features {
  background: linear-gradient(135deg, #bf9225 0%, #a8791d 100%);
  color: #fff;
  padding: 50px 20px !important; /* SAME as others */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 50%;
  top: -120px;
  left: -80px;
}

.features::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -100px;
  right: -70px;
}

.features .section-container {
  position: relative;
  z-index: 1;
  padding-top: 7px !important;
  padding-bottom: 1px !important;
}

.features-header {
  max-width: 720px;
  margin: 0 auto 35px;
}

.features-header h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
}

.features-header p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.20);
}

.feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  background: #fff;
  color: #bf9225;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 24px;
}

.feature-card h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features {
    padding: 45px 16px !important;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-header h2 {
    font-size: 26px;
  }

  .feature-card {
    padding: 26px 18px;
  }
}


.steps-section {
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.step-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 34px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: 0.25s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.icon-circle {
  width: 62px;
  height: 62px;
  background: #bf9225;
  color: #fff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-circle i {
  font-size: 24px;
  color: #fff !important;
}

.step-number {
  background: #bf9225;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.step-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2d2d2d;
}

.step-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.about-features-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-item i {
  color: #BF9225;
  font-size: 22px;
  margin-top: 4px;
}

.feature-item strong {
  font-size: 16px;
  color: #333;
}

.feature-item small {
  color: #666;
  font-size: 13px;
}

/* Visual Side: Image + MV Grid */
.about-visual-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-story-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mission-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mv-card {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.mv-card h4 {
  color: #BF9225;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 17px;
}

.mv-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.cta-banner-wrapper {
  background: #FFFFFF;
  border-radius: 20px;
  text-align: center;
  padding: 40px 30px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.cta-banner-wrapper h3 {
    color: #BF9225;
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-banner-wrapper p {
    color: #555;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
} 

.cta-action-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-gold-fill {
  background: #BF9225;
  color: #FFF;
  border: none;
  padding: 12px 35px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.btn-gray-fill {
  background: #E0E0E0;
  color: #333;
  border: none;
  padding: 12px 35px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.about-section {
  background: #f9f9f9;
  padding: 35px 0 50px !important;
}
.about-section .section-container {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.about-intro-text {
  max-width: 760px;
  margin: 0 auto 28px !important;
  text-align: center;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.about-text-content {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.about-text-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

.about-text-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-features-row {
  gap: 14px;
  margin-top: 20px;
}

.about-features-row .feature-item {
  background: #fff8ea;
  border: 1px solid #f0e2bd;
  border-radius: 14px;
  padding: 14px;
  margin-top: 0 !important;
}

.about-features-row .feature-item i {
  width: 42px;
  height: 42px;
  background: #bf9225;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.main-story-img {
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.mission-values-grid {
  gap: 14px;
}

.mv-card {
  border-radius: 15px;
  border: 1px solid #eee;
  padding: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.mv-card h4 {
  font-weight: 700;
}

.cta-banner-wrapper {
  margin-top: 30px;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .main-story-img {
    height: 230px;
  }
}

@media (max-width: 600px) {
  .about-text-content {
    padding: 24px 18px;
  }

  .mission-values-grid {
    grid-template-columns: 1fr;
  }
}

.testimonials-section {
    padding: 30px 0 !important;
    background-color: #FFFFFF;
}
.testimonials-section .section-container {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
.testimonials-section .section-title {
    margin-bottom: 10px !important;
}
.testimonial-note {
  max-width: 620px;
  margin: 0 auto 20px;
  text-align: center;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.overall-rating {
  text-align: center;
  margin-bottom: 30px !important;
}

.stars-gold {
  color: #bf9225;
  font-size: 22px;
  margin-bottom: 8px;
}

.rating-number {
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid #f0e6cc;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.stars-gold-small {
  color: #bf9225;
  font-size: 14px;
}

.gold-quote {
  color: #f0e6cc;
  font-size: 24px;
}

.review-text {
  color: #444;
  line-height: 1.7;
  font-size: 14.5px;
  margin-bottom: 30px;
  flex-grow: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f5f5f5;
  padding-top: 15px;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 35px;
  height: 35px;
  background: #fdf8e9;
  color: #bf9225;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}

.client-name {
  font-weight: 700;
  font-size: 14px;
  color: #333;
}

.post-date {
  font-size: 12px;
  color: #999;
}

.center-btn-wrapper {
  text-align: center;
}

.btn-see-reviews {
  background: transparent;
  border: 1px solid #ccc;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
}

.btn-see-reviews:hover {
  background-color: #f9f9f9;
}

footer {
  background-color: #1a1f2b;
  padding: 60px 40px 20px;
}

.fth3 {
  font-weight: 700;
  color: #ffffff;

}

.contact-details p {
  color: #ffffff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.footer-desc {
  font-size: 13px;
  max-width: 350px;
  margin-bottom: 20px;
  color: #ffffff;
  opacity: 0.9;
}

.contact-details p {
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: #ffffff;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  gap: 20px
}

.social-icons i {
  font-size: 24px;
  color: white;
}

.social-icons .fb i {
  color: #1877F2;
}

.social-icons .ig i {
  color: #E4405F;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
}

.bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #ffffff;
  opacity: 0.7;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 42px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 18px;
    height: 76px;
  }

  .desktop-nav,
  .desktop-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .logo {
    gap: 10px;
    font-size: 18px;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    top: 76px;
  }

  .mobile-menu-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1100;
  }

  .hero {
    height: 70vh;
    margin-top: 76px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-col p,
  .contact-details p,
  .footer-logo,
  .social-icons {
    justify-content: center;
  }

  .bottom-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0 14px;
    height: 72px;
  }

  .mobile-menu {
    top: 72px;
    right: 12px;
    width: calc(100vw - 24px);
  }

  .logo span {
    font-size: 16px;
  }

  .logo img {
    width: 38px;
    height: 38px;
  }

  .hero {
    height: 62vh;
    margin-top: 72px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.15;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .section-container {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 35px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .cta-action-btns {
    flex-direction: column;
  }

  footer {
    padding: 50px 20px 18px;
  }
}



html {
            scroll-behavior: smooth;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(3px);
        }

        .custom-modal {
            background: white;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            max-width: 450px;
            width: 90%;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
            animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        @keyframes modalPop {
            from {
                transform: scale(0.7);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .modal-icon {
            font-size: 60px;
            color: #bf9225;
            margin-bottom: 20px;
        }

        .modal-btn {
            background: #bf9225;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 15px;
            font-weight: bold;
            width: 100%;
        }

        .star-rating {
            font-size: 32px;
            color: #ddd;
            cursor: pointer;
            margin: 15px 0;
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .star-rating i.active {
            color: #bf9225;
        }

        .feedback-form-container textarea {
            width: 100%;
            height: 100px;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 12px;
            resize: none;
            font-family: inherit;
            box-sizing: border-box;
        }

        .notif-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .notification-dropdown {
        display: none;
        position: fixed;
        top: 78px;
        right: 150px;
        width: 330px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border: 1px solid #eee;
        z-index: 5000;
        overflow: hidden;
        animation: slideDown 0.3s ease;
        }

        .notif-wrapper {
            position: relative;
        }

        .notif-mini-alert {
            position: absolute;
            top: calc(100% + 8px);
            left: 50%;
            transform: translateX(-50%);
            background: #bf9225;
            color: #fff;
            padding: 6px 10px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
            white-space: nowrap;
            box-shadow: 0 6px 14px rgba(0,0,0,0.15);
            display: none;
            z-index: 999;
        }

        .notif-mini-alert.show {
            display: block;
        }

        .mobile-notif-btn {
          display: flex;
          align-items: center;
          gap: 10px;
          padding: 12px 14px;
          border-radius: 10px;
          background: #faf5e8;
          color: #bf9225;
          font-weight: 600;
        }

        .mobile-notif-btn i {
          font-size: 18px;
        }

        .mobile-notif-btn:hover {
          background: #f5e9cc;
        }


        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .notif-header {
            padding: 12px 15px;
            background: #fdfaf3;
            border-bottom: 1px solid #eee;
            font-weight: bold;
            color: #bf9225;
        }

        .notif-body {
            max-height: 300px;
            overflow-y: auto;
        }

        .notif-item {
            padding: 15px;
            border-bottom: 1px solid #f9f9f9;
            display: flex;
            gap: 12px;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            transition: 0.2s;
        }

        .notif-item:hover {
            background: #fcfcfc;
        }

        .notif-item.unread {
            background: #fffdf2;
        }

        .notif-icon {
            color: #bf9225;
            font-size: 18px;
        }

        .notif-text p {
            margin: 0;
            font-size: 13px;
            color: #444;
            line-height: 1.4;
        }

        .notif-text span {
            font-size: 11px;
            color: #999;
            display: block;
            margin-top: 4px;
        }

        .notif-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ff4d4d;
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 10px;
            border: 2px solid white;
        }


        .mobile-notif-link {
          display: none;
        }

        .menu-toggle {
          position: relative;
        }

        .mobile-menu-notif-badge {
          position: absolute;
          top: -6px;
          right: -6px;
          background: #ff4d4d;
          color: #fff;
          font-size: 10px;
          font-weight: 700;
          min-width: 18px;
          height: 18px;
          padding: 0 5px;
          border-radius: 999px;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 2px solid #fff;
        }

        @media (max-width: 900px) {
          .mobile-notif-link {
            display: flex !important;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            background: #faf5e8;
            color: #bf9225 !important;
            font-weight: 600;
          }

          .mobile-notif-badge {
            background: #ff4d4d;
            color: #fff;
            font-size: 11px;
            padding: 2px 7px;
            border-radius: 999px;
          }

          .notification-dropdown {
            position: fixed !important;
            top: 82px !important;
            left: 14px !important;
            right: 14px !important;
            width: auto !important;
            max-height: calc(100vh - 105px);
            z-index: 3000 !important;
          }

          .notif-body {
            max-height: 360px;
            overflow-y: auto;
          }
        }

        @media (max-width: 900px) {
          .notification-dropdown {
            top: 82px !important;
            left: 15px !important;
            right: 15px !important;
            width: auto !important;
            max-height: 400px;
          }

          .notif-body {
            max-height: 300px;
            overflow-y: auto;
          }
        }

        .btn-profile {
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: #bf9225;
            color: white !important;
            padding: 10px 22px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
        }

        .desktop-nav,
        .desktop-actions {
          display: flex;
        }

        .notif-bell-link {
          text-decoration: none;
          position: relative;
          display: inline-flex;
          align-items: center;
        }

        .notif-bell-link i {
          color: #bf9225;
          font-size: 22px;
        }

        .menu-toggle {
          display: none;
          width: 46px;
          height: 46px;
          border: 1px solid #eadfbe;
          background: #fff;
          border-radius: 12px;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          gap: 5px;
          cursor: pointer;
          padding: 0;
          box-shadow: 0 4px 12px rgba(191, 146, 37, 0.08);
        }

        .menu-toggle span {
          width: 20px;
          height: 2px;
          background: #bf9225;
          border-radius: 10px;
          display: block;
          transition: 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
          transform: translateY(7px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
          opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
          transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-menu-overlay {
          display: none;
        }

        .mobile-menu {
          position: fixed;
          top: 80px;
          right: 16px;
          width: min(320px, calc(100vw - 32px));
          background: #ffffff;
          border: 1px solid #eee4ca;
          border-radius: 18px;
          box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
          z-index: 1200;
          opacity: 0;
          visibility: hidden;
          transform: translateY(-10px);
          transition: 0.28s ease;
          pointer-events: none;
        }

        .mobile-menu.active {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
          pointer-events: auto;
        }

        .mobile-menu-inner {
          padding: 16px;
          display: flex;
          flex-direction: column;
          gap: 6px;
        }

        .mobile-menu a {
          font-family: 'Inter', sans-serif;
          font-size: 15px;
          font-weight: 500;
          color: #222;
          padding: 12px 14px;
          border-radius: 10px;
          transition: 0.2s ease;
        }

        .mobile-menu a:hover {
          background: #faf5e8;
          color: #bf9225;
        }

        .mobile-menu-divider {
          height: 1px;
          background: #eee;
          margin: 8px 0;
        }

        .mobile-login-link,
        .mobile-profile-link {
          background: #bf9225;
          color: #fff !important;
          text-align: center;
          font-weight: 600;
        }

        body.menu-open {
          overflow: hidden;
        }

        .confirm-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.18);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            padding: 20px;
        }

        .confirm-card {
            width: 100%;
            max-width: 330px;
            background: #fff;
            border-radius: 20px;
            padding: 24px 20px 18px;
            text-align: center;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
            border: 1px solid rgba(191, 146, 37, 0.12);
            animation: confirmFadeIn 0.18s ease;
        }

        .confirm-icon-wrap {
            width: 50px;
            height: 50px;
            margin: 0 auto 12px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .confirm-icon-wrap.delete-mode {
            background: #fee2e2;
            color: #dc2626;
        }

        .confirm-card h3 {
            margin: 0 0 6px;
            font-size: 17px;
            font-weight: 700;
            letter-spacing: -0.2px;
            color: #1e293b;
        }

        .confirm-card p {
            margin: 0;
            font-size: 13px;
            line-height: 1.45;
            color: #6c757d;
        }

        .confirm-actions {
            display: flex;
            gap: 10px;
            margin-top: 18px;
        }

        .confirm-btn {
            flex: 1;
            border: none;
            border-radius: 12px;
            padding: 11px 14px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.18s ease;
        }

        .confirm-btn.cancel {
            background: #f3f4f6;
            color: #374151;
        }

        .confirm-btn.delete-confirm {
            background: #dc2626;
            color: #fff;
        }

        .confirm-btn:hover {
            transform: translateY(-1px);
            opacity: 0.96;
        }


        .confirm-icon-wrap.login-mode {
            background: #fff7e3;
            color: var(--primary-gold);
        }

        .confirm-icon-wrap.login-mode i {
            color: var(--primary-gold);
        }

        .confirm-btn.login-confirm {
            background: var(--primary-gold);
            color: #fff;
        }

        .confirm-btn.login-confirm:hover {
            background: #a77d1f;
        }












/* pang pantay */
.section-title {
  margin-bottom: 12px;
}

.section-subtitle {
  margin: 0 auto 30px auto;
}

.steps-note {
  margin: 0 auto 20px;
}

.features-header {
  margin: 0 auto 30px;
}

.about-intro-text {
  margin: 0 auto 35px;
}

.reviews-grid {
  margin-bottom: 30px;
}

.center-btn-wrapper {
  margin-top: 30px !important;
}


.about-grid {
  align-items: stretch;
}

.about-text-content,
.about-visual-group {
  height: 100%;
}

.about-text-content {
  display: flex;
  flex-direction: column;
}

.about-features-row {
  margin-top: auto;
}

.about-visual-group {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
}

.main-story-img {
  width: 100%;
  height: 100%;
  min-height: 265px;
  max-height: 320px;
  object-fit: cover;
}

.mission-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mv-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mv-card p {
  margin: 0;
}

.home-review-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid #f0e6cc;
    cursor: pointer;
    transition: 0.2s;
}

.home-review-thumb:hover {
    transform: scale(1.08);
}

.review-img-group{
    display:flex;
    gap:4px;
    margin-top:6px;
}

.review-thumb{
    width:28px;
    height:28px;
    object-fit:cover;
    border-radius:5px;
}

.more-overlay{
    width:28px;
    height:28px;
    background:rgba(0,0,0,0.6);
    color:#fff;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:5px;
}

@keyframes confirmFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 480px) {
    .confirm-overlay {
        padding: 16px;
    }

    .confirm-card {
        max-width: 100%;
        padding: 20px 16px 16px;
        border-radius: 16px;
    }

    .confirm-icon-wrap {
        width: 46px;
        height: 46px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .confirm-card h3 {
        font-size: 16px;
    }

    .confirm-card p {
        font-size: 13px;
    }

    .confirm-actions {
        gap: 8px;
        margin-top: 16px;
    }

    .confirm-btn {
        padding: 10px 12px;
        font-size: 12px;
        border-radius: 10px;
    }
}


@media (max-width: 900px) {
  .desktop-nav,
  .desktop-actions,
  .nav-links,
  .nav-actions {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
  }
}

.nav-links a.active {
  color: var(--primary-gold);
}

.nav-links a.active::after {
  display: none;
}

.mobile-menu a.active {
  background: #faf5e8;
  color: #bf9225 !important;
}
        