/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;

}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #111;
}

/* ========== HERO: Image Version ========== */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 65vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../photos/services.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.about-hero__inner {
  position: relative;
  width: min(1200px, 92%);
  margin-inline: auto;
  padding: 100px 0 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.about-hero_text {
  max-width: 640px;
  position: relative;
  margin-left: 20px;
}

.about-hero_text h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 14px;
  font-weight: 800;
  font-family: "Poiret One", sans-serif;
}

.about-hero_text p {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  
  font-family: "Cinzel", serif;
}


/* Breadcrumb styles */
.breadcrumb {
  align-self: center;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #ff5f2e;
}

.breadcrumb .sep {
  opacity: 0.7;
}

.breadcrumb .current {
  color: #ffffff;
}

/* Optional soft left gradient accent */
.about-hero_text::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -20px;
  bottom: -20px;
  width: 220px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
  pointer-events: none;
}

/* OUR SERVICE  SECTION*/

/* Our Services Section */
.our-services-section {
  background-color: #fff;
  padding: 60px 20px;
  color: #000;
  text-align: center;
}

.section-heading h2 {
  font-size: 5.5rem;
  margin-bottom: 10px;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
}

.section-heading p {
  font-size: 2rem;
  color: #313030;
  margin-bottom: 40px;
  font-family: "Cinzel", serif;
}

.services-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
  margin-bottom: 90px;
}

.service-card {
  background-color: #fff;
  color: #000;
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  background-color: #fff;
  border: 1px solid #e0926d;
  box-shadow: 0 8px 20px rgba(224, 146, 109, 0.3);
  transform: translateY(-8px);
}

.card-content h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  font-family: "Poiret One", sans-serif;
  text-align: left;
  letter-spacing: 2px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.card-content p {
  font-size: 1.4rem;
  color: #272525;
  font-family: "Cinzel", serif;
  text-align: left;
  transition: color 0.3s ease;
}

.service-card:hover .card-content h3,
.service-card:hover .card-content p {
  color: #e0926d;
}

.card-icon img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.service-card:hover .card-icon img {
  transform: scale(1.1);
}

.raised-card {
  transform: translateY(-20px);
}

.lower-card {
  transform: translateY(20px);
}

/* Typography */
.eyebrow {
  color: #f26522;
  font-weight: 600;
  letter-spacing: 0.10em;
  margin: 4px 0 10px;
  font-size: 3rem;
}

.title {
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.1;
  margin: 0.25rem 0 1rem;
  letter-spacing: -0.01em;
}

.why-title .title{
color: #fff;
}

.how-title .title{
color: #000;
}

.title .underline {
  position: relative;
  display: inline-block;
}

.title .underline::after {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.08em;
  bottom: -0.2em;
  height: 0.22em;
  background: #f26522;
  border-radius: 2px;
  z-index: -1;
}

.lede {
  color: #6b7280;
  max-width: 50ch;
}

/* WHY Section */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  background-color: #000;
  color: #fff;
}

.why__media {
  position: relative;
  overflow: hidden;
  font-family: "Poiret One", sans-serif;
}

.why__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: #f26522;
  color: #fff;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why__content {
  padding: clamp(28px, 6vw, 72px) clamp(22px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  font-family: "Poiret One", sans-serif;
  justify-content: center;
}

.hl {
  position: relative;
  display: inline-block;
}

.hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
  background: #f26522;
}

.lead {
  color: #f9fafd;
  margin: 12px 0 28px;
  max-width: 60ch;
  font-size:1.32rem;
  font-family: "Cinzel", serif;
  margin-left:4px;
  letter-spacing:0.12rem;
}

.lede {
  color: #29292a;
  margin: 12px 0 28px;
  max-width:50rem;
  font-family: "Cinzel", serif;
font-size:1.4em;
}

/* Metrics */
.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px 28px;
}

.metric {
  display: flex;
  align-items: center;
  gap: 14px;
}

.metric__icon {
  color: #f26522;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.metric__text {
  font-family: "Cinzel", serif;
  line-height: 1.15;
}

.metric__num {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.metric__num .plus {
  color: #f26522;
  margin-left: 3px;
}

.metric__label {
  color: #bdbdc2;
  font-size: 13px;
  margin-top: 4px;
}

/* How It Works */
.how-it-works {
  padding: 36px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
  
}



.hiw-head {
  text-align: center;
  max-width: 780px;
  font-family: "Poiret One", sans-serif;
  margin: 0 auto 26px;

}

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.hiw-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hiw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.hiw-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #f26522;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 28px;
  font-weight: 700;
  transition: background 0.3s, transform 0.3s;
}

.hiw-card:hover .hiw-icon {
  background: #d54d10;
  transform: rotate(0deg) scale(1.1);
}

