/* =========================================================
   LEFT & RIGHT TOUR & TRAVEL IMMIGRATION PVT LTD
   Core Stylesheet
   ========================================================= */

:root {
  --navy: #16294b;
  --navy-light: #1f3864;
  --red: #b5311a;
  --red-dark: #8f2513;
  --gold: #c79a3a;
  --ink: #1c1f26;
  --grey-700: #4a4f59;
  --grey-500: #767c87;
  --grey-200: #e4e6ea;
  --grey-100: #f4f5f7;
  --white: #ffffff;
  --green-call: #2fae4e;
  --shadow-sm: 0 2px 8px rgba(22, 41, 75, 0.08);
  --shadow-md: 0 8px 24px rgba(22, 41, 75, 0.12);
  --shadow-lg: 0 20px 48px rgba(22, 41, 75, 0.18);
  --radius: 6px;
  --container: 1240px;
  --font-display: "Source Serif 4", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   TOP UTILITY STRIP (contact info, above header)
   ========================================================= */
.top-strip {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.top-strip__contacts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.top-strip__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
}
.top-strip__contacts a:hover { color: var(--gold); }
.top-strip__social {
  display: flex;
  gap: 10px;
}
.top-strip__social a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  font-size: 12px;
}
.top-strip__social a:hover { background: var(--gold); color: var(--navy); }

/* =========================================================
   HEADER ROW 1 — PRIMARY NAV
   ========================================================= */
.site-header { position: sticky; top: 0; z-index: 500; }

.nav-primary {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}
.nav-primary .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;}
.brand__mark {
  width: 70px;
  height: 70px;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #ffffff;
  border-radius: 8px;
  flex-shrink: 0;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__text strong {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.brand__text span {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: 0.2s;
}
.menu-toggle span::before { top: -6px; position: absolute; }
.menu-toggle span::after { top: 6px; position: absolute; }

.nav-primary__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-primary__list > li { position: relative; }
.nav-primary__list > li > a,
.nav-primary__list > li > button.nav-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 12px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.85);
  background: none;
  border: none;
  white-space: nowrap;
}
.nav-primary__list > li > a:hover,
.nav-primary__list > li > button.nav-trigger:hover,
.nav-primary__list > li.is-open > button.nav-trigger {
  color: var(--gold);
}
.nav-trigger .chev {
  font-size: 9px;
  transition: transform 0.15s ease;
}
.nav-primary__list > li.is-open .chev { transform: rotate(180deg); }

.nav-primary__list > li.has-dropdown.active-section > a,
.nav-primary__list > li.has-dropdown.active-section > button {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* Country-flag dropdown (Migrate, Permits, Study, Visit, Invest, Job Seeker Visa, Career Assistance Program) */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  z-index: 600;
}
li.is-open > .dropdown { display: block; }

.dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.dropdown__item:hover { background: var(--grey-100); color: var(--gold); }
.dropdown__item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.flag-chip {
  width: 26px; height: 18px;
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  background-size: cover;
}
.dropdown__item .chev-right { font-size: 11px; color: var(--grey-500); }

/* Text-link dropdown (Other Resources) */
.dropdown--resources { min-width: 260px; right: 0; left: auto; }
.dropdown--resources .dropdown__item-left { gap: 0; }

/* =========================================================
   HEADER ROW 2 — UTILITY BAR
   ========================================================= */
.nav-utility {
  background: var(--grey-100);
  border-bottom: 1px solid var(--grey-200);
}
.nav-utility .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  gap: 16px;
  flex-wrap: wrap;
}
.nav-utility__links {
  display: flex;
  gap: 22px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-utility__links a {
  font-size: 13px;
  font-weight: 800;
  color: var(--grey-700);
}
.nav-utility__links a:hover { color: var(--gold); }

.nav-utility__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.icon-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--grey-200);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--navy);
}
.icon-btn:hover { background: var(--navy); color: var(--white); }
.btn-pay {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 9px 20px;
  border-radius: 4px;
}
.btn-pay:hover { background: var(--navy-light); }

