/* =========================================
   HERO – LUXURY, TRUST-FIRST ALIGNMENT
   ========================================= */

.hero-refined {
  max-width: 640px;              /* anchors content lower */
  text-align: left;
}

/* BRAND */
.hero-refined .hero-heading {
  font-size: 80px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.15;
}

/* EXPERIENCE LINE */
.hero-refined .hero-heading span {
  display: block;
  margin-top: 14px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #b9a37a;
}

/* SUB-HEADING */
.hero-refined .hero-subheading {
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.9;
  color: #e0e0e0;
  max-width: 560px;
}

/* CTA GROUP */
.hero-refined .hero-actions {
  margin-top: 46px;
  display: flex;
  gap: 20px;
  align-items: center;
}

/* PRIMARY CTA */
.hero-refined .hero-primary {
  background: #b9a37a;
  color: #000;
  padding: 16px 42px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-refined .hero-primary:hover {
  background: #d1bb8e;
}

/* SECONDARY CTA */
.hero-refined .hero-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  color: #ffffff;
  padding: 16px 40px;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-refined .hero-secondary:hover {
  border-color: #b9a37a;
  color: #b9a37a;
}

/* =========================================
   RESPONSIVE – STILL PREMIUM
   ========================================= */

@media (max-width: 991px) {
  .hero-refined {
    padding-top: 100px;
  }

  .hero-refined .hero-heading {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .hero-refined {
    padding-top: 70px;
    text-align: center;
    max-width: 100%;
  }

  .hero-refined .hero-actions {
    flex-direction: column;
  }

  .hero-refined .hero-subheading {
    margin-left: auto;
    margin-right: auto;
  }
}





/* =========================================
   HERO TRUST STRIP – AUTHORITY BUILDER
   ========================================= */

.hero-trust-strip {
  margin-top: 52px;
  display: flex;
  gap: 42px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  max-width: 720px;
}

/* Individual trust item */
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Icon container */
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(185,163,122,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG styling */
.trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: #b9a37a;
  stroke-width: 2;
  fill: none;
}

/* Text */
.trust-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.trust-text span {
  display: block;
  font-size: 13px;
  color: #cfcfcf;
  margin-top: 2px;
}

/* =========================================
   RESPONSIVE – STILL TRUSTWORTHY
   ========================================= */

@media (max-width: 991px) {
  .hero-trust-strip {
    flex-wrap: wrap;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .hero-trust-strip {
    justify-content: center;
    text-align: center;
  }

  .trust-item {
    flex-direction: column;
    gap: 10px;
  }
}


/* ================================
   LUXURY SERVICES – FINAL ALIGNED
   ================================ */

.luxury-services {
  padding: 80px 0 70px;              /* reduced – no dead space */
  background: #272727;
}

/* HEADER */
.services-header {
  max-width: 720px;
  margin-bottom: 40px;               /* pull services upward */
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  color: #b9a37a;
  display: block;
  margin-bottom: 14px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.services-header p {
  font-size: 16px;
  line-height: 1.75;
  color: #cfcfcf;
}

.services-header p strong {
  color: #ffffff;
  font-weight: 500;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;                    /* tighter & balanced */
}

/* SERVICE ITEM */
.service-item {
  padding-top: 0;                    /* remove fake spacing */
  border-top: none;  
  padding-bottom: 18px; /* space before border */
  border-bottom: 1px solid rgba(185, 163, 122, 0.25); /* luxury gold divider */                /* REMOVE – was breaking flow */
}

/* ================================
   SERVICE IMAGE – VISIBILITY FIX
   ================================ */

.service-image {
  height: 160px;                 /* increased for presence */
  display: flex;
  align-items: center;
  justify-content: flex-start;   /* left-aligned luxury */
  margin-bottom: 1px;
}

.service-image img {
  max-height: 220px;             /* 👈 MAIN FIX */
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.95);
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Subtle premium hover */
.service-item:hover .service-image img {
  transform: translateY(-2px);  /* micro lift */
  filter: brightness(1.1);
}


/* TITLE */
.service-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* DESCRIPTION */
.service-item p {
  font-size: 15px;
  color: #cfcfcf;
  line-height: 1.65;
  max-width: 260px;                  /* keeps columns tight */
}

/* HOVER – SUBTLE & PREMIUM */
.service-item:hover h3 {
  color: #b9a37a;
}

.service-item:hover img {
  filter: brightness(1.1);
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 35px;
  }
}

@media (max-width: 576px) {
  .luxury-services {
    padding: 60px 0 55px;
  }

  .services-header {
    margin-bottom: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-image {
    justify-content: center;          /* center on mobile */
  }

  .service-item p {
    max-width: 100%;
  }
}


@media (max-width: 576px) {
  .service-image {
    height: 120px;
    justify-content: center;
  }

  .service-image img {
    max-height: 220px;
    max-width: 220px;
  }
}




/* ================================
   THE IDRIS RITUAL
   ================================ */

.idris-ritual {
  padding: 100px 0 90px;
  background: #272727;
}

/* HEADER */
.ritual-header {
  max-width: 760px;
  margin-bottom: 60px;
}

.ritual-header h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 18px;
}

.ritual-header p {
  font-size: 16px;
  line-height: 1.75;
  color: #cfcfcf;
}

/* STEPS GRID */
.ritual-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}

/* STEP CARD */
.ritual-step {
  position: relative;
  padding-top: 40px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 13px;
  letter-spacing: 2px;
  color: #b9a37a;
}

/* STEP TITLE */
.ritual-step h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

/* STEP TEXT */
.ritual-step p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* FOOTER */
.ritual-footer {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.75;
  color: #cfcfcf;
  border-top: 1px solid rgba(185,163,122,0.25);
  padding-top: 22px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .ritual-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .ritual-steps::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .ritual-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ritual-header h2 {
    font-size: 32px;
  }
}


.step-icon {
  margin: 14px 0 14px;
  width: 36px;
  height: 36px;
  color: #b9a37a;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.ritual-step {
  opacity: 0;
  transform: translateY(20px);
  animation: stepReveal 0.8s ease forwards;
}

.ritual-step:nth-child(1) { animation-delay: 0.1s; }
.ritual-step:nth-child(2) { animation-delay: 0.2s; }
.ritual-step:nth-child(3) { animation-delay: 0.3s; }
.ritual-step:nth-child(4) { animation-delay: 0.4s; }
.ritual-step:nth-child(5) { animation-delay: 0.5s; }
.ritual-step:nth-child(6) { animation-delay: 0.6s; }

@keyframes stepReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.ritual-step:hover .step-icon {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.ritual-step:hover h4 {
  color: #b9a37a;
}


.step-icon svg {
  width: 28px;
  height: 28px;
  stroke: #b9a37a;
  stroke-width: 1.4;
  fill: none;
}


.ritual-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  position: relative;
  padding-top: 40px;
}

@keyframes progressFill {
  to { width: 100%; }
}


.ritual-step {
  opacity: 0;
  transform: translateY(20px);
  animation: stepIn 0.8s ease forwards;
}

.ritual-step:nth-child(2) { animation-delay: .2s; }
.ritual-step:nth-child(3) { animation-delay: .4s; }
.ritual-step:nth-child(4) { animation-delay: .6s; }
.ritual-step:nth-child(5) { animation-delay: .8s; }
.ritual-step:nth-child(6) { animation-delay: 1s; }

@keyframes stepIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-count {
  font-size: 13px;
  color: #b9a37a;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}



/* ================================
   IDRIS AUTO PROGRESS RITUAL
   ================================ */

.idris-progress-wrapper {
  margin-top: 50px;
}

/* BAR BASE */
.idris-progress-bar {
  position: relative;
  height: 2px;
  background: rgba(185,163,122,0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PROGRESS FILL */
.progress-fill {
  position: absolute;
  height: 2px;
  width: 0;
  background: #b9a37a;
  left: 0;
  top: 0;
  animation: fillProgress 6s linear forwards;
}

/* STEP */
.progress-step {
  position: relative;
  text-align: center;
  width: 16%;
}

/* DOT */
.progress-step .dot {
  width: 18px;
  height: 18px;
  background: #272727;
  border: 2px solid rgba(185,163,122,0.4);
  border-radius: 50%;
  margin: -9px auto 12px;
  transition: all 0.4s ease;
}

/* LABEL */
.progress-step p {
  font-size: 14px;
  color: #9d9d9d;
  transition: color 0.4s ease;
}

/* ACTIVE STEP */
.progress-step.active .dot {
  background: #b9a37a;
  border-color: #b9a37a;
  box-shadow: 0 0 0 6px rgba(185,163,122,0.15);
}

.progress-step.active p {
  color: #ffffff;
}

/* PROGRESS ANIMATION */
@keyframes fillProgress {
  from { width: 0; }
  to { width: 100%; }
}






/* ==============================
   RITUAL TRACK
   ============================== */

.ritual-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-top: 60px;
  padding-top: 40px;
}

/* Base line */
.ritual-track::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(185,163,122,0.25);
}

/* Animated fill */
.track-fill {
  position: absolute;
  top: 20px;
  left: 0;
  height: 2px;
  width: 0;
  background: #b9a37a;
  animation: fillTrack 6s linear forwards;
}

@keyframes fillTrack {
  to { width: 100%; }
}

/* ==============================
   STEP CARD
   ============================== */

.ritual-step {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: stepReveal 0.6s ease forwards;
}

.ritual-step:nth-child(1){animation-delay:.3s}
.ritual-step:nth-child(2){animation-delay:1.3s}
.ritual-step:nth-child(3){animation-delay:2.3s}
.ritual-step:nth-child(4){animation-delay:3.3s}
.ritual-step:nth-child(5){animation-delay:4.3s}
.ritual-step:nth-child(6){animation-delay:5.3s}

@keyframes stepReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ==============================
   DOT + ICON
   ============================== */

.step-dot {
  width: 22px;
  height: 22px;
  margin: 0 auto 16px;
  background: #272727;
  border: 2px solid rgba(185,163,122,0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.4s ease;
}

.step-dot svg {
  width: 14px;
  height: 14px;
  stroke: #b9a37a;
  stroke-width: 1.6;
  fill: none;
}

.ritual-step.active .step-dot {
  background: #b9a37a;
  box-shadow: 0 0 0 6px rgba(185,163,122,0.15);
}

.ritual-step.active svg {
  stroke: #272727;
}

/* ==============================
   TEXT
   ============================== */

.ritual-step h4 {
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 6px;
}

.ritual-step p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}



/* ================================
   IDRIS RITUAL – PREMIUM TIMELINE
   ================================ */

.ritual-timeline {
  margin-top: 80px;
  margin-bottom: 80px;

}

/* BAR */
.timeline-bar {
  position: relative;
  height: 2px;
  background: rgba(185,163,122,0.25);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  margin-bottom: 50px;
}

/* FILL */
.timeline-fill {
  position: absolute;
  height: 2px;
  width: 0;
  background: #b9a37a;
  animation: timelineFill 6s linear forwards;
}

/* STEP */
.timeline-step {
  position: relative;
  text-align: center;
  z-index: 2;
}

/* ICON */
.timeline-step .icon {
  width: 44px;
  height: 44px;
  background: #272727;
  border: 2px solid rgba(185,163,122,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -22px auto 0;
  transition: all .4s ease;
}

.timeline-step svg {
  width: 20px;
  height: 20px;
  stroke: #b9a37a;
  stroke-width: 1.4;
  fill: none;
}

/* ACTIVE */
.timeline-step.active .icon {
  background: #b9a37a;
  box-shadow: 0 0 0 10px rgba(185,163,122,0.12);
}

.timeline-step.active svg {
  stroke: #272727;
}

/* LABELS */
.timeline-labels {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}

.timeline-labels h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}

.timeline-labels p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* ANIMATION */
@keyframes timelineFill {
  to { width: 100%; }
}



/* =====================================
   MOBILE FIX – VERTICAL IDRIS RITUAL
   ===================================== */

@media (max-width: 768px) {

  /* TIMELINE WRAPPER */
  .ritual-timeline {
    margin-top: 50px;
    margin-bottom: 60px;
  }

  /* BAR → VERTICAL */
  .timeline-bar {
    grid-template-columns: 1fr;
    height: auto;
    background: none;
    margin-bottom: 0;
    position: relative;
    padding-left: 28px;
  }

  /* VERTICAL BASE LINE */
  .timeline-bar::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(185,163,122,0.25);
  }

  /* VERTICAL FILL */
  .timeline-fill {
    width: 2px;
    height: 0;
    left: 14px;
    top: 0;
    animation: timelineFillVertical 6s linear forwards;
  }

  @keyframes timelineFillVertical {
    to { height: 100%; }
  }

  /* STEP */
  .timeline-step {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
  }

  /* ICON POSITION */
  .timeline-step .icon {
    margin: 0;
    transform: translateX(-22px);
  }

  /* LABELS STACK */
  .timeline-labels {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-left: 42px;
  }

  .timeline-labels h4 {
    font-size: 17px;
  }

  .timeline-labels p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* HEADER SPACING */
  .ritual-header {
    margin-bottom: 40px;
  }

  .ritual-header h2 {
    font-size: 32px;
  }

  /* FOOTER */
  .ritual-footer {
    margin-top: 40px;
    padding-top: 20px;
  }
}


/* =====================================================
   IDRIS RITUAL – MOBILE VERTICAL FIX (FINAL)
   ===================================================== */

@media (max-width: 768px) {

  /* HIDE HORIZONTAL BAR */
  .timeline-bar {
    display: none;
  }

  /* RESET TIMELINE CONTAINER */
  .ritual-timeline {
    margin-top: 50px;
  }

  /* STACK LABELS VERTICALLY */
  .timeline-labels {
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
    padding-left: 48px; /* space for icons + line */
  }

  /* VERTICAL GUIDE LINE */
  .timeline-labels::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(185,163,122,0.25);
  }

  /* EACH STEP ROW */
  .timeline-labels > div {
    position: relative;
    padding-left: 12px;
  }

  /* ICON FROM DESKTOP REUSED */
  .timeline-labels > div::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 2px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #272727;
    border: 2px solid rgba(185,163,122,0.45);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* STEP ICON MAPPING */
  .timeline-labels > div:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23b9a37a' stroke-width='1.6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cline x1='3' y1='9' x2='21' y2='9'/%3E%3C/svg%3E");
  }

  .timeline-labels > div:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23b9a37a' stroke-width='1.6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='2' width='12' height='20'/%3E%3Ccircle cx='14' cy='12' r='1'/%3E%3C/svg%3E");
  }

  .timeline-labels > div:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23b9a37a' stroke-width='1.6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 12h14v7l4-4v-7H3z'/%3E%3C/svg%3E");
  }

  .timeline-labels > div:nth-child(4)::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23b9a37a' stroke-width='1.6' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Cline x1='8' y1='8' x2='20' y2='20'/%3E%3Cline x1='8' y1='16' x2='20' y2='4'/%3E%3C/svg%3E");
  }

  .timeline-labels > div:nth-child(5)::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23b9a37a' stroke-width='1.6' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='3' y1='12' x2='21' y2='12'/%3E%3Cpolyline points='15 6 21 12 15 18'/%3E%3C/svg%3E");
  }

  .timeline-labels > div:nth-child(6)::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23b9a37a' stroke-width='1.6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s-7-4.5-7-10a4 4 0 0 1 7-2 4 4 0 0 1 7 2c0 5.5-7 10-7 10z'/%3E%3C/svg%3E");
  }

  /* TEXT SIZING */
  .timeline-labels h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
  }

  .timeline-labels p {
    font-size: 14px;
    color: #cfcfcf;
    line-height: 1.6;
  }

  /* HEADER SCALE */
  .ritual-header h2 {
    font-size: 30px;
  }

  .ritual-header p {
    font-size: 15px;
  }
}