.hiw-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  transition: color 0.3s;
  font-family: "Poiret One", sans-serif;
  letter-spacing:1px;
}

.hiw-card:hover h3 {
  color: #f26522;
}

.hiw-card p {
  margin: 0;
  color: #141515;
  font-family: "Cinzel", serif;
}

/* Arrow */
.hiw-arrow {
  color: #9ca3af;
  font-size: 34px;
  text-align: center;
  user-select: none;
  transition: transform 0.3s, color 0.3s;
}

.hiw-arrow:hover {
  transform: scale(1.2);
  color: #f26522;
}

/* FAQ Section */
.faq-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 48px 20px;
  max-width: 1100px;
  font-family: "Poiret One", sans-serif;
  margin: 0 auto;
}

.accordion {
  
  margin: 22px 0;
}

.acc-item {
  width: 100%;
  
  font-family: "Cinzel", serif;
  background: #fff;
  border: 0;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight:800;
  color: #1f2937;
  margin-bottom: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.acc-item:hover {
  background: #f9fafb;
  transform: translateX(4px);
}

.acc-item.active {
  background: #f26522;
  color: #fff;
  transform: translateX(0);
}

.acc-icon {
  opacity: 0.8;
  transition: transform 0.3s;
}

.acc-item.active .acc-icon {
  transform: rotate(90deg);
}

.acc-panel {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-top: -8px;
  margin-bottom: 14px;
  padding: 18px 22px;
  color: #1e1e1f;
  font-size:1rem;
  font-weight:600;
  letter-spacing: 1px;
  display: none;
  animation: fadeIn 0.3s ease;
}

/* Smooth panel animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(0px); }
  to { opacity: 0; transform: translateY(0); }
}
/* FAQ Right */
.faq-right .photo-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.faq-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.help-card {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #fff;
  color: #111;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 70%;
}

.help-link {
  color: #111;
  opacity: 0.8;
  margin-top: 6px;
}

.btn-primary {
  display: inline-block;
  background: #f26522;
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 26px;
  font-weight: 700;
  margin-top: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* About Section */
.about {
  max-width: 1200px;
  margin: 48px auto;
  padding: 24px clamp(16px, 4vw, 40px);
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
}

.about__media {
  position: relative;
  flex: 1 1 430px;
  min-width: 320px;
}

.about__photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__photo--main {
  height: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about__photo--overlay {
  position: absolute;
  left: -10px;
  top: 30px;
  width: 160px;
  height: 200px;
  border: 6px solid #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.badge__icon {
  font-size: 22px;
}

.badge__text strong {
  display: block;
  font-size: 22px;
}

.badge__text span {
  color: #6b7280;
  font-size: 13px;
}

.about__content {
  flex: 1 1 460px;
  min-width: 320px;
}

.about__title {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 6px;
  background: #f26522;
  z-index: -1;
}

.about__lead {
  color: #6b7280;
  margin: 10px 0 22px;
  max-width: 60ch;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 12px 18px;
}

.features li {
  position: relative;
  padding-left: 28px;
  color: #111;
  font-weight: 500;
}

.features li::before {
  content: "●";
  color: #f26522;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  line-height: 1.4;
}

.signature {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-top: 8px;
}

.signature__sign {
  font-family: "Pacifico", cursive;
  color: #a9a9ac;
  font-size: 34px;
  line-height: 1;
}

.signature__meta {
  color: #6b7280;
  font-size: 14px;
}

.signature__meta strong {
  color: #111;
}



/* Responsive */
@media (max-width: 980px) {
  .why {
    grid-template-columns: 1fr;
  }
  .why__content {
    order: 2;
  }
  .why__media {
    order: 1;
    min-height: 52vh;
  }
}

@media (max-width: 900px) {
  .about {
    margin: 24px auto 40px;
  }
  .about__photo--overlay {
    width: 140px;
    height: 180px;
    left: -8px;
    top: 24px;
  }
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hiw-arrow {
    display: none;
  }
  .faq-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .title {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .features {
    grid-template-columns: 1fr;
  }
  .about__photo--overlay {
    display: none;
  }
  .about__photo--main {
    height: 320px;
  }
}



@media (max-width: 980px) {
  .why {
    display: flex;
    flex-direction: column;
  }
  .why__content {
    order: 2;
    padding: 32px 20px;
  }
  .why__media {
    order: 1;
    min-height: 40vh;
  }
}

@media (max-width: 640px) {
  .title {
    font-size: 24px;
  }
  .lead {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .metrics {
    grid-template-columns: 1fr; /* stack metrics */
    gap: 16px;
  }
  .metric__icon {
    width: 40px;
    height: 40px;
  }
  .metric__num {
    font-size: 18px;
  }
}