/* =========================================================
   BUTTONS (shared)
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: 0.15s ease;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover,
.btn-outline.is-active{
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #b3872f; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* =========================================================
   FLOATING CALL / WHATSAPP BUTTONS
   ========================================================= */

/* OLD */
/* .floating-actions a {
  position: fixed;
  z-index: 700;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-call);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-lg);
  bottom: 26px;
}
.floating-actions a:hover { transform: scale(1.06); }
.fab-call { left: 26px; }
.fab-whatsapp { right: 26px; background: #25d366; }

 */

 /* NEW FLOATING BTNS STYLES */
.floating-actions a {
  position: fixed;
  z-index: 700;
  width: 56px; 
  height: 56px;
  border-radius: 50%;
  background: var(--green-call);
  color: var(--white);
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-lg);
  bottom: 26px;
  transition: transform 0.2s ease;
}

.fab-call { left: 26px; }
.fab-whatsapp { right: 26px; background: #25d366; }


.floating-actions a:hover { 
  transform: scale(1.06); 
}

/* Hover Tooltip Text Styles */
/* Tooltip text box */
.floating-actions a[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 68px; 
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1f2937; 
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Tooltip downward arrow */
.floating-actions a[data-tooltip]::after {
  content: "";
  position: absolute;
  bottom: 60px; 
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border-width: 5px;
  border-style: solid;
  border-color: #1f2937 transparent transparent transparent;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Show tooltip on hover */
.floating-actions a[data-tooltip]:hover::before,
.floating-actions a[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0); 
}



/* =========================================================
   BREADCRUMB / PAGE HEADER
   ========================================================= */
.page-header {
  background: linear-gradient(120deg, var(--navy) 0%, #20365e 100%);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-header .breadcrumb {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-header .breadcrumb a:hover { color: var(--gold); }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 12px;
}
.page-header p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0;
}
.page-header__flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

/* =========================================================
   SECTION SPACING / EYEBROW / HEADINGS
   ========================================================= */
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.bg-grey { background: var(--grey-100); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--navy);
  margin: 0 0 14px;
  line-height: 1.25;
}
.bg-navy h2.section-title { color: var(--white); }
.section-sub {
  font-size: 16px;
  color: var(--grey-700);
  max-width: 640px;
  margin: 0 0 0;
}
.bg-navy .section-sub { color: rgba(255,255,255,0.78); }

.section-head { margin-bottom: 40px; }
.section-head--center { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head--center .eyebrow::before { display: none; }

/* =========================================================
   GRID UTILITIES
   ========================================================= */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* =========================================================
   CARD COMPONENTS
   ========================================================= */
.tile-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.2s;
}
.tile-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tile-card__icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  background: rgba(181,49,26,0.1);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 4px;
}
.tile-card h3 { font-size: 17px; margin: 0; color: var(--navy); }
.tile-card p { font-size: 14px; color: var(--grey-700); margin: 0; }

.country-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 18px 18px;
  font-weight: 700;
  color: var(--navy);
  transition: 0.2s;
}
.country-card:hover { border-color: var(--gold); background: var(--grey-100); }
.country-card .flag-chip { width: 34px; height: 24px; font-size: 10px; }

.stat-card { text-align: center; }
.stat-card .num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--navy);
  display: block;
  line-height: 1;
}
.stat-card .lbl { font-size: 13.5px; color: var(--grey-700); margin-top: 6px; display: block; }

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; color: var(--navy); font-size: 14.5px; }
.testimonial-card__meta { font-size: 12.5px; color: var(--grey-500); }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.testimonial-card p.quote { font-size: 14.5px; color: var(--grey-700); margin: 0; }

/* =========================================================
   ACCORDION (FAQ)
   ========================================================= */
