:root {
  --au-green-deep: #064e23;
  --forest-mid: #145a3e;
  --emerald: #1a7a52;
  --leaf: #5db85d;
  --lime: #8ed16f;
  --cream: #faf8f2;
  --sand: #f3efe6;
  --warm: #f9f6ef;
  --orange: #e87c1e;
  --yellow: #f5c842;
  --orange-light: #fef3e7;
  --au-yellow: #f5c842;
  --au-yellow-soft: #fef6d9;
  --text: #2a2d28;
  --text-mid: #5c6358;
  --text-light: #8a9184;
}

/* ─── HERO SECTION TITLE ─── */
.page-hero {
  padding: 72px 60px 20px;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
  z-index: 0;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 20px;
}

.hero-overline::before,
.hero-overline::after {
  content: "";
  width: 32px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--leaf), transparent);
}
.hero-overline::after {
  background: linear-gradient(270deg, var(--leaf), transparent);
}

.page-hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 45px;
  line-height: 1.4;
  color: var(--forest);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.page-hero-title em {
  font-style: italic;
  color: var(--emerald);
}

.page-hero-para {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── SERVICE CARDS ─── */

.services-section {
  padding: 48px 60px 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background-color: transparent;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  position: relative;
  padding: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 64px rgba(12, 58, 45, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-card:hover::after {
  border-color: var(--emerald);
}

.service-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(12, 58, 45, 0.5));
}

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-badge.solar {
  color: #d49a2a;
}
.service-badge.solar .badge-dot {
  background: #f0b429;
}
.service-badge.ac {
  color: #2e6fa8;
}
.service-badge.ac .badge-dot {
  background: #4a9ade;
}
.service-badge.hotwater {
  color: var(--emerald);
}
.service-badge.hotwater .badge-dot {
  background: var(--leaf);
}
.service-badge.battery {
  color: #8a6dbf;
}
.service-badge.battery .badge-dot {
  background: #a88ad8;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.saving-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--au-yellow);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(232, 124, 30, 0.35);
}
.saving-tag:hover {
  background: #f7d35a;
}

.service-body {
  padding: 18px 16px 18px;
}

.service-icon-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon.solar {
  background: #fef7e6;
}
.service-icon.ac {
  background: #e8f2fc;
}
.service-icon.ac svg {
  color: #2e6fa8;
  stroke: currentColor;
}
.service-icon.hotwater svg {
  color: var(--emerald);
  stroke: currentColor;
}
.service-icon.battery svg {
  color: #8a6dbf;
  stroke: currentColor;
}
.service-card:hover .service-icon.ac svg {
  color: #d49a2a;
  stroke: currentColor;
}
.service-card:hover .service-icon.hotwater svg,
.service-card:hover .service-icon.battery svg {
  color: #d49a2a;
  stroke: currentColor;
}
.service-icon.hotwater {
  background: #e6f7ee;
}
.service-icon.battery {
  background: #f1ecf8;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-body h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--forest);
  letter-spacing: -0.3px;
}

.service-body p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.service-feature-tag {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--sand);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* ─── PRICING BLOCK ─── */
.pricing-block {
  background: linear-gradient(135deg, #f8faf6 0%, #f0f5ed 100%);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 24px;
  border: 1px solid rgba(26, 122, 82, 0.08);
  position: relative;
  overflow: hidden;
}

.pricing-block::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(232, 124, 30, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pricing-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff0e0;
  color: var(--yellow);
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.discount-badge svg {
  width: 13px;
  height: 13px;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.price-original {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  text-decoration: line-through;
  text-decoration-color: #d45b5b;
  text-decoration-thickness: 2px;
}

.price-discounted {
  font-family: "Outfit", sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -1px;
  line-height: 1;
}

.price-discounted sup {
  font-size: 16px;
  font-weight: 700;
  vertical-align: super;
  margin-left: 1px;
  color: var(--emerald);
}

.price-note {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

.price-note strong {
  color: var(--emerald);
  font-weight: 700;
}

.savings-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.savings-line svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.savings-line span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--emerald);
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.service-saving {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--emerald);
}

.select-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--forest);
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 12px rgba(12, 58, 45, 0.2);
}

.select-btn:hover {
  background: var(--emerald);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(12, 58, 45, 0.3);
}

.select-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.select-btn:hover svg {
  transform: translateX(3px);
}

/* ─── BOTTOM CTA ─── */
.bottom-cta {
  padding: 0 60px 80px;
}

.bottom-cta-inner {
  background: linear-gradient(
    135deg,
    var(--forest) 0%,
    #145a3e 50%,
    var(--emerald) 100%
  );
  border-radius: 24px;
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.bottom-cta-inner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(141, 209, 111, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.bottom-cta-inner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(232, 124, 30, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 400px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.cta-primary {
  background: var(--au-yellow);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(232, 124, 30, 0.35);
}
.cta-primary:hover {
  background: #f7d35a;
  transform: translateY(-2px);
}

.cta-secondary {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.cta-secondary:hover {
  color: var(--lime);
}
.cta-secondary svg {
  width: 18px;
  height: 18px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero .hero-overline {
  animation: fadeUp 0.6s ease-out both;
}
.page-hero-title {
  animation: fadeUp 0.6s ease-out 0.1s both;
}
.page-hero-para {
  animation: fadeUp 0.6s ease-out 0.2s both;
}
.service-card:nth-child(1) {
  animation: fadeUp 0.65s ease-out 0.3s both;
}
.service-card:nth-child(2) {
  animation: fadeUp 0.65s ease-out 0.4s both;
}
.service-card:nth-child(3) {
  animation: fadeUp 0.65s ease-out 0.5s both;
}
.service-card:nth-child(4) {
  animation: fadeUp 0.65s ease-out 0.6s both;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  /* .services-grid {
    grid-template-columns: 1fr;
  } */
  .topbar {
    padding: 10px 24px;
  }
  .topbar-left {
    display: none;
  }
  .navbar {
    padding: 0 24px;
  }
  .nav-phone {
    display: none;
  }
  .page-hero {
    padding: 56px 24px 16px;
  }
  .page-hero-title {
    font-size: 36px;
  }
  .services-section {
    padding: 36px 24px 60px;
  }
  .bottom-cta {
    padding: 0 18px 60px;
  }
  .bottom-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
    gap: 28px;
  }
  .cta-content p {
    max-width: 100%;
  }
  .cta-actions {
    flex-direction: column;
  }
  .service-saving {
    text-transform: capitalize;
  }
}
@media (max-width: 650px) {
  .service-body h3 {
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  .services-section {
    padding: 26px 18px 50px;
  }
  .services-grid {
    gap: 16px;
  }
  .service-icon-row {
    margin-bottom: 0px;
    align-items: self-start;
    gap: 8px;
  }
  .service-icon {
    width: 28px;
    height: 28px;
  }
  .service-icon svg {
    width: 18px;
    height: 18px;
  }
  .service-footer {
    gap: 10px;
    letter-spacing: 0.5px;
    flex-direction: column;

    padding-top: 0px;
    border-top: none;
  }
  .saving-tag {
    font-size: 11px;
    padding: 6px 14px;
  }
  .service-body h3 {
    font-size: 20px;
    letter-spacing: -0.2px;
  }

  .service-body p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 5.1em;
  }
  .price-discounted {
    font-size: 28px;
  }
  .price-original {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .pricing-label {
    display: none;
  }
  .savings-line {
    display: none;
  }
  .service-footer {
    flex-direction: column;
    gap: 10px;
  }
  .services-grid {
    gap: 18px;
  }
}
@media (max-width: 500px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .service-footer {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .page-hero-title {
    font-size: 30px;
  }
  .service-image {
    height: 200px;
  }
  .service-body h3 {
    font-size: 16px;
  }
  .service-body p {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .pricing-label {
    display: none;
  }

  .nav-cta {
    padding: 12px 20px;
    font-size: 11px;
  }
  .price-discounted {
    font-size: 28px;
  }
  .pricing-block {
    padding: 16px 18px;
  }
}

/* ─── POPUP MODAL STYLES FOR PRICING PAGE ONLY ─── */
.pricing-popup .popup-screen {
  position: relative;
  z-index: 10;
}

.pricing-popup .widgetModal-bgCover {
  fill: #095a2c;
  z-index: 0;
  border-radius: 16px 16px 0 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.pricing-popup .popup-overlay {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.pricing-popup .popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.pricing-popup .popup-modal {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 420px;
  max-height: 95vh;
  padding: 1rem;
  position: relative;
  transform: scale(0.99);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-popup .popup-overlay.active .popup-modal {
  transform: scale(1);
}

.pricing-popup .popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
  padding: 6px;
  z-index: 11;
}

.pricing-popup .popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.pricing-popup .popup-header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.pricing-popup .popup-logo {
  width: 140px;
  height: auto;
  margin-bottom: 0.6rem;
  filter: grayscale(1) brightness(5);
}

.pricing-popup .popup-header .heading-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.4rem;
}

.pricing-popup .popup-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-popup .popup-form-card {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px #0000000d;
  overflow-y: auto;
  max-height: calc(85vh - 60px);
}

/* Thin scrollbar for desktop */
.pricing-popup .popup-form-card::-webkit-scrollbar {
  width: 6px;
}

.pricing-popup .popup-form-card::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.pricing-popup .popup-form-card::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.pricing-popup .popup-form-card::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.pricing-popup .popup-form-group {
  margin-bottom: 1.2rem;
}

.pricing-popup .popup-form-group.pfg-last {
  margin-bottom: 0;
}

.pricing-popup .popup-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
  text-transform: inherit;
  letter-spacing: normal;
}

.pricing-popup .popup-form-group label span {
  font-weight: 500;
  color: #888;
  font-size: 0.6rem;
}

.pricing-popup .label-box {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: #333;
  font-size: 0.85rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  background: #fff;
  margin-bottom: 0.5rem;
}

.pricing-popup .label-box span {
  font-weight: 500;
  color: #888;
  font-size: 0.6rem;
}

.pricing-popup .popup-form-group select {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: var(--text-mid);
  font-size: 0.95rem;
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  cursor: pointer;
}

.pricing-popup .popup-form-group select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(104, 160, 34, 0.15);
}

.pricing-popup .popup-form-group select.has-error {
  border-color: #d93025;
}

.pricing-popup .popup-form-group select.has-error:focus {
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.15);
}

.pricing-popup .popup-form-group input {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  color: black;
  font-size: 0.95rem;
  font-family: "DM Sans", sans-serif;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.pricing-popup .popup-form-group input:-webkit-autofill,
.pricing-popup .popup-form-group input:-webkit-autofill:hover,
.pricing-popup .popup-form-group input:-webkit-autofill:focus,
.pricing-popup .popup-form-group input:-webkit-autofill:active {
  caret-color: var(--black) !important;
  color: var(--black) !important;
  -webkit-text-fill-color: var(--black) !important;
  -webkit-box-shadow: inset 0 0 0 100px var(--cream) !important;
  box-shadow: inset 0 0 0 100px var(--cream) !important;
}

.pricing-popup .popup-form-group input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(104, 160, 34, 0.15);
}

.pricing-popup .phone-input-wrapper {
  width: 100%;
}

.pricing-popup .iti__search-input-wrapper {
  padding: 8px 8px 10px 8px;
  border-bottom: 1px solid #dbdbdb;
}

.pricing-popup .iti__search-input-wrapper input {
  padding-left: 2.2rem !important;
}

.pricing-popup .iti__selected-dial-code {
  color: black !important;
}

.pricing-popup .iti__search-icon {
  left: 18px !important;
}

.pricing-popup .iti__search-icon .iti__search-icon-svg {
  width: 18px;
  height: 18px;
}

.pricing-popup .iti__country-list {
  max-height: 180px !important;
  overflow-y: auto !important;
}

.pricing-popup .iti {
  width: 100%;
  position: relative !important;
}

.pricing-popup .iti__country-list,
.pricing-popup .iti__dropdown-content {
  z-index: 10000 !important;
}

.pricing-popup .iti--container {
  z-index: 10000 !important;
}

.pricing-popup .iti__dropdown-content {
  top: auto !important;
  bottom: 100% !important;
  margin-bottom: 6px !important;
  z-index: 10000 !important;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1) !important;
  border-radius: 8px !important;
}

.pricing-popup .iti__country-list {
  max-height: 200px !important;
  overflow-y: auto !important;
}

.pricing-popup .popup-timer-card {
  text-align: center;
  padding: 2rem 1.8rem;
}

.pricing-popup .timer-title {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.4rem;
}

.pricing-popup .timer-subtitle {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
}

.pricing-popup .timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.pricing-popup .timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-popup .timer-num {
  font-size: 2.5rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1;
  min-width: 80px;
  text-align: center;
}

.pricing-popup .timer-label {
  font-size: 0.75rem;
  color: #999;
  text-transform: lowercase;
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

.pricing-popup .timer-sep {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1;
  align-self: flex-start;
  margin-top: 0.1rem;
}

.pricing-popup .popup-done-card {
  text-align: center;
}

.pricing-popup .done-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.4rem;
}

.pricing-popup .done-subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}

.pricing-popup .popup-done-btn {
  display: inline-block;
  padding: 0.85rem 3rem;
  background: var(--forest);
  color: var(--cream);
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  box-shadow: 0 4px 15px rgba(200, 230, 38, 0.35);
}

.pricing-popup .popup-done-btn:hover {
  background: var(--moss);
  transform: translateY(-1px);
}

.pricing-popup .popup-submit {
  width: 100%;
  padding: 0.6rem;
  height: 41px;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-popup .popup-submit:hover {
  background: var(--moss);
}

.pricing-popup .error-msg {
  color: #d93025;
  font-size: 0.75rem;
  margin-top: 4px;
  display: none;
  text-align: right;
  width: 100%;
}

.pricing-popup .popup-form-group > div {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.pricing-popup .popup-form-group > div > svg {
  position: absolute;
  left: 10px;
  top: 11px;
  z-index: 2;
  pointer-events: none;
  height: 20px;
  width: 20px;
}

.pricing-popup .popup-form-group > div > input,
.pricing-popup .popup-form-group > div > select {
  order: 1;
  width: 100%;
  height: 40px;
}

.pricing-popup .popup-form-group > div > .error-msg {
  order: 2;
  width: 100%;
  text-align: right;
  margin-top: 4px;
}

.pricing-popup .error-msg.show {
  display: block;
}

.pricing-popup .popup-form-group input.has-error {
  border-color: #d93025;
}

.pricing-popup .popup-form-group input.has-error:focus {
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.15);
}

.pricing-popup .btn-loader {
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
  display: none;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 600px) {
  .pricing-popup .popup-modal {
    margin: 1rem;
  }

  .pricing-popup .popup-header .heading-h2 {
    font-size: 1.3rem;
  }

  .pricing-popup .popup-form-card {
    padding: 1.2rem;
  }
}
