/* order.html — page-specific styles (base design system lives in assets/css/main.css) */

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

h1,
      h2,
      h3,
      h4 {
        font-family: "Syne", sans-serif;
        line-height: 1.2;
      }

.cl-logo {
        font-family: "Syne", sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 12px;
        animation: clFade 0.5s ease both;
      }

.cl-logo span {
        color: var(--green);
      }

.cl-bar {
        width: 200px;
        height: 3px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        overflow: hidden;
        animation: clFade 0.4s ease 0.2s both;
      }

.cl-fill {
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, var(--green), var(--blue));
        animation: barFill 0.45s ease 0.3s both;
      }

.logo em {
        font-style: normal;
        color: var(--green);
      }

.nav-links a:hover::after {
        left: 14px;
        right: 14px;
      }

.nav-links a:hover {
        color: var(--green);
      }

.ph-mesh {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 15% 60%,
            rgba(0, 212, 140, 0.13) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 85% 25%,
            rgba(167, 139, 250, 0.13) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 50% 100%,
            rgba(56, 189, 248, 0.08) 0%,
            transparent 50%
          );
      }

.orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(40px);
        opacity: 0.16;
        animation: orbFloat ease-in-out infinite;
      }

.orb1 {
        width: 460px;
        height: 460px;
        background: var(--green);
        top: -200px;
        left: -150px;
        animation-duration: 12s;
      }

.orb2 {
        width: 300px;
        height: 300px;
        background: var(--purple);
        bottom: -80px;
        right: -60px;
        animation-duration: 9s;
        animation-delay: -4s;
      }

.orb3 {
        width: 160px;
        height: 160px;
        background: var(--yellow);
        top: 20%;
        right: 10%;
        animation-duration: 7s;
        animation-delay: -2s;
      }

.page-hero > div > p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 1.05rem;
        line-height: 1.75;
        max-width: 600px;
        margin: 0 auto 28px;
        animation: hFade 0.7s ease 0.35s both;
      }

.hero-badges {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        animation: hFade 0.7s ease 0.5s both;
      }

.hero-badge {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.85);
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 0.82rem;
        display: flex;
        align-items: center;
        gap: 7px;
        transition: all 0.3s;
        cursor: default;
      }

.hero-badge:hover {
        background: rgba(0, 212, 140, 0.15);
        border-color: rgba(0, 212, 140, 0.4);
        transform: translateY(-3px);
      }

.hero-badge i {
        color: var(--green);
      }

.steps-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        margin-bottom: 36px;
        animation: hFade 0.7s ease 0.3s both;
      }

.step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        flex: 1;
        max-width: 180px;
      }

.step-item:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 18px;
        left: 50%;
        right: -50%;
        height: 2px;
        background: var(--border);
        z-index: 0;
        transition: background 0.4s;
      }

.step-item.done:not(:last-child)::after {
        background: var(--green);
      }

.step-num {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Syne", sans-serif;
        font-size: 0.85rem;
        font-weight: 800;
        border: 2px solid var(--border);
        background: var(--white);
        color: var(--muted);
        z-index: 1;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
      }

.step-item.active .step-num {
        background: var(--green);
        border-color: var(--green);
        color: var(--navy);
        box-shadow: 0 0 0 6px rgba(0, 212, 140, 0.15);
        animation: stepPulse 2s ease-in-out infinite;
      }

@keyframes stepPulse {
        0%,
        100% {
          box-shadow: 0 0 0 6px rgba(0, 212, 140, 0.12);
        }
        50% {
          box-shadow: 0 0 0 10px rgba(0, 212, 140, 0.06);
        }
      }

.step-item.done .step-num {
        background: var(--green);
        border-color: var(--green);
        color: var(--navy);
      }

.step-label {
        font-size: 0.72rem;
        color: var(--muted);
        margin-top: 6px;
        font-weight: 600;
        text-align: center;
        white-space: nowrap;
      }

.step-item.active .step-label {
        color: var(--green);
      }

.order-card {
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: 24px;
        padding: 48px;
        box-shadow: 0 8px 40px rgba(11, 31, 58, 0.09);
        position: relative;
        overflow: hidden;
        animation: hFade 0.7s ease 0.2s both;
        max-width: 860px;
        margin: 0 auto;
      }

.order-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(
          90deg,
          var(--green),
          var(--blue),
          var(--purple),
          var(--green)
        );
        background-size: 300% auto;
        animation: gradMove 4s linear infinite;
      }