/* =====================================================
   IDRIS RITUAL – MOBILE PROGRESS ANIMATION (FINAL)
   ===================================================== */

   .idris-ritual {
  position: relative;
  padding: 100px 0 90px;
  background:
    radial-gradient(
      1200px 600px at 20% 10%,
      rgba(185,163,122,0.08),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #2b2b2b 0%,
      #272727 60%,
      #242424 100%
    );
  overflow: hidden;
}


@media (max-width: 768px) {

  /* Hide horizontal timeline */
  .timeline-bar {
    display: none;
  }

  /* Vertical layout */
  .timeline-labels {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    padding-left: 56px;
  }

  /* Base vertical line */
  .timeline-labels::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(185,163,122,0.25);
  }

  /* Animated vertical fill */
  .timeline-labels::after {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    width: 2px;
    height: 0;
    background: #b9a37a;
    transition: height 0.8s ease;
  }
  

  /* STEP ITEM */
  .timeline-labels > div {
    position: relative;
  }

  /* ICON HOLDER */
  .timeline-labels > div::before {
    content: "";
    position: absolute;
    left: -56px;
    top: 2px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #272727;
    border: 2px solid rgba(185,163,122,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  /* ACTIVE STEP */
  .timeline-labels > div.active::before {
    background: #b9a37a;
    box-shadow: 0 0 0 10px rgba(185,163,122,0.12);
  }

  /* TEXT */
  .timeline-labels h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
  }

  .timeline-labels p {
    font-size: 14px;
    color: #cfcfcf;
    line-height: 1.6;
  }
}