.accordion__item {
  border-bottom: 1px solid var(--grey-200);
}
.accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
}
.accordion__trigger .plus { font-size: 20px; color: var(--gold); transition: transform 0.2s; }
.accordion__item.is-open .plus { transform: rotate(45deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.accordion__panel-inner { padding: 0 4px 18px; color: var(--grey-700); font-size: 14.5px; }

/* =========================================================
   FORMS
   ========================================================= */
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--grey-200);
  border-radius: 4px;
  font-size: 14.5px;
  font-family: inherit;
  background: var(--white);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--grey-700);
  margin-bottom: 18px;
}
.consent-row input { margin-top: 3px; width: auto; }
.form-success {
  display: none;
  background: #e8f5ea;
  border: 1px solid #bfe3c7;
  color: #1e6b30;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 12px;
}
.form-success.is-visible { display: block; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, #20365e 100%);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); margin: 0 0 10px; }
.cta-band p { color: rgba(255,255,255,0.78); margin: 0 0 28px; }
.cta-band__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.78); }
.footer-top { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.footer-brand .brand__text strong { color: var(--white); }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.6); margin: 14px 0 18px; max-width: 260px; }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--gold); }
.footer-newsletter input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 13.5px;
  margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.footer-pay { margin-bottom: 22px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-contacts { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom-contacts a { color: rgba(255,255,255,0.75); }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.5); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .nav-primary__list { display: none; }
  .menu-toggle { display: flex; }
  .nav-utility__links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .cols-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-header { padding: 48px 0 40px; }
  section { padding: 56px 0; }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .top-strip__contacts a:nth-child(3) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .fab-call { left: 16px; bottom: 16px; width: 50px; height: 50px; }
  .fab-whatsapp { right: 16px; bottom: 16px; width: 50px; height: 50px; }
}

/* Mobile nav (overlay) */
@media (max-width: 1080px) {
  .nav-primary__list.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 24px 16px 40px;
    overflow-y: auto;
    z-index: 900;
    align-items: stretch;
    gap: 0;
  }
  .nav-primary__list.mobile-open > li { width: 100%; }
  .nav-primary__list.mobile-open > li > a,
  .nav-primary__list.mobile-open > li > button.nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 14px 8px;
    border-bottom: 1px solid var(--grey-200);
  }
  .nav-primary__list.mobile-open .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    display: none;
    width: 100%;
  }
  .nav-primary__list.mobile-open li.is-open > .dropdown { display: block; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,20,30,0.5);
    z-index: 800;
  }
  .nav-overlay.is-visible { display: block; }
}



/* Floating Appointment Popup */

/* Main Popup Wrapper */
.appointment-popup {
  box-sizing: border-box;
  position: fixed;
  bottom: 92px;
  right: 26px;
  z-index: 750;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Card Container */
.appointment-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  width: 230px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  border: 1px solid #e2e8f0;
  transform: translateX(calc(100% + 40px)); 
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s;
}


.appointment-popup.is-active .appointment-card {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.popup-txt-container {
  height: 50%;
}

.appointment-card__text {
  margin: 0 0 10px 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
}

.appointment-card div.appointment-card__actions {
  margin-top: 20px;
  display: grid !important;
 
  grid-template-columns: 1fr 1fr !important; 
  gap: 8px !important;

  width: 100% !important;
  box-sizing: border-box !important;
}


.appointment-card .appointment-card__actions .apt-btn {

  width: 100% !important;
  max-width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  position: relative !important;

  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  padding: 0 8px !important;
  margin: 0 !important;
  
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  border-radius: 6px !important;
  text-align: center !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}


.appointment-card .appointment-card__actions .apt-btn--yes {
  background-color: #0284c7 !important;
  color: #ffffff !important;
  border-color: #0284c7 !important;
}

.appointment-card .appointment-card__actions .apt-btn--yes:hover {
  background-color: #38bdf8 !important; 
  color: #0f172a !important;
  border-color: #38bdf8 !important;
}

.appointment-card .appointment-card__actions .apt-btn--no {
  background-color: #f1f5f9 !important;
  color: #475569 !important;
  border-color: #cbd5e1 !important;
}

.appointment-card .appointment-card__actions .apt-btn--no:hover {
  background-color: #cbd5e1 !important; 
  color: #0f172a !important;
  border-color: #cbd5e1 !important;
}

/* Slide-in Arrow Reopen Button */
.appointment-reopen {
  position: absolute;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1e293b;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateX(calc(100% + 40px));
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.2s;
}

.appointment-reopen:hover {
  background-color: #0284c7;
}

.appointment-popup.is-collapsed .appointment-reopen {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}