.order-card::after {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 260px;
        height: 260px;
        background: radial-gradient(
          circle,
          rgba(0, 212, 140, 0.07) 0%,
          transparent 65%
        );
        border-radius: 50%;
        animation: orbFloat 10s ease-in-out infinite;
      }

.order-card h2 {
        font-size: 1.5rem;
        color: var(--navy);
        margin-bottom: 6px;
      }

.order-card > p {
        color: var(--muted);
        font-size: 0.9rem;
        margin-bottom: 32px;
      }

.form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }

.fg-full {
        grid-column: 1/-1;
      }

.fgroup {
        margin-bottom: 0;
      }

.fgroup label {
        display: block;
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 7px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.2s;
      }

.fgroup:focus-within label {
        color: var(--green);
      }

.fgroup input,
      .fgroup select,
      .fgroup textarea {
        width: 100%;
        background: var(--off);
        border: 1.5px solid var(--border);
        color: var(--text);
        border-radius: 10px;
        padding: 12px 14px;
        font-size: 0.92rem;
        font-family: "DM Sans", sans-serif;
        transition: all 0.25s;
        outline: none;
      }

.fgroup select {
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%235e7a9a' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-color: var(--off);
        padding-right: 36px;
        cursor: pointer;
      }

.fgroup input:focus,
      .fgroup select:focus,
      .fgroup textarea:focus {
        border-color: var(--green);
        background: rgba(0, 212, 140, 0.05);
        box-shadow: 0 0 0 4px rgba(0, 212, 140, 0.1);
      }

.fgroup input:hover,
      .fgroup select:hover,
      .fgroup textarea:hover {
        border-color: rgba(0, 212, 140, 0.4);
      }

.fgroup textarea {
        resize: vertical;
        min-height: 130px;
        line-height: 1.7;
      }

.fgroup {
        position: relative;
      }

.field-icon {
        position: absolute;
        right: 13px;
        top: 39px;
        color: var(--muted);
        font-size: 0.85rem;
        transition: color 0.25s;
        pointer-events: none;
      }

.fgroup:focus-within .field-icon {
        color: var(--green);
      }

.fgroup input:not(:placeholder-shown) + .field-icon,
      .fgroup select:not([value=""]) + .field-icon {
        color: var(--green);
      }

.upload-zone {
        background: var(--off);
        border: 2px dashed var(--border);
        border-radius: 14px;
        padding: 28px 20px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }

.upload-zone::before {
        content: "";
        position: absolute;
        top: 0;
        left: -70%;
        width: 50%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.6),
          transparent
        );
        transform: skewX(-20deg);
        transition: left 0.7s ease;
      }

.upload-zone:hover::before {
        left: 140%;
      }

.upload-zone:hover {
        border-color: var(--green);
        background: rgba(0, 212, 140, 0.04);
        transform: scale(1.01);
      }

.upload-zone.drag-over {
        border-color: var(--green);
        background: rgba(0, 212, 140, 0.08);
        transform: scale(1.02);
      }

.upload-icon {
        width: 52px;
        height: 52px;
        background: rgba(0, 212, 140, 0.1);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: var(--green);
        margin: 0 auto 12px;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

.upload-zone:hover .upload-icon {
        background: var(--green);
        color: var(--navy);
        transform: scale(1.12) rotate(-8deg);
      }

.upload-title {
        font-weight: 700;
        color: var(--navy);
        font-size: 0.95rem;
        margin-bottom: 4px;
        font-family: "Syne", sans-serif;
      }

.upload-sub {
        font-size: 0.82rem;
        color: var(--muted);
      }

.upload-btn {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: var(--white);
        border: 1.5px solid var(--border);
        padding: 8px 18px;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        color: var(--text);
        margin-top: 12px;
        transition: all 0.2s;
      }

.upload-btn:hover {
        border-color: var(--green);
        color: var(--green);
      }

.file-list {
        margin-top: 12px;
        display: flex;
        flex-direction: column;
        gap: 6px;
      }

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0fdf7;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 8px;
  font-size: 0.87rem;
  color: var(--text);
}
.file-item i.fa-file-alt { color: var(--green2); margin-right: 8px; }
.file-item small { color: var(--muted); margin-left: 4px; }

.file-item .remove-file {
  background: none;
  border: none;
  color: #b91c1c;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 6px;
  transition: background 0.15s;
}
.file-item .remove-file:hover { background: #fee2e2; }

.price-display {
        background: var(--navy);
        border-radius: 16px;
        padding: 24px 28px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
        margin-bottom: 24px;
        position: relative;
        overflow: hidden;
      }

.price-display::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(0, 212, 140, 0.08) 0%,
          transparent 55%
        );
      }

