@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

/* ===== RESET & VARIABLES ===== */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --bg:#fff;--fg:#1a1d23;--muted:#6b7280;--border:#e5e7eb;
  --surface:#f3f4f6;--accent:#2563eb;--accent-fg:#fff;
  --success:#16a34a;--radius:1rem;
  --shadow-sm:0 1px 3px rgba(0,0,0,.08);
  --shadow-md:0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:0 20px 40px rgba(0,0,0,.15);
}
body{font-family:'DM Sans',system-ui,sans-serif;background:var(--bg);color:var(--fg);-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}
img{display:block;max-width:100%}

/* ===== HEADER ===== */
.header{display:flex;align-items:center;justify-content:space-between;max-width:1200px;margin:0 auto;padding:1rem 1.5rem}
.header-left{display:flex;align-items:center;gap:.75rem}
.logo{font-size:1.75rem;font-weight:700;letter-spacing:-.03em}
.header-divider{width:1px;height:24px;background:var(--border);margin:0 .25rem}
.guarantee{display:flex;align-items:center;gap:.5rem;font-size:.8rem;font-weight:600;line-height:1.3}
.guarantee u{text-underline-offset:3px}
.header-nav{display:flex;align-items:center;gap:2rem}
.nav-btn{display:flex;flex-direction:column;align-items:center;gap:4px}
.nav-btn .icon-box{width:48px;height:48px;border-radius:12px;background:var(--surface);display:flex;align-items:center;justify-content:center;transition:background .2s,color .2s}
.nav-btn:hover .icon-box{background:var(--fg);color:#fff}
.nav-btn span{font-size:.7rem;font-weight:500}
.header-right{display:flex;align-items:center;gap:.75rem}
.search-pill{display:flex;align-items:center;gap:.5rem;background:var(--surface);border-radius:999px;padding:.6rem 1rem;font-size:.85rem;color:var(--muted);width:200px}
.circle-btn{width:40px;height:40px;border-radius:50%;background:var(--surface);display:flex;align-items:center;justify-content:center;overflow:hidden}
.circle-btn img{width:24px;height:24px;border-radius:50%;object-fit:cover}

/* ===== FILTER BAR ===== */
.filter-wrap{padding:1rem 1.5rem}
.filter-bar{display:flex;max-width:900px;margin:0 auto;border:1px solid var(--border);border-radius:var(--radius);background:var(--bg);box-shadow:var(--shadow-sm)}
.filter-item{flex:1;display:flex;align-items:center;gap:.75rem;padding:1rem 1.25rem;border-right:1px solid var(--border);cursor:pointer;transition:background .2s}
.filter-item:last-child{border-right:none}
.filter-item:hover{background:var(--surface)}
.filter-label{font-size:.7rem;color:var(--muted)}
.filter-value{font-size:.85rem;font-weight:600;display:flex;align-items:center;gap:4px}
.filter-value .chevron{font-size:.6rem;color:var(--muted)}

/* ===== SECTIONS ===== */
.section{padding:2rem 1.5rem}
.container{max-width:1200px;margin:0 auto}
.section-title{font-size:1.25rem;font-weight:700;margin-bottom:1.25rem;letter-spacing:-.01em}

/* ===== CARD GRID ===== */
.card-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1.25rem}
@media(min-width:768px){.card-grid{grid-template-columns:repeat(4,1fr)}}
@media(min-width:1024px){.card-grid{grid-template-columns:repeat(5,1fr)}}

