/* ============================================================
   VISA TRAVEL EXPERT — INDEX.CSS (VERSION A, FULLY PATCHED)
   FIXES:
   • Header no longer breaks layout
   • No white gap between header + hero
   • Hero now full-width & not expanding page
   • Sliders no longer cause page stretching
=========================================================== */

/* ------------------------------------------------------------
   GLOBAL
------------------------------------------------------------- */
:root {
  --sun1:#ff6a00;
  --sun2:#ee0979;
  --sun3:#8f00ff;

  --accent: linear-gradient(90deg, var(--sun1), var(--sun2), var(--sun3));
  --accent-soft: linear-gradient(135deg, #fff6ee, #ffe6f7);

  --text-dark:#111;
  --muted:#666;

  --content-max:1300px;
  --ease:cubic-bezier(.2,.9,.25,1);
}

* { margin:0; padding:0; box-sizing:border-box; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ------------------------------------------------------------------
   UNIVERSAL TITLES & ANIMATION
------------------------------------------------------------------- */
section { padding:50px 12px; }

.centered-title {
  text-align:center;
  font-size:28px;
  font-weight:800;
  margin-bottom:26px;
  color:var(--text-dark);
}

.theme-title span {
  background:var(--accent);
  -webkit-background-clip:text;
  color:transparent;
}

/* ===========================================================
   HERO SECTION — CLEAN MODERN VERSION  (IMG-BASED SLIDER)
=========================================================== */

.hero-section{
  width:100%;
  padding:0;
  overflow:hidden;
  position:relative;
  z-index:5;
}

/* container */
.hero-wrap{
  width:100%;
  height:clamp(540px,75vh,780px);
  position:relative;
  overflow:hidden;
}

/* slider track */
.hero-slider{
  display:flex;
  height:100%;
  transition:transform .6s ease;
}

/* each slide */
.slide{
  min-width:100%;
  height:100%;
  position:relative;
  flex:0 0 100%;
  overflow:hidden; /* ensures image doesn't overflow on scale */
}

/* ===============================
   HERO IMAGE (new, critical)
================================ */
.hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  /* prevents white/blank issue on Chrome WebP */
  backface-visibility:hidden;
  transform:translateZ(0);
}

/* ==========================================
   GRADIENT OVERLAY FROM BOTTOM (30%)
========================================== */
.slide::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:35%;
  background:linear-gradient(
      to top,
      rgba(0,0,0,.75),
      rgba(0,0,0,0)
  );
  pointer-events:none;
  z-index:1;
}

/* ==========================================
   CAPTION (BOTTOM CENTER)
========================================== */

.hero-caption{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  text-align:center;

  z-index:2;
  width:92%;
  max-width:1100px;
  padding:0 12px;
}

.hero-caption h1{
  margin:0;
  font-weight:800;
  color:#fff;

  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;

  font-size:clamp(20px,4vw,44px);
  letter-spacing:.3px;
}

@media(max-width: 768px){
  .hero-caption h1{
    white-space: normal;
  }
}

/* ==========================================
   ARROWS
========================================== */

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(0,0,0,.4);
  color:#fff;
  font-size:30px;
  border:0;
  cursor:pointer;
  z-index:3;
  backdrop-filter:blur(4px);
}

.hero-arrow.left{ left:10px; }
.hero-arrow.right{ right:10px; }

.hero-arrow:hover{
  background:rgba(0,0,0,.6);
}

/* ==========================================
   DOTS
========================================== */

.hero-dots{
  position:absolute;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:4;
}

.hero-dot{
  width:11px;
  height:11px;
  border-radius:50%;
  background:rgba(255,255,255,.55);
  cursor:pointer;
}

.hero-dot.active{
  background:var(--sun1,#ff6a00);
}

/* ==========================================
   MOBILE VIEW
========================================== */
@media(max-width:768px){

  .hero-wrap{
    height:clamp(300px,70vh,620px);
  }

  .hero-caption{
    bottom:28px;
    width:95%;
  }

  .hero-caption h1{
    white-space:normal;
    line-height:1.25;
    font-size:clamp(18px,5.8vw,26px);
  }

  .hero-arrow{
    width:40px;
    height:40px;
    font-size:22px;
  }
}

/* tiny phones */
@media(max-width:420px){
  .hero-wrap{
    height:60vh;
  }
}

/* ============================================================
   OFFER GRID
=========================================================== */
.offer-grid {
  max-width:var(--content-max);
  margin:auto;
  display:grid;
  gap:22px;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
}
.offer-card {
  background:#fff;
  padding:25px;
  border-radius:20px;
  box-shadow:0 6px 26px rgba(0,0,0,.08);
  transition:.35s;
}
.offer-card:hover { transform:translateY(-4px); box-shadow:0 0 20px rgba(255,106,0,.4); }
.offer-icon { width:60px; margin-bottom:12px; }


/* ===========================================================
   PACKAGES SECTION — RECREATED (BUG-FREE)
=========================================================== */

.packages-section {
  padding: 60px 12px;
  overflow: hidden;
}

.pkg-3col-wrap {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg-col {
  position: relative;
  overflow: hidden;
}

.pkg-col-title {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}

/* SLIDER */
.pkg-slider {
  width: 100%;
  overflow: hidden;
}

.pkg-track {
  display: flex;
  will-change: transform;
}

/* CARD */
.pkg-card {
  flex: 0 0 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,.1);
  overflow: hidden;
}

.pkg-img-wrap {
  height: 360px;
  overflow: hidden;
}

.pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.pkg-card:hover .pkg-img {
  transform: scale(1.15);
}

.pkg-info {
  padding: 14px;
}

.pkg-meta {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #ff6a00;
}

.pkg-book {
  text-align: right;
  margin-top: 8px;
}

.pkg-book a {
  background: #ff6a00;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
}

/* ARROWS */
.pkg-nav {
  position: absolute;
  top: 45%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,106,0,.25);
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
}

.pkg-nav.left { left: 6px; }
.pkg-nav.right { right: 6px; }

/* DOTS */
.pkg-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.pkg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.pkg-dot.active {
  background: #ff6a00;
}

@media (max-width: 900px) {
  .pkg-3col-wrap {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GOOGLE REVIEWS — POP + GLOW ONLY (FINAL, WORKING)
============================================================ */

.google-reviews-section {
  padding: 70px 12px;
  background: linear-gradient(180deg, #ffffff, #fff6f0);
}

.google-reviews-viewport {
  max-width: var(--content-max);
  margin: auto;
  overflow: visible;
}

.google-reviews-track {
  display: flex;
  gap: 22px;
  overflow: visible;
}

/* =====================
   CARD BASE
===================== */
.google-review-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 18px;
  min-width: calc(20% - 18px);
  border: 1px solid rgba(255,106,0,.15);
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  position: relative;
  cursor: pointer;
  overflow: visible;
  z-index: 1;
  will-change: transform;
  transition:
    transform .45s cubic-bezier(.2,.9,.25,1),
    box-shadow .45s ease;
}

/* =====================
   SLIDE UP ANIMATION
===================== */
.google-review-card.slide-up {
  animation: slideUpFade .6s ease both;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   GLOW RING (BORDER ONLY)
===================== */
.google-review-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 42px;
  background: linear-gradient(
    120deg,
    var(--sun1),
    var(--sun2),
    var(--sun3)
  );
  opacity: 0;
  filter: blur(30px);
  z-index: -1;
  transition: opacity .45s ease;
}

/* =====================
   POP OUT ON HOVER
===================== */
.google-review-card:hover {
  transform: translateY(-10px) scale(0.76);
  box-shadow: 0 10px 35px rgba(0,0,0,.22);
  z-index: 10;
}

.google-review-card:hover::before {
  opacity: .55;
}

/* =====================
   HEADER
===================== */
.review-head {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* =====================
   AVATAR
===================== */
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(120deg,var(--sun1),var(--sun2)) border-box;
  box-shadow: 0 0 12px rgba(255,106,0,.6);
  transition: transform .45s ease, box-shadow .45s ease;
}

.google-review-card:hover .review-avatar {
  transform: scale(1.18);
  box-shadow:
    0 0 0 5px rgba(255,106,0,.35),
    0 0 30px rgba(238,9,121,.65);
}

/* =====================
   TEXT
===================== */
.review-name {
  font-weight: 700;
  font-size: 14px;
  color: #111;
}

.review-time {
  font-size: 12px;
  color: #666;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #222;
  margin-top: 6px;

  /* 🔒 SAME HEIGHT FOR ALL CARDS */
  min-height: 4.8em;
  max-height: 4.8em;

  overflow: hidden;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* READ MORE (VISUAL ONLY) */
.read-toggle {
  font-weight: 700;
  background: linear-gradient(90deg,#ff6a00,#ee0979);
  -webkit-background-clip: text;
  color: transparent;
}

/* =====================
   GOOGLE VERIFIED
===================== */
.google-verified-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.google-g-icon {
  width: 16px;
  height: 16px;
}

.google-verified-row span {
  font-size: 12px;
  font-weight: 600;
  color: #1a73e8;
  animation: verifiedFloat 2.6s ease-in-out infinite;
}

@keyframes verifiedFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width:900px){
  .google-review-card { min-width: 48%; }
}
@media(max-width:600px){
  .google-review-card { min-width: 100%; }
}

/* ============================================================
   GOOGLE REVIEWS CTA — FORCE VISIBLE
============================================================ */
.google-reviews-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 20;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  box-shadow: 0 12px 30px rgba(255,106,0,.35);
  transition: all .35s ease;
  white-space: nowrap;
}

.google-review-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 42px rgba(238,9,121,.45);
}

.google-review-btn:active {
  transform: scale(.97);
}

/* MOBILE FIX */
@media (max-width: 600px) {
  .google-review-btn {
    width: 90%;
    justify-content: center;
    font-size: 14px;
    padding: 14px 20px;
  }
}

/* ============================================================
   SUCCESS STORIES — RESTORED + FIXED (SAFE)
============================================================ */

.success-section {
  overflow-x: hidden;
  overflow-y: visible;
}

.success-slider-wrap {
  max-width: var(--content-max);
  margin: auto;
  padding:50px 0 50px;
  overflow: visible; /* allow hover pop */
}

/* STATIC HOLDER — DO NOT TRANSFORM */
.success-row{
  display:flex;
  overflow: visible !important;  /* <— IMPORTANT FIX */
}

/* MOVING TRACK — ONLY THIS MOVES */
.success-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

/* =====================
   CARD
===================== */
.success-card {
  width: calc(((var(--content-max) - 5 * 22px) / 5));
  min-width: 220px;
  background: #fff;
  border-radius: 22px;
  position: relative;
  overflow: visible;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);

  /* reserve safe space so hover never clips */
  padding-top: 4px;

  /* stacking context */
  z-index: 1;

  transition:
    transform .45s cubic-bezier(.2,.9,.25,1),
    box-shadow .45s ease;
  transform-origin: center bottom;
}

/* Glow ring */
.success-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 34px;
  background: linear-gradient(120deg,var(--sun1),var(--sun2),var(--sun3));
  opacity: 0;
  filter: blur(30px);
  z-index: -1;
  transition: opacity .45s ease;
}

/* Hover pop — adjusted to avoid crop */
.success-card:hover {
  transform: translateY(-12px) scale(1.06);  /* <— slightly reduced */
  box-shadow: 0 20px 48px rgba(0,0,0,.22);
  z-index: 100; /* <— always above */
}

.success-card:hover::before {
  opacity: .6;
}

/* =====================
   IMAGE
===================== */
.success-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
  display:block;              /* prevents height collapse */
  pointer-events:none;
  aspect-ratio: 4 / 5;  /* or 1/1 or 3/2 */
}

/* =====================
   FLAG
===================== */
.flag-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  z-index: 3;
}

/* =====================
   BADGE
===================== */
.badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 26px;
  background: linear-gradient(90deg,var(--sun1),var(--sun2));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .35s ease;
}

.success-card:hover .badge {
  opacity: 0;
}

/* =====================
   INFO
===================== */
.success-info {
  padding: 14px 14px 36px;
}

.success-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.visa-type {
  color: var(--sun1);
  font-weight: 700;
  margin-top: 4px;
  font-size: 14px;
}

.success-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =====================
   MOBILE
===================== */
@media (max-width: 600px){

  .success-card{
    width: 88vw;
    min-width: 88vw;
  }

  .success-card:hover{
    transform: translateY(-8px) scale(1.04);
  }

  .success-img{
    height: auto;
    object-fit: contain;
  }
}

/* ================= WHY CHOOSE US ================= */
.why-choose-section {
  background: var(--accent-soft);
}

.why-grid {
  max-width: var(--content-max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 24px;
}

.why-card {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  position: relative;
  transition: .4s var(--ease);
}

.why-card::before {
  content:"";
  position:absolute;
  inset:-14px;
  border-radius:36px;
  background: var(--accent);
  filter: blur(28px);
  opacity:0;
  z-index:-1;
  transition:.4s;
}

.why-card:hover {
  transform: translateY(-10px);
}
.why-card:hover::before {
  opacity:.45;
}

.why-card svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: url(#);
  stroke-width: 2;
  margin-bottom: 14px;
  color: var(--sun1);
}

.why-card h4 {
  font-size: 17px;
  font-weight: 800;
}

.why-card p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

/* COUNTERS */
.why-stats {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat span {
  font-size: 42px;
  font-weight: 900;
  background: var(--accent);
  -webkit-background-clip:text;
  color: transparent;
}

.stat p {
  text-align:center;
  font-weight:600;
}

/* ============================================================
   FAQ SECTION — PROFESSIONAL ACCORDION
============================================================ */
.faq-section {
  background: #fff;
}

.faq-box {
  max-width: var(--content-max);
  margin: auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 20px;
  margin-bottom: 14px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  transition: .35s var(--ease);
  position: relative;
}

.faq-item:hover {
  box-shadow: 0 0 22px rgba(255,106,0,.35);
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  padding-right: 36px;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 0;
  font-size: 24px;
  color: var(--sun1);
  transition: .3s;
}

.faq-item.open .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  transition: max-height .4s ease;
  margin-top: 6px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================================
   CONTACT FORM — PROFESSIONAL & CLEAN VERSION
============================================================ */

/* SECTION BACKGROUND */
.contact-section {
  background: linear-gradient(180deg, #fff6ee 0%, #ffffff 100%);
  padding: 70px 14px;
}

/* WRAPPER */
.contact-wrap {
  max-width: var(--content-max);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: stretch;
}

@media (max-width:900px){
  .contact-wrap{ grid-template-columns:1fr; }
}

/* LEFT FORM */
.contact-left {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--sun1);
}

/* GRID INPUTS */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* INPUTS */
.contact-left input,
.contact-left select,
.contact-left textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid #ddd;
  background: #fafafa;
  font-size: 14.5px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* FOCUS STATE (rgba bug fixed) */
.contact-left input:focus,
.contact-left select:focus,
.contact-left textarea:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
  outline: none;
}

/* TEXTAREA */
.contact-left textarea {
  grid-column: 1 / -1;
  margin-top: 16px;
  resize: vertical;
  min-height: 120px;
}

/* OTP ROW */
.otp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  align-items: center;
}

/* ===============================
   BUTTON SYSTEM
================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.25s ease;
  user-select: none;
  white-space: nowrap;
}

/* SEND OTP — OUTLINE */
.btn-outline {
  background: #ffffff;
  color: #ff6a00;
  border: 2px solid #ff6a00;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #ffffff;
  border-color: transparent;
}

/* VERIFY — PRIMARY */
.btn-primary {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(238, 9, 121, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(238, 9, 121, 0.38);
}

.btn-primary:active {
  transform: scale(0.97);
}

/* DISABLED STATE */
.btn:disabled {
  pointer-events: none;
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* OTP INPUT */
.otp-input {
  flex: 1;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1.5px solid #ddd;
  font-size: 15px;
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.otp-input:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.15);
  outline: none;
}

/* RIGHT IMAGE */
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-photo {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
  }

  .otp-row {
    flex-direction: column;
    align-items: stretch;
  }

  .otp-input {
    max-width: 100%;
  }
}

/* ===============================
   PHONE WITH COUNTRY CODE — FIXED
================================ */

/* makes phone block full-row to avoid squeezing */
.phone-wrap{
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* compact country dropdown — does NOT stretch */
.phone-wrap select{
  width: 120px;
  flex-shrink: 0;
  padding: 12px 10px;
  border-radius: 12px;
  border: 1.5px solid #ddd;
  background: #fafafa;
}

/* phone input grows full space */
.phone-wrap input{
  flex: 1;
  min-width: 200px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid #ddd;
  background: #fafafa;
}

/* ============================================================
   PRESENCE SECTION
============================================================ 
.presence-section {
  background: #fff;
}

.presence-grid {
  max-width: var(--content-max);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 22px;
}

.presence-card {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  border-top: 4px solid var(--sun1);
}*/
/* ===============================
   PROCESS CONNECTOR — FINAL FIX
================================ */

.process-connector {
  position: relative;
  width: 56px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff6a00,
    transparent
  );
  overflow: hidden;
  flex-shrink: 0;
}

/* FLOW ANIMATION */
.process-connector::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );
  animation: flowMove 1.8s infinite ease-in-out;
}

/* ARROW HEAD */
.process-connector::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #ff6a00;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* DESKTOP FLOW */
@keyframes flowMove {
  0%   { left: -40%; opacity: 0; }
  40%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ACTIVE STEP HIGHLIGHT — DESKTOP */
.process-step.active + .process-connector {
  background: linear-gradient(
    90deg,
    transparent,
    #ee0979,
    transparent
  );
}

/* ===============================
   PROCESS SECTION — FINAL
================================ */

.process-section {
  background: #fff;
  padding: 70px 16px;
}

.process-flow {
  max-width: var(--content-max);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* STEP CARD */
.process-step {
  background: #fff;
  width: 230px;
  padding: 22px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: all .35s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(238,9,121,.18);
}

.process-step.active {
  border: 2px solid #ee0979;
}

/* NUMBER */
.step-number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 16px;
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 14px;
  color: #555;
}

/* ============================================================
   OUR PROCESS — ENTERPRISE FLOW (OPTIMIZED)
============================================================ */

.process-section {
  background: #fff;
  padding: 70px 12px;
}

.process-flow {
  max-width: var(--content-max);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===============================
   PROCESS STEP
================================ */

.process-step {
  cursor: pointer;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  width: 220px;

  /* 🔶 DEFAULT ORANGE BORDER */
  border: 1.6px solid rgba(255, 106, 0, 0.55);

  /* GPU SAFE TRANSITION */
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;

  will-change: transform;
}

.process-step:hover {
  border-color: rgba(238, 9, 121, 0.45);
}

.process-step.active {
  border-color: rgba(238, 9, 121, 0.75);

  /* DARKER + DEPTH GLOW */
  box-shadow:
    0 10px 28px rgba(238, 9, 121, 0.35),
    0 0 0 6px rgba(238, 9, 121, 0.12);

  transform: translateY(-4px) scale(1.03);
}

/* ===============================
   STEP CONTENT
================================ */

.step-short {
  font-size: 14px;
  opacity: 0.9;
}

.step-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-top: 10px;

  transition:
    max-height 0.35s ease,
    opacity 0.35s ease;
}

.process-step.open .step-details {
  max-height: 180px;
  opacity: 1;
}

/* ===============================
   CONNECTOR ARROW
================================ */

.process-connector {
  position: relative;
  width: 56px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,106,0,0.8),
    transparent
  );
  overflow: hidden;
}

/* Flow animation — only visual line */
.process-connector::before {
  content: "";
  position: absolute;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #ffffff,
    transparent
  );
  animation: flowMove 1.8s infinite ease-in-out;
}

/* Arrow head */
.process-connector::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #ff6a00;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

@keyframes flowMove {
  0%   { left: -40%; opacity: 0; }
  40%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ===============================
   MOBILE — VERTICAL FLOW (PERFECT)
================================ */

@media (max-width: 900px) {

  .process-flow {
    flex-direction: column;
  }

  .process-connector {
    width: 2px;
    height: 48px;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(255,106,0,0.8),
      transparent
    );
  }

  .process-connector::before {
    top: -40%;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(
      180deg,
      transparent,
      #ffffff,
      transparent
    );
    animation: flowMoveVertical 1.8s infinite ease-in-out;
  }

  .process-connector::after {
    left: 50%;
    top: auto;
    bottom: -6px;
    transform: translateX(-50%);
    border-top: 8px solid #ff6a00;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: none;
  }

  @keyframes flowMoveVertical {
    0%   { top: -40%; opacity: 0; }
    40%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  text-align: center;
  padding: 10px 12px 20px;  /* <- was 110px */
  background: linear-gradient(135deg,#ff6a00,#ee0979);
  color: #fff;
}

.final-cta h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
}

.final-cta p {
  font-size: 16px;
  margin-top: 0;
}

.final-cta button {
  margin-top: 18px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 50px;
  border: none;
  background: #fff;
  color: #ff6a00;
  cursor: pointer;
}

/* ===============================
   TOAST NOTIFICATION (CENTERED)
================================ */

#toast{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  z-index: 999999;

  background: #111;
  color: #fff;

  padding: 16px 22px;
  border-radius: 18px;

  min-width: 240px;
  max-width: 90vw;

  box-shadow: 0 25px 50px rgba(0,0,0,.35);

  opacity: 0;
  pointer-events: none;

  transition: opacity .25s ease, transform .25s ease;
}

/* Internal layout */
#toast .toast-content{
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

/* Animation */
#toast.show{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Mobile optimization */
@media (max-width: 768px){
  #toast{
    max-width: 95vw;
    padding: 14px 18px;
    border-radius: 14px;
  }
}

/* visible state */
#toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* icon + text layout */
#toastIcon {
  font-size: 26px;
  display: block;
  margin-bottom: 4px;
}

/* mobile responsive typography */
#toastTitle {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

#toastMessage {
  font-size: 14px;
  line-height: 1.4;
}

/* small screens */
@media (max-width: 480px) {
  #toast {
    max-width: 300px;
    padding: 14px 18px;
  }
  #toastTitle { font-size: 15px; }
  #toastMessage { font-size: 13px; }
}

/* SHOW STATE */
.toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* ICON */
.toast-icon {
  font-size: 26px;
  line-height: 1;
}

/* TEXT */
.toast-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.toast-text p {
  font-size: 14px;
  margin: 2px 0 0;
  opacity: 0.95;
}

/* MOBILE TWEAK */
@media (max-width: 768px) {
  .toast {
    padding: 16px 20px;
    border-radius: 16px;
  }
}

/* ============================================================
   TRUST FRAMEWORK — BASE COMPONENT
============================================================ */

.trust-framework {
  background: linear-gradient(180deg, #fff6ee, #ffffff);
  padding: 80px 12px;
}

.trust-framework-inner {
  max-width: var(--content-max);
  margin: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.trust-card {
  background: #fff;
  border-radius: 26px;
  padding: 32px 28px;
  box-shadow: 0 14px 36px rgba(0,0,0,.10);
  border-top: 4px solid var(--sun1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,.14);
}

.trust-card h3 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 700;
}

/* LIST */
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

/* ICON */
.trust-item::before {
  content: "✔";
  color: #ff6a00;
  background: rgba(255,106,0,.15);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