.price-display::after {
        content: "💰";
        position: absolute;
        right: 140px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 3.5rem;
        opacity: 0.05;
      }

.pd-label {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        margin-bottom: 4px;
      }

.pd-price {
        font-family: "Syne", sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--green);
        line-height: 1.2;
      }

.pd-sub {
        color: rgba(255, 255, 255, 0.35);
        font-size: 0.75rem;
        margin-top: 3px;
      }

.pd-checklist {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        position: relative;
        z-index: 1;
      }

.pd-check {
        display: flex;
        align-items: center;
        gap: 5px;
        background: rgba(0, 212, 140, 0.12);
        border: 1px solid rgba(0, 212, 140, 0.2);
        color: rgba(255, 255, 255, 0.75);
        padding: 5px 11px;
        border-radius: 20px;
        font-size: 0.76rem;
        transition: all 0.2s;
      }

.pd-check:hover {
        background: rgba(0, 212, 140, 0.2);
        transform: translateY(-2px);
      }

.pd-check i {
        color: var(--green);
      }

.btn-submit {
        width: 100%;
        background: var(--green);
        color: var(--navy);
        font-family: "Syne", sans-serif;
        font-weight: 800;
        padding: 18px 32px;
        border-radius: 14px;
        font-size: 1.05rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 28px rgba(0, 212, 140, 0.38);
        animation: idleBounce 3s ease-in-out infinite 3s;
      }

.btn-submit::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
        );
        transform: translateX(-100%);
      }

.btn-submit:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s;
      }

.btn-submit:hover {
        background: var(--green2);
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 18px 40px rgba(0, 212, 140, 0.55);
        animation: none;
      }

.btn-submit:active {
        transform: scale(0.98);
      }

.btn-submit i {
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

.btn-submit:hover i {
        transform: translateX(6px) rotate(-10deg);
      }

#successOverlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(11, 31, 58, 0.85);
        z-index: 9999;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease;
      }

#successOverlay.show {
        display: flex;
      }

@keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

.success-box {
        background: var(--white);
        border-radius: 24px;
        padding: 52px 44px;
        text-align: center;
        max-width: 480px;
        width: 90%;
        animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
      }

@keyframes popIn {
        from {
          transform: scale(0.75);
          opacity: 0;
        }
        to {
          transform: scale(1);
          opacity: 1;
        }
      }

.success-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--green), var(--blue));
        animation: gradMove 3s linear infinite;
      }

.success-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(0, 212, 140, 0.1);
        border: 3px solid var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--green);
        margin: 0 auto 20px;
        animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
      }

@keyframes iconPop {
        from {
          transform: scale(0) rotate(-30deg);
        }
        to {
          transform: scale(1) rotate(0);
        }
      }

.success-box h3 {
        font-size: 1.6rem;
        color: var(--navy);
        margin-bottom: 10px;
        font-family: "Syne", sans-serif;
      }

.success-box p {
        color: var(--muted);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 24px;
      }

.success-confetti {
        position: absolute;
        inset: 0;
        pointer-events: none;
      }

.trust-strip {
        background: var(--off);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 18px 24px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
      }

.trust-item {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 0.82rem;
        color: var(--muted);
      }

.trust-item i {
        color: var(--green);
        font-size: 0.9rem;
      }

.side-info {
        display: flex;
        flex-direction: column;
        gap: 16px;
        animation: hFade 0.7s ease 0.5s both;
      }

.info-card {
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: 16px;
        padding: 22px;
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        position: relative;
        overflow: hidden;
      }

.info-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -70%;
        width: 50%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.5),
          transparent
        );
        transform: skewX(-20deg);
        transition: left 0.6s ease;
      }

.info-card:hover::before {
        left: 130%;
      }

.info-card:hover {
        border-color: var(--green);
        box-shadow: 0 8px 28px rgba(0, 212, 140, 0.1);
        transform: translateY(-3px);
      }