/* ===== COUNTRY CARD ===== */
.country-card{position:relative;border-radius:var(--radius);overflow:hidden;cursor:pointer;aspect-ratio:3/4;transition:transform .3s,box-shadow .3s}
.country-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.country-card img.bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.country-card .overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.3) 50%,rgba(0,0,0,.1) 100%)}
.country-card .content{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;padding:1rem;color:#fff}
.country-card .content.center{justify-content:center;align-items:center;text-align:center}
.country-card .flag{width:32px;height:32px;border-radius:50%;object-fit:cover;margin-bottom:.25rem}
.country-card h3{font-size:1rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin-bottom:.75rem}
.no-visa-badge{display:inline-block;padding:.25rem .75rem;border-radius:999px;font-size:.7rem;font-weight:600;background:rgba(255,255,255,.2);backdrop-filter:blur(4px)}
.card-meta{display:flex;gap:0;font-size:.6rem;text-transform:uppercase;letter-spacing:.08em}
.card-meta>div{flex:1}
.card-meta>div:last-child{text-align:right}
.card-meta .label{display:block;color:rgba(255,255,255,.55)}
.card-meta .val{font-weight:700}
.guaranteed-info{padding:.5rem .25rem 0}
.guaranteed-info .gi-label{font-size:.7rem;color:var(--muted)}
.guaranteed-info .gi-date{font-size:.85rem;font-weight:600}

/* ===== FOOTER ===== */
.site-footer{background:var(--fg);color:#d1d5db;margin-top:auto;padding:3rem 1.5rem 1.5rem}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2rem}
.footer-logo{font-size:1.75rem;font-weight:700;color:#fff;letter-spacing:-.03em}
.footer-tagline{font-size:.85rem;margin:.5rem 0 1rem;color:#9ca3af}
.footer-socials{display:flex;gap:.75rem}
.footer-socials a{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;color:#fff;font-size:.85rem;transition:background .2s}
.footer-socials a:hover{background:rgba(255,255,255,.2)}
.footer-col h4{font-size:.8rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:#fff;margin-bottom:.75rem}
.footer-col a{display:block;font-size:.85rem;color:#9ca3af;padding:.25rem 0;transition:color .2s}
.footer-col a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:2rem;padding-top:1.25rem;text-align:center;font-size:.8rem;color:#6b7280}

/* ===== MODAL ===== */
.modal-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.6);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;z-index:1000;animation:fadeIn .25s ease}
.modal-backdrop.hidden{display:none}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.modal-box{background:#fff;border-radius:1.25rem;width:90%;max-width:580px;max-height:90vh;overflow-y:auto;box-shadow:var(--shadow-lg);animation:slideUp .3s ease}
@keyframes slideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.modal-head{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid var(--border)}
.modal-head-left{display:flex;align-items:center;gap:.75rem}
.modal-flag{width:40px;height:40px;border-radius:50%;object-fit:cover}
.modal-head h2{font-size:1.1rem;font-weight:700}
.modal-meta{font-size:.78rem;color:var(--muted)}
.modal-x{width:36px;height:36px;border:none;background:var(--surface);border-radius:50%;font-size:1.2rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s}
.modal-x:hover{background:var(--border)}

/* Stepper */
.stepper{display:flex;align-items:center;padding:1.25rem 1.5rem}
.stepper-step{display:flex;align-items:center;gap:.4rem;font-size:.78rem;color:var(--muted);white-space:nowrap}
.stepper-step.active{color:var(--accent);font-weight:600}
.stepper-step.done{color:var(--success)}
.stepper-dot{width:28px;height:28px;border-radius:50%;border:2px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;flex-shrink:0}
.stepper-step.active .stepper-dot{border-color:var(--accent);background:var(--accent);color:#fff}
.stepper-step.done .stepper-dot{border-color:var(--success);background:var(--success);color:#fff}
.stepper-line{width:24px;height:2px;background:var(--border);margin:0 .35rem;flex-shrink:0}
.stepper-step.done .stepper-line{background:var(--success)}

/* Modal Body */
.modal-body{padding:1.25rem 1.5rem}
.modal-body h3{font-size:1rem;font-weight:700;margin-bottom:1rem}
.field-grid{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
.field-grid label{display:flex;flex-direction:column;gap:.3rem}
.field-grid label span{font-size:.78rem;font-weight:600;color:var(--muted)}
.field-grid input,.field-grid select{padding:.6rem .75rem;border:1px solid var(--border);border-radius:.5rem;font-size:.9rem;font-family:inherit;outline:none;transition:border-color .2s}
.field-grid input:focus,.field-grid select:focus{border-color:var(--accent);box-shadow:0 0 0 3px rgba(37,99,235,.1)}
.check-label{display:flex;align-items:center;gap:.5rem;margin-top:.75rem;font-size:.85rem;cursor:pointer}
.check-label input[type=checkbox]{width:18px;height:18px;accent-color:var(--accent)}

/* Review */
.review-cards{display:grid;grid-template-columns:1fr 1fr 1fr;gap:.75rem}
.review-card{background:var(--surface);padding:1rem;border-radius:.75rem}
.review-card h4{font-size:.7rem;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);margin-bottom:.5rem}
.review-card p{font-size:.82rem;line-height:1.6}

/* Modal Foot */
.modal-foot{display:flex;align-items:center;padding:1rem 1.5rem;border-top:1px solid var(--border)}
.btn-back{padding:.6rem 1.25rem;border:1px solid var(--border);border-radius:.5rem;background:#fff;font-size:.85rem;font-family:inherit;cursor:pointer;transition:background .2s}
.btn-back:hover{background:var(--surface)}
.btn-next{padding:.6rem 1.5rem;border:none;border-radius:.5rem;background:var(--fg);color:#fff;font-size:.85rem;font-weight:600;font-family:inherit;cursor:pointer;transition:opacity .2s}
.btn-next:disabled{opacity:.35;cursor:not-allowed}
.btn-next:hover:not(:disabled){opacity:.85}
.btn-submit{padding:.7rem 2rem;border:none;border-radius:.5rem;background:var(--accent);color:#fff;font-size:.9rem;font-weight:700;font-family:inherit;cursor:pointer;transition:opacity .2s}
.btn-submit:hover{opacity:.9}

/* Success */
.success-box{text-align:center;padding:3rem 2rem}
.success-check{width:64px;height:64px;border-radius:50%;background:var(--success);color:#fff;font-size:2rem;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem}
.success-box h2{font-size:1.35rem;margin-bottom:.5rem}
.success-box p{color:var(--muted);font-size:.9rem}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .header-nav{display:none}
  .search-pill{display:none}
  .filter-bar{flex-direction:column}
  .filter-item{border-right:none;border-bottom:1px solid var(--border)}
  .filter-item:last-child{border-bottom:none}
  .footer-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
  .field-grid,.review-cards{grid-template-columns:1fr}
}
@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr}
}


/* ========================================================
   ===== START OF NEW SECTIONS CSS =====
   ======================================================== */

/* ── Shared section helpers ── */
.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  background: rgba(37,99,235,.08);
  padding: .3rem .75rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.section-label.light {
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
}
.section-sub {
  font-size: .95rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.section-sub.light {
  color: rgba(255,255,255,.6);
}
.section-title.light {
  color: #fff;
}

/* ========================================================
   ===== START OF NEW SECTION: SERVICES CSS =====
   ======================================================== */

.services-section {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem 1.5rem;
  cursor: default;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.04) 0%, rgba(37,99,235,0) 60%);
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(37,99,235,.12);
  border-color: rgba(37,99,235,.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: .75rem;
  background: rgba(37,99,235,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: background .3s, transform .3s;
}

.service-card:hover .service-icon {
  background: var(--accent);
  transform: scale(1.08);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  transition: color .3s;
}

.service-card:hover .service-icon svg {
  color: #fff;
}

.service-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.service-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.service-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  background: rgba(37,99,235,.08);
  padding: .2rem .6rem;
  border-radius: 999px;
  transition: background .3s, color .3s;
}

.service-card:hover .service-tag {
  background: var(--accent);
  color: #fff;
}

@media(max-width:1023px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== END OF NEW SECTION: SERVICES CSS ===== */


/* ========================================================
   ===== START OF NEW SECTION: TESTIMONIALS CSS =====
   ======================================================== */

.testimonials-section {
  background: var(--fg);
  padding: 4rem 1.5rem;
}

.testimonials-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testi-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
  z-index: 2;
}

.testi-arrow:hover {
  background: rgba(255,255,255,.2);
  transform: scale(1.05);
}

.testi-arrow svg {
  width: 18px;
  height: 18px;
}

.testimonials-track-wrap {
  flex: 1;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.testi-card {
  flex: 0 0 calc(33.333% - .85rem);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testi-stars {
  font-size: 1rem;
  color: #fbbf24;
  letter-spacing: .05em;
}

.testi-card blockquote {
  font-size: .88rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testi-card blockquote::before {
  content: '\201C';
  font-size: 1.5rem;
  color: rgba(255,255,255,.2);
  line-height: 0;
  vertical-align: -.4rem;
  margin-right: .1rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
}

.testi-location {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: .1rem;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}

.testi-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.testi-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  flex-wrap: wrap;
}

.testi-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  flex: 1;
  min-width: 100px;
}

.testi-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
}

.testi-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.testi-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
  margin: 0 1rem;
}

@media(max-width:1023px) {
  .testi-card { flex: 0 0 calc(50% - .65rem); }
}

@media(max-width:640px) {
  .testi-card { flex: 0 0 100%; }
  .testi-arrow { display: none; }
  .testi-stats { gap: 1rem; }
  .testi-stat-divider { display: none; }
  .testi-stat { min-width: 50%; }
}

/* ===== END OF NEW SECTION: TESTIMONIALS CSS ===== */


/* ========================================================
   ===== START OF NEW SECTION: DESTINATIONS CSS =====
   ======================================================== */

.destinations-section {
  background: #fafafa;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.dest-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-color: #1a1d23;
  transition: transform .35s ease, box-shadow .35s ease;
}

.dest-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.15) 100%);
}

.dest-card:not(.dest-featured) {
  aspect-ratio: 4/3;
}

.dest-featured {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  min-height: 480px;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.1) 100%);
  transition: background .35s ease;
}

.dest-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
}

.dest-badge {
  display: inline-block;
  padding: .3rem .75rem;
  background: rgba(251,191,36,.9);
  color: #1a1d23;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: .75rem;
  align-self: flex-start;
}

.dest-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .4rem;
  line-height: 1.1;
}

.dest-featured h3 {
  font-size: 2rem;
}

.dest-card p {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: .75rem;
  max-width: 280px;
}

.dest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: .6rem;
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  letter-spacing: .03em;
}