.timeline-labels::after {
  height: var(--mobile-fill, 0%);
}


/* ===============================
   BOOKING SPLIT SECTION
   =============================== */

.booking-split-section {
  padding: 100px 0;
  background: #1f1f1f;
}

.booking-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT INFO */
.booking-info h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 20px;
}

.info-desc {
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* CONTACT */
.contact-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.phone-icon {
  width: 70px;
  height: 70px;
  background: #111;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.phone-details .label {
  font-size: 13px;
  color: #ff0000;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.phone-number {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

/* TIMING */
.timing p {
  font-size: 15px;
  color: #cfcfcf;
  margin-bottom: 4px;
}

.timing .closed {
  margin-top: 10px;
  color: #999;
}

/* CALLBACK */
.callback {
  margin-top: 30px;
  font-size: 15px;
}

.callback a {
  color: #ffffff;
  text-decoration: underline;
}

/* RIGHT FORM */
.booking-form-wrapper {
  background: linear-gradient(180deg, #2b2b2b, #222);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 45px;
  border-radius: 12px;
}

.booking-title {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 6px;
}

.booking-subtitle {
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 25px;
}

/* FORM */
.booking-step {
  display: none;
}
.booking-step.active {
  display: block;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea,
.date-input {
  width: 100%;
  padding: 12px;
  background: #1b1b1b;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
}

.form-group option {
  background: #ffffff;
  color: #000;
}

/* BUTTONS */
.next-btn,
.submit-btn {
  margin-top: 20px;
  padding: 14px 30px;
  background: #b9a37a;
  border: none;
  color: #272727;
  font-weight: 600;
  cursor: pointer;
}

.next-btn:hover,
.submit-btn:hover {
  background: #d1bc90;
}

/* MOBILE */
@media (max-width: 991px) {
  .booking-split-grid {
    grid-template-columns: 1fr;
  }

  .booking-info h2 {
    font-size: 32px;
  }

  .phone-number {
    font-size: 26px;
  }
}


.phone-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(
    circle at top,
    #2e2e2e 0%,
    #151515 70%
  );
  border: 1px solid rgba(185,163,122,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 18px 40px rgba(0,0,0,0.75);
  overflow: hidden; /* 👈 CRITICAL FIX */
}

/* SVG RESET (prevents distortion) */
.phone-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  stroke: #b9a37a;
  stroke-width: 1.6;
  fill: none;
  vector-effect: non-scaling-stroke;
}

/* Hover – premium, subtle */
.phone-icon:hover {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 22px 50px rgba(0,0,0,0.85);
}

.phone-icon:hover svg {
  stroke: #e2cf9a;
}