.info-card-icon {
        width: 44px;
        height: 44px;
        background: rgba(0, 212, 140, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: var(--green);
        margin-bottom: 12px;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

.info-card:hover .info-card-icon {
        background: var(--green);
        color: var(--navy);
        transform: scale(1.12) rotate(-8deg);
      }

.info-card h4 {
        font-size: 0.92rem;
        color: var(--navy);
        margin-bottom: 5px;
        font-family: "Syne", sans-serif;
      }

.info-card p {
        font-size: 0.84rem;
        color: var(--muted);
        line-height: 1.6;
        margin: 0;
      }

.deadline-timer {
        background: var(--navy);
        border-radius: 16px;
        padding: 22px;
        text-align: center;
      }

.deadline-timer h4 {
        color: var(--white);
        font-size: 0.9rem;
        margin-bottom: 16px;
        font-family: "Syne", sans-serif;
      }

.timer-display {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 14px;
      }

.timer-unit {
        background: rgba(0, 212, 140, 0.1);
        border: 1px solid rgba(0, 212, 140, 0.25);
        border-radius: 10px;
        padding: 10px 14px;
        min-width: 58px;
        text-align: center;
      }

.timer-num {
        font-family: "Syne", sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--green);
        display: block;
        line-height: 1;
      }

.timer-lbl {
        font-size: 0.62rem;
        color: rgba(255, 255, 255, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 3px;
      }

.timer-msg {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.8rem;
        line-height: 1.5;
      }

.timer-msg strong {
        color: var(--green);
      }

.btn-dark::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.07),
          transparent
        );
        transform: translateX(-100%);
      }

.btn-dark:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s;
      }

.btn-dark i {
        transition: transform 0.3s;
      }

.btn-dark:hover i {
        transform: translateX(5px);
      }

.btn-wa::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.15),
          transparent
        );
        transform: translateX(-100%);
      }

.btn-wa:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s;
      }

.btn-wa i {
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

.btn-wa:hover i {
        transform: rotate(20deg) scale(1.25);
      }

/* .footer-grid {
        max-width: 1240px;
        margin: auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 56px;
      }

.footer-logo em {
        font-style: normal;
        color: var(--green);
      }

.footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding: 22px 0;
        max-width: 1240px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.35);
      }

.footer-bottom a {
        color: rgba(255, 255, 255, 0.35);
        transition: color 0.2s;
      }

.footer-bottom a:hover {
        color: var(--green);
      } */

.order-layout {
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 32px;
        align-items: start;
        max-width: 1160px;
        margin: 0 auto;
      }

/* ============================================================
   RESPONSIVE — Order Page
   ============================================================ */
@media (max-width: 960px) {
  .order-layout {
    grid-template-columns: 1fr;
  }
  .side-info {
    order: 2; /* sidebar drops below the form on smaller screens */
  }
  .order-card {
    order: 1;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .steps-bar {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 460px) {
  .order-card, .info-card {
    padding: 20px;
  }
  .success-box {
    padding: 32px 24px;
  }
}

.error-msg {
  color: #b91c1c;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
}
.order-success-msg {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1.5px solid #6ee7b7;
  border-radius: 14px;
  padding: 20px 22px;
  margin-top: 16px;
  animation: slideInSuccess 0.35s ease;
}
.order-success-msg i {
  font-size: 1.8rem;
  color: var(--green2);
  flex-shrink: 0;
  margin-top: 2px;
}
.order-success-msg .success-content strong {
  display: block;
  font-size: 1.05rem;
  color: #065f46;
  margin-bottom: 4px;
}
.order-success-msg .success-content p {
  margin: 0;
  color: #047857;
  font-size: 0.9rem;
  line-height: 1.5;
}

@keyframes slideInSuccess {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.overlay-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--muted);
  cursor: pointer;
  padding: 6px;
}
.overlay-close:hover { color: var(--text); }

.field-missing {
  border-color: #f59e0b !important;
}

.estimated-price-box {
  margin-top: 28px;
  padding: 24px;
  border-radius: 16px;
  background: var(--hero-bg, #111827);
  border: 1px solid rgba(255,255,255,.1);
  color: #00c896;
}

.estimated-price-header {
  margin-bottom: 22px;
}

.estimated-price-header > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,200,150,.15);
  color: #00c896;
  font-size: 18px;
}

.estimated-price-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #00c896; 
}

.estimated-price-header p {
  margin: 4px 0 0;
  font-size: .8rem;
  color: #ffff;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.price-row span {
  font-weight: bold;
}

.price-row strong {
  font-size: 1rem;
}

.price-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.89);
  margin: 12px 0;
}

.price-total strong {
  font-size: 1.45rem;
  color: #00c896;
}

.price-note {
  margin: 18px 0 0;
  font-size: .78rem;
  color: white;
}

.price-note i {
  margin-right: 5px;
}