/* Zoom effect on bg image */
.dest-card img.dest-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.dest-card:hover img.dest-bg {
  transform: scale(1.05);
}

@media(max-width:900px) {
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .dest-featured {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 320px;
  }
  .dest-card:not(.dest-featured) {
    aspect-ratio: 3/2;
  }
}

@media(max-width:600px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-featured { grid-column: 1; min-height: 280px; }
  .dest-card:not(.dest-featured) { aspect-ratio: 4/3; }
}

/* ===== END OF NEW SECTION: DESTINATIONS CSS ===== */


/* ========================================================
   ===== START OF NEW SECTION: CTA CSS =====
   ======================================================== */

.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--fg);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(37,99,235,.25);
  top: -100px;
  left: -80px;
  animation: ctaFloat 8s ease-in-out infinite;
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(37,99,235,.15);
  bottom: -60px;
  right: -40px;
  animation: ctaFloat 10s ease-in-out infinite reverse;
}

@keyframes ctaFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.08); }
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fbbf24;
  background: rgba(251,191,36,.12);
  border: 1px solid rgba(251,191,36,.25);
  padding: .35rem .875rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.cta-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.cta-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  color: var(--fg);
  font-size: .9rem;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: .65rem;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 0 0 0 rgba(255,255,255,.3);
  animation: ctaPulse 3s ease-in-out infinite;
}

.cta-btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform .2s;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  animation: none;
}

.cta-btn-primary:hover svg {
  transform: translateX(4px);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.3); }
  50% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
}

.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  font-weight: 600;
  padding: .85rem 1.75rem;
  border-radius: .65rem;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}

.cta-btn-ghost:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
  background: rgba(255,255,255,.05);
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}

.cta-trust span::before {
  color: #16a34a;
  margin-right: .25rem;
}

/* ===== END OF NEW SECTION: CTA CSS ===== */


/* ========================================================
   ===== FOOTER ENHANCEMENTS =====
   ======================================================== */

.footer-desc {
  font-size: .8rem;
  color: #6b7280;
  line-height: 1.65;
  margin: .5rem 0 1.25rem;
  max-width: 260px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  transition: background .2s, color .2s, transform .2s;
}

.footer-socials a:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== END FOOTER ENHANCEMENTS ===== */

/* ========================================================
   ===== END OF ALL NEW SECTIONS CSS =====
   ======================================================== */