/* Base styles */
body {
  margin: 0;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
}
/* 
h1 span, h2 span, h3 span {
  color: #d96a29;
} */

.white-icon {
  color: #fff !important;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 70px;
  /* padding: 80px 8%; */
}

.hero-container {
  /* margin-top: 120px; */
  margin: 100px auto;
  width: 85% !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.create-event-btn {
  max-width: 100%;
  margin: 0px !important;
}


/* Buttons */
.btn {
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

.big-text {
  font-size: 43px;
  color: #000;
  font-weight: 500;
}

.gap-10 {
  gap: 10rem;
}

.btn.primary {
  background-color: #d96a29;
  color: #fff;
}

.btn.primary:hover {
  background-color: #c75e23;
}

.hero-section {
  margin-top: 50px;
}

.text-muted {
  font-size: 14px;
}

.btn.outline {
  background: transparent;
  border: 1.5px solid #d96a29;
  color: #d96a29;
}

.btn.outline:hover {
  background-color: #d96a29;
  color: #fff;
}

/* Hero */
.hero {
  background: #fffaf6;
}

.hero-content {
  gap: 40px;
}

.hero-text {
  flex: 1;
  max-width: 550px;
}

.hero-text h1 {
  font-size: 38px;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  gap: 50px;
  font-size: 14px;
  color: #666;
}

.hero-stats strong {
  font-size: 22px;
  color: #000;
}

.hero-image {
    box-shadow: 0 10px 15px -5px #f3cdb8; /* horizontal offset, vertical offset, blur, spread, color */

  position: relative;
  flex: 1;
}

.hero-image img {

  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hero-image .tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: #fff;
  color: #444;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
  text-align: center;
  padding: 0px 6% 80px 6%;
  background-color: #fff;
}

.testimonials h2 {
  font-size: 28px;
}

.subtitle {
  display: inline-block;
  color: #777;
  margin-top: 5px;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.testimonial-text {
  height: 86px;
}

.name {
  font-size: 13px;
}

.fw-400 {
  font-weight: 400;
}

.feature-text h2,
.feature-text span {
  font-weight: 400;
  
}

.testimonial {
  display: flex;
  text-align: left;
  font-size: 14px;
  background-color: #fffaf6;
  padding: 20px;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  flex-wrap: wrap;
  flex-direction: column;
}

.testimonial p {
  /* font-style: italic; */
  color: #000;
  margin-bottom: 15px;
}

/* Events */
.events {
  padding: 80px 6%;
  background-color: #fff;
  text-align: center;
}

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-bar select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.event-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.event-card {
  width: auto;
  border-radius: 12px;
  background: #fffaf6;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: left;
  height: 300px;
  width: 400px;
  padding: 0px;
}

.featured-events .container {
  width: 100%;
  padding-top: 0px;
}

.event-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-body {
  display: grid;
  padding: 15px;
  align-content: space-between;
}

.card-body h4 {
  margin-bottom: 6px;
  font-size: 17px;
}

.card-body p {
  color: #555;
  font-size: 14px;
  margin-bottom: 6px;
}

.card-body span {
  font-size: 13px;
  color: #888;
}

.btn.explore {
  background-color: #d96a29;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
}

/* Features */
.featured-events {
  text-align: center;
  /* padding: 80px 6%; */
  background-color: #fffaf6;
}

.features {
  text-align: center;
  /* padding: 80px 6%; */
  background-color: #fffaf6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.feature-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-box p {
  font-size: 14px;
}

.feature-box h4 {
  /* color: #d96a29; */
  font-weight: 400;
  margin-bottom: 10px;
}

/* Steps */
.steps {
  background-color: #fff;
  text-align: center;
  padding: 70px 5%;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.step {
  background-color: #fffaf6;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.step h4 {
  margin-bottom: 8px;
  color: #d96a29;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .btn {
    font-size: 14px;
  }

  .hero-stats strong {
    font-size: 18px;
  }

  .feature-grid, .event-grid, .testimonial-grid, .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 20px;
  }

  .event-card img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .feature-box, .step, .testimonial {
    padding: 18px;
  }

  .btn.explore {
    width: 100%;
  }
}


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


/* CONTAINER */
.container {
  width: 90%;
  /* max-width: 1535px; */
  margin: 0 auto;
}

/* HERO SECTION */
.hero {
  padding: 80px 0;
  display: flex;
  align-items: center;
  background: #fff;
}
/* 
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
} */

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 600;
  color: #222;
}

.hero h1 span {
  color: #e87722; /* Orange highlight */
}

.hero p {
  font-size: 16px;
  margin: 20px 0 30px;
  color: #555;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}

.btn-primary {
  background: #e87722;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #cf6a1d;
}

.btn-outline {
  background: transparent;
  border: 1.8px solid #e87722;
  color: #e87722;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #e87722;
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: #666;
}

.hero-stats strong {
  display: block;
  font-size: 20px;
  color: #111;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge small {
  color: #999;
  font-size: 12px;
}

.dot {
  margin-top: 9px;
  width: 10px;
  height: 10px;
  background: #e87722;
  border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    margin-top: 40px;
  }
}

.hero-image .info-badge {
      box-shadow: 0 10px 15px -5px #f3cdb8; /* horizontal offset, vertical offset, blur, spread, color */

  position: absolute;
  bottom: -15px;
  left: -28px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-image .dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 5px;
}

section.features {
      background: linear-gradient(to bottom, #fff7f3, #ffffff);
      /* padding: 80px 0; */
      text-align: center;
    }

    .features h2 {
      font-weight: 600;
      font-size: 1.9rem;
    }

    .features p.subtitle {
      color: #666;
      margin-bottom: 50px;
      font-size: 0.95rem;
    }

    .feature-box {
      border: 1px solid #f0f0f0;
      border-radius: 12px;
      padding: 25px;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.03);
      transition: all 0.3s ease;
      height: 100%;
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .feature-icon {
      font-size: 24px;
      color: #ff7b42;
      margin-bottom: 10px;
    }

    .feature-box h4 {
      font-weight: 500 !important;
    }

    /* Steps section */
    /* .steps {
      margin-top: 70px;
      text-align: center;
    }

    .steps h3 {
      color: #555;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .steps p.text-orange {
      color: #ff7b42;
      font-weight: 600;
      margin-bottom: 40px;
    }

    .step-item {
      text-align: center;
      flex: 1;
    }

    .step-icon {
      width: 60px;
      height: 60px;
      background-color: #ff7b42;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin: 0 auto 10px;
    }

    .step-item p {
      font-size: 0.9rem;
      color: #666;
    }

    .steps-line {
      height: 2px;
      background-color: #ff7b42;
      width: 60%;
      margin: 0 auto 40px;
    } */

    /* section.compare {
      padding-bottom: 80px ;
      text-align: center;
    }

    .compare h2 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .compare p.subtitle {
      color: #6c757d;
      margin-bottom: 40px;
      font-size: 0.95rem;
    }

    .compare-table {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      overflow: hidden;
    }

    table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
    }

    thead {
      background: linear-gradient(to right, #fff7f3, #ffffff);
    }

    thead th {
      padding: 18px 20px;
      font-weight: 600;
      font-size: 1rem;
      color: #333;
      border-bottom: 1px solid #eee;
    }

    thead th:nth-child(2) {
      color: #ff7b42;
    }

    tbody tr:nth-child(even) {
      background-color: #fafafa;
    }

    tbody td {
      padding: 16px 20px;
      border-bottom: 1px solid #f0f0f0;
      vertical-align: middle;
      font-size: 0.95rem;
    }

    tbody td:first-child {
      text-align: left;
      font-weight: 500;
      color: #333;
    }

    tbody td:not(:first-child) {
      text-align: center;
    }

    .check {
      color: #ff7b42;
      font-size: 1.2rem;
    }

    .check-gray {
      color: #aeb3b7;
      font-size: 1.2rem;
    } */

    @media (max-width: 767px) {
      thead {
        display: none;
      }
      tbody td {
        display: flex;
        justify-content: space-between;
        padding: 14px 16px;
        border-bottom: 1px solid #eee;
      }
      tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #555;
      }
    }

    /* Section: Event Types */
    section.event-types {
      padding: 80px 0;
      text-align: center;
    }

    section.event-types h2 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    section.event-types p.subtitle {
      color: #6c757d;
      margin-bottom: 50px;
      font-size: 0.95rem;
    }

    .event-card {
      margin: 0 auto;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid #eee;
    }

    .event-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      filter: brightness(80%);
      transition: all 0.3s ease;
    }

    .event-card:hover img {
      filter: brightness(65%);
      transform: scale(1.05);
    }

    .event-card .overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
      color: #fff;
      padding: 20px;
      text-align: left;
    }

    .overlay h6 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .overlay p {
      font-size: 0.9rem;
      margin: 0;
      opacity: 0.9;
    }

    .icon-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      color: #ff7b42;
      border-radius: 8px;
      width: 28px;
      height: 28px;
      font-size: 16px;
      margin-right: 8px;
    }

    /* Section: CTA */
    section.cta {
      background: linear-gradient(90deg, #fff3ed 0%, #ffffff 100%);
      text-align: center;
      padding: 100px 0;
      border-radius: 0;
    }

    section.cta h2 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    section.cta h2 span {
      color: #ff7b42;
    }

    section.cta p {
      color: #6c757d;
      margin-bottom: 30px;
      font-size: 0.95rem;
    }

    .cta-buttons .btn {
      border-radius: 8px;
      padding: 10px 22px;
      font-weight: 500;
    }

    .btn-orange {
      background-color: #ff7b42;
      color: #fff;
    }

    .btn-orange:hover {
      background-color: #ff6930;
    }

    .btn-outline-orange {
      border: 1px solid #ff7b42;
      color: #ff7b42;
    }

    .btn-outline-orange:hover {
      background-color: #ff7b42;
      color: #fff;
    }

    .cta-icons {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 40px;
      color: #6c757d;
      font-size: 0.9rem;
    }

    .cta-icons i {
      color: #ff7b42;
      margin-right: 6px;
    }

    .event-section {
      /* padding: 80px 0; */
      text-align: center;
    }

    .event-section h2 {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .event-section p {
      color: #666;
      margin-bottom: 50px;
      font-size: 15px;
    }

    .event-card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      text-align: left;
      height: 300px;
      width: 400px;
      padding: 0px;
      /* height: auto !important; */
    }

    .event-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    }

    .event-img {
      position: relative;
      height: 180px;
      overflow: hidden;
    }

    .event-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .event-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(255,255,255,0));
    }

    .event-icon {
      width: 40px;
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: #f97316; /* orange */
      color: #fff;
      font-size: 18px;
      border-radius: 8px;
      padding: 6px 8px;
      z-index: 1;
    }

    .event-icon i {
      position: relative;
      left: 4px;
    }

    .event-body {
      height: 120px;
      background-color: #fff;
      padding: 20px;
    }

    .event-body h5 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .event-body p {
      font-size: 14px;
      color: #666;
      margin-bottom: 0;
    }

    .cta-section {
      position: relative;
      text-align: center;
      background: #fef9f6;
      padding: 100px 20px;
      overflow: hidden;
    }

    /* soft orange glow shapes */
    .cta-section::before,
    .cta-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.6;
      z-index: 0;
    }

    .cta-section::before {
      width: 300px;
      height: 300px;
      background: #fbd5bd;
      top: 20%;
      left: -10%;
    }

    .cta-section::after {
      width: 300px;
      height: 300px;
      background: #fbd5bd;
      bottom: 20%;
      right: -10%;
    }

    .cta-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: 32px;
      font-weight: 600;
      color: #111;
    }

    .cta-highlight {
      color: #f97316; /* orange */
      font-weight: 600;
    }

    .cta-text {
      color: #6b7280;
      font-size: 15px;
      margin-top: 10px;
      margin-bottom: 30px;
    }

    .btn-orange {
      background-color: #f97316;
      border: none;
      color: #fff;
      font-weight: 500;
      padding: 10px 20px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .btn-orange:hover {
      background-color: #ea580c;
    }

    .btn-light-outline {
      border: 1px solid #e5e7eb;
      background-color: #fff;
      color: #111;
      font-weight: 500;
      padding: 10px 20px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .btn-light-outline:hover {
      background-color: #f3f4f6;
    }

    .cta-badges {
      display: flex;
      justify-content: center;
      gap: 30px;
      margin-top: 25px;
      color: #6b7280;
      font-size: 14px;
    }

    .cta-badges i {
      color: #f97316;
      margin-right: 6px;
    }

    .stars {
      color: #f97316;
    }

    .event-card .event-img{
      width: 100%;
      height: 160px;
      border-radius: 20px;
    }







    .steps {
  text-align: center;
  margin-top: 60px;
}

.text-orange {
  color: #e27223;
  font-weight: 600;
}

.steps-wrapper {
  position: relative;
  justify-content: space-between;
  margin-top: 50px;
} 

/* horizontal line */
.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 45px; /* aligns with center of circles */
  left: 8%;
  right: 8%;
  height: 2px;
  background-color: #f2d2b0;
  z-index: 1;
}

.step-item {
  flex: 1;
  min-width: 150px;
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 70px;
  height: 70px;
  background-color: #e27223;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 8px rgba(226, 114, 35, 0.3);
}

.step-item h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.step-item p {
  color: #000;
  font-size: 14px;
  max-width: 208px;
  margin: 0 auto;
}

.card.event-card a {
  text-decoration: none;
  color: inherit;
}

.btn-google-review {
    display: inline-block;
    background-color: #fbbc05; /* Google yellow */
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
  .btn-google-review:hover {
      background-color: #fa8939; 
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  }
  
  .footer-review p {
      margin: 0;
  }

  .btn.btn-google-review {
    line-height: 20px;
    font-size: 14px;
  }