/* =====================================================
   CONTACT HERO SECTION – PREMIUM STYLE (CENTERED)
===================================================== */
.yc-hero {
  padding: 160px 20px 60px;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,0.15), transparent 50%),
    linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  text-align: center;
  position: relative;
}

/* Container */
.yc-hero-container {
  max-width: 900px;
  margin: auto;
  animation: ycHeroFade 1.5s ease-out forwards;
}

.yc-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #020617;
  letter-spacing: -1px;
  margin-bottom: 30px;
  line-height: 1.3;
  text-transform: capitalize;
}

.yc-hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
  max-width: 800px;
  margin: 0 auto 45px;
  font-family: 'Poppins', sans-serif;
}

/* =====================================================
   CTA BUTTONS – ADVANCED STYLE (CENTERED)
===================================================== */
.yc-hero-cta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.yc-btn {
  padding: 18px 38px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.yc-btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  border: none;
}

.yc-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.3);
}

.yc-btn-secondary {
  border: 3px solid #ffffff;
  color: #2563eb;
  background: #ffffff;
}

.yc-btn-secondary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

/* =====================================================
   TRUST LINE – REFINED STYLE
===================================================== */
.yc-hero-trust {
  font-size: 0.95rem;
  color: #64748b;
  opacity: 0.9;
  font-weight: 600;
  margin-top: 25px;
}

/* =====================================================
   ANIMATIONS – PREMIUM EFFECT
===================================================== */
@keyframes ycHeroFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE – ADVANCED RESPONSIVENESS
===================================================== */
@media (max-width: 1200px) {
  .yc-hero-title {
    font-size: 3rem;
  }

  .yc-hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .yc-hero-title {
    font-size: 2.7rem;
  }

  .yc-hero-subtitle {
    font-size: 1rem;
  }

  .yc-hero-cta {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .yc-hero {
    padding: 140px 20px;
  }

  .yc-hero-title {
    font-size: 2.3rem;
  }

  .yc-hero-subtitle {
    font-size: 1rem;
  }

  .yc-btn {
    padding: 14px 30px;
  }
}

@media (max-width: 576px) {
  .yc-hero-container {
    text-align: center;
  }

  .yc-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

/* =====================================================
   FINAL TOUCHES – PREMIUM FEEL
===================================================== */
.yc-hero {
  background-color: #f1f5f9;
}

.yc-btn-primary {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.yc-btn-secondary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: 3px solid #2563eb;
}

.yc-hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #4b5563;
}

/* Adding smooth scroll effect */
html {
  scroll-behavior: smooth;
}

/* =====================================================
   RESPONSIVE – ADVANCED RESPONSIVENESS
===================================================== */
@media (max-width: 1200px) {
  /* Adjustments for screens smaller than 1200px */
  .yc-hero-title {
    font-size: 3rem;
  }

  .yc-hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  /* Adjustments for screens smaller than 992px */
  .yc-hero-title {
    font-size: 2.7rem;
  }

  .yc-hero-subtitle {
    font-size: 1rem;
  }

  .yc-hero-cta {
    flex-direction: column; /* Stack buttons vertically */
  }
}

@media (max-width: 768px) {
  /* Adjustments for screens smaller than 768px (tablets) */
  .yc-hero {
    padding: 140px 20px;
  }

  .yc-hero-title {
    font-size: 2.3rem;
  }

  .yc-hero-subtitle {
    font-size: 1rem;
  }

  .yc-btn {
    padding: 14px 30px;
  }
}

@media (max-width: 576px) {
  /* Adjustments for screens smaller than 576px (mobile phones) */
  .yc-hero-container {
    text-align: center; /* Ensures text is centered */
  }

  .yc-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .yc-hero-title {
    font-size: 2rem; /* Adjust for smaller screens */
  }

  .yc-hero-subtitle {
    font-size: 0.95rem; /* Adjust subtitle for smaller screens */
  }
}


/* =====================================================
   CONTACT OVERVIEW – SIGNATURE DESIGN
   Author: Premium SaaS UI
===================================================== */

:root {
  --primary: #6366f1;
  --secondary: #38bdf8;
  --dark: #020617;
  --muted: #64748b;
  --glass: rgba(255,255,255,0.78);
  --border: rgba(99,102,241,0.18);
}

/* =====================================================
   SECTION BACKGROUND
===================================================== */

.yi-contact-overview {
  position: relative;
  padding: 70px 20px;
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
  overflow: hidden;
}

/* Floating blur blobs */
.yi-contact-overview::before,
.yi-contact-overview::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  z-index: 0;
}

/* =====================================================
   WRAPPER
===================================================== */

.yi-wrap {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin-inline: auto;
}

/* =====================================================
   HEADER
===================================================== */

.yi-contact-head {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 90px;
}

.yi-contact-title {
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.8px;
  color: var(--dark);
  margin-bottom: 22px;
  position: relative;
}

.yi-contact-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  margin: 26px auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.yi-contact-intro {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--muted);
}

/* =====================================================
   OFFICE GRID
===================================================== */

.yl-office-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 44px;
  max-width: 1050px;
  margin-inline: auto;
}

/* =====================================================
   OFFICE CARD – SIGNATURE GLASS
===================================================== */

.yl-office-details {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 34px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.72)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 26px;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(.22,.61,.36,1);
  width: 100%;
  max-width: 520px;   /* adjust as needed */

}

/* Gradient edge */
.yl-office-details::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 6px;
}

/* Soft hover aura */
.yl-office-details::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(99,102,241,0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.yl-office-details:hover::after {
  opacity: 1;
}

.yl-office-details:hover {
  transform: translateY(-12px) scale(1.015);
  box-shadow:
    0 45px 110px rgba(2, 8, 23, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* =====================================================
   OFFICE TITLE
===================================================== */

.yl-office-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 18px;
}

/* =====================================================
   OFFICE ADDRESS
===================================================== */

.yl-office-address {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #475569;
}

.yl-office-address strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
  color: var(--dark);
}

/* =====================================================
   UTILITIES
===================================================== */

.mb-5 {
  margin-bottom: 1.6rem;
}

/* =====================================================
   ANIMATION – ENTRY
===================================================== */

.yl-office-details {
  animation: yiCardRise 0.9s ease both;
}

@keyframes yiCardRise {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .yi-contact-overview {
    padding: 100px 16px;
  }

  .yl-office-block {
    gap: 30px;
  }


  .yl-office-details {
    padding: 18px;
    border-radius: 18px;
    max-width: 100%;
  }


  .yl-office-details::before {
    height: 4px;
  }

  .yl-office-address {
    margin-top: 22px;
  }
}

@media (max-width: 480px) {
  .yl-office-details {
    padding: 16px;
    border-radius: 14px;
  }
}

@media screen and (max-width: 320px) {
  .yl-office-details {
    padding: 16px;
    border-radius: 14px;
  }
}

@media screen and (max-width: 240px) {
  .yl-office-details {
    padding: 12px;
    border-radius: 10px;
  }
}


/* =====================================================
   QUICK ENQUIRY FORM – YUVAASOFT
===================================================== */

.yf-enquiry-section {
  padding: 60px 20px;
  background:
    radial-gradient(circle at bottom left, rgba(37,99,235,0.12), transparent 45%),
    #f8fafc;
}

.yf-wrapper {
  max-width: 900px;
  margin: auto;
}

/* =====================================================
   HEADER
===================================================== */

.yf-form-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.yf-form-title {
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
  color: #020617;
}

.yf-form-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* =====================================================
   FORM GRID
===================================================== */

.yf-enquiry-form {
  background: #ffffff;
  padding: 60px;
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(2, 8, 23, 0.12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  animation: yfFadeUp 0.9s ease forwards;
}

/* =====================================================
   FIELD WRAPPER
===================================================== */

.yf-field {
  display: flex;
  flex-direction: column;
}

/* =====================================================
   LABEL
===================================================== */

.yf-field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #334155;
}

/* =====================================================
   INPUTS / SELECT / TEXTAREA
===================================================== */

.yf-field input,
.yf-field select,
.yf-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background-color: #ffffff;
  transition: all 0.35s ease;
  font-family: inherit;
}

/* Textarea */
.yf-field textarea {
  resize: vertical;
  min-height: 140px;
}

/* Select arrow fix */
.yf-field select {
  cursor: pointer;
}

/* =====================================================
   FOCUS STATE
===================================================== */

.yf-field input:focus,
.yf-field select:focus,
.yf-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}

/* =====================================================
   DJANGO ERROR STYLING
===================================================== */

.yf-field .errorlist {
  margin-top: 6px;
  padding-left: 0;
  list-style: none;
  font-size: 0.8rem;
  color: #dc2626;
}

.yf-field .errorlist li {
  line-height: 1.4;
}

.yf-field input.error,
.yf-field select.error,
.yf-field textarea.error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.15);
}

/* =====================================================
   FULL WIDTH (PRODUCT + MESSAGE)
===================================================== */

.yf-span-full {
  grid-column: span 2;
}

/* =====================================================
   SUBMIT SECTION
===================================================== */

.yf-submit-wrap {
  text-align: center;
  margin-top: 12px;
}

.yf-submit-btn {
  padding: 16px 38px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(37,99,235,0.35);
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
}

.yf-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(37,99,235,0.45);
}

.yf-form-note {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 14px;
}

/* =====================================================
   ANIMATION
===================================================== */

@keyframes yfFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .yf-enquiry-form {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }

  .yf-span-full {
    grid-column: span 1;
  }

  .yf-form-title {
    font-size: 2rem;
  }
}


/* =====================================================
   VISIT & LOCATION – PREMIUM ENTERPRISE DESIGN
===================================================== */

.yl-location-zone {
  position: relative;
  padding: 60px 10px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.yl-frame {
  max-width: 1200px;
  margin: 0 auto;
}

/* =====================================================
   HEADER
===================================================== */

.yl-location-head {
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
}

.yl-location-title {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #020617;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
  animation: ylTitleReveal 0.9s ease forwards;
}

.yl-location-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
  animation: ylFadeUp 1.2s ease forwards;
}

/* =====================================================
   PRESENCE GRID
===================================================== */

.yl-location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 90px;
}

/* =====================================================
   PRESENCE CARD
===================================================== */

.yl-presence-card {
  position: relative;
  background: #ffffff;
  padding: 42px 34px;
  border-radius: 18px;
  border: 1px solid rgba(2, 6, 23, 0.06);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.45s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  animation: ylCardFloatIn 0.9s ease forwards;
}

.yl-presence-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
   #2564eb5e,
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.yl-presence-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
}

.yl-presence-card:hover::before {
  opacity: 1;
}

/* =====================================================
   ICON
===================================================== */

.yl-presence-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 22px;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
  transition: transform 0.4s ease;
}

.yl-presence-card:hover .yl-presence-icon {
  transform: scale(1.08) rotate(-2deg);
}

/* =====================================================
   TEXT
===================================================== */

.yl-presence-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.yl-presence-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #475569;
}

/* =====================================================
   OFFICE BLOCK
===================================================== */

.yl-office-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
  background: #ffffff;
  padding: 48px;
  border-radius: 22px;
  border: 1px solid rgba(2, 6, 23, 0.06);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  animation: ylFadeUp 1.2s ease forwards;
}

/* =====================================================
   OFFICE DETAILS
===================================================== */

.yl-office-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #020617;
  margin-bottom: 14px;
}

.yl-office-address {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 10px;
}

.yl-office-note {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
}

/* =====================================================
   MAP
===================================================== */

.yl-office-map {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.yl-office-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes ylTitleReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ylFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ylCardFloatIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .yl-location-grid {
    grid-template-columns: 1fr;
  }

  .yl-office-block {
    grid-template-columns: 1fr;
  }

  .yl-office-map iframe {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .yl-location-zone {
    padding: 80px 16px;
  }

  .yl-office-block {
    padding: 32px 26px;
  }
}

/* =====================================================
   PRODUCT ENQUIRY SHORTCUTS – SAAS DESIGN
===================================================== */

.ye-product-enquiry {
  padding: 60px 20px;
  background:
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.07), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ye-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =====================================================
   HEADER
===================================================== */

.ye-enquiry-head {
  max-width: 800px;
  margin: 0 auto 70px;
  text-align: center;
}

.ye-enquiry-title {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  font-weight: 900;
  color: #020617;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  animation: yeFadeDown 0.9s ease forwards;
}

.ye-enquiry-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
  animation: yeFadeUp 1.1s ease forwards;
}

/* =====================================================
   GRID
===================================================== */

.ye-enquiry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-bottom: 40px;
}

/* =====================================================
   CARD
===================================================== */

.ye-enquiry-card {
  position: relative;
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 18px;
  border: 1px solid rgba(2, 6, 23, 0.06);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.45s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  animation: yeCardReveal 0.8s ease forwards;
}

.ye-enquiry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.18),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.ye-enquiry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
}

.ye-enquiry-card:hover::after {
  opacity: 1;
}

/* =====================================================
   TEXT
===================================================== */

.ye-product-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #020617;
  margin-bottom: 10px;
}

.ye-product-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #475569;
}

/* =====================================================
   NOTE
===================================================== */

.ye-enquiry-note {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2563eb;
  margin-top: 18px;
  animation: yeFadeUp 1.2s ease forwards;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes yeFadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes yeFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes yeCardReveal {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 576px) {
  .ye-product-enquiry {
    padding: 80px 16px;
  }

  .ye-enquiry-card {
    padding: 30px 26px;
  }
}

/* =====================================================
   SIGNAL FLOW ROUTING – SYSTEM UI
===================================================== */

:root {
  --sf-bg: #f8fafc;
  --sf-line: #cbd5f5;
  --sf-accent: #2563eb;
  --sf-text: #020617;
  --sf-muted: #64748b;
}

/* =====================================================
   SECTION
===================================================== */

.sf-routing {
  padding: 60px 20px;
  background: var(--sf-bg);
}

.sf-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* =====================================================
   HEADER
===================================================== */

.sf-head {
  max-width: 720px;
  margin-bottom: 90px;
}

.sf-title {
  font-size: clamp(2.1rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--sf-text);
  letter-spacing: -.4px;
}

.sf-subtitle {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--sf-muted);
}

/* =====================================================
   FLOW LINE
===================================================== */

.sf-flow {
  position: relative;
  display: grid;
  gap: 70px;
  padding-left: 40px;
}

.sf-flow::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(
    180deg,
    var(--sf-accent),
    rgba(37,99,235,.2)
  );
  animation: sf-line-grow 1.4s ease forwards;
}

/* =====================================================
   STEP
===================================================== */

.sf-step {
  position: relative;
  display: flex;
  gap: 28px;
  opacity: 0;
  transform: translateX(-40px);
  animation: sf-step-enter .8s ease forwards;
  animation-delay: var(--d);
}

/* =====================================================
   DOT
===================================================== */

.sf-dot {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--sf-accent);
  position: relative;
  flex-shrink: 0;
}

.sf-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,99,235,.35);
  animation: sf-pulse 2.5s infinite ease;
}

/* =====================================================
   CONTENT
===================================================== */

.sf-content h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sf-text);
  margin-bottom: 8px;
}

.sf-content p {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--sf-muted);
  max-width: 640px;
}

.sf-content a {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--sf-accent);
  text-decoration: none;
  position: relative;
}

.sf-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.sf-content a:hover::after {
  transform: scaleX(1);
}

.sf-content em {
  display: inline-block;
  margin-top: 14px;
  font-size: .85rem;
  font-weight: 700;
  color: #15803d;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes sf-line-grow {
  to { height: 100%; }
}

@keyframes sf-step-enter {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes sf-pulse {
  0%   { transform: scale(.6); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 640px) {
  .sf-flow {
    gap: 56px;
    padding-left: 28px;
  }
}


/* =====================================================
   SUPPORT PROMISE – ADVANCED STYLE
===================================================== */

.ys-support-promise {
  padding: 60px 20px;
  background:
    radial-gradient(circle at bottom right, rgba(37,99,235,0.12), transparent 45%),
    #ffffff;
}

.ys-promise-wrap {
  max-width: 1100px;
  margin: auto;
}

/* =====================================================
   HEADER
===================================================== */

.ys-promise-head {
  max-width: 760px;
  margin: 0 auto 90px;
  text-align: center;
}

.ys-promise-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
  color: #020617;
}

.ys-promise-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* =====================================================
   PROMISE GRID
===================================================== */

.ys-promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  margin-bottom: 70px;
}

/* =====================================================
   PROMISE ITEM
===================================================== */

.ys-promise-item {
  background-color: #f8fafc;
  padding: 42px 36px;
  border-radius: 22px;
  position: relative;
  box-shadow: 0 14px 40px rgba(2, 8, 23, 0.1);
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
  animation: ysPromiseUp 0.9s ease forwards;
}

.ys-promise-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(2, 8, 23, 0.18);
}

/* =====================================================
   STEP NUMBER
===================================================== */

.ys-promise-step {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 16px;
}

/* =====================================================
   TEXT
===================================================== */

.ys-promise-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin: 0;
}

/* =====================================================
   NOTE
===================================================== */

.ys-promise-note {
  text-align: center;
  font-size: 0.95rem;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
}

/* =====================================================
   ANIMATION
===================================================== */

@keyframes ysPromiseUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .ys-promise-title {
    font-size: 2rem;
  }
}


/* =====================================================
   FINAL TRUST BLOCK – YUVAASOFT
===================================================== */

.yt-trust-close {
  padding: 60px 20px 60px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f9ff 100%);
  color: #565656;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Soft glow accent */
.yt-trust-close::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translateX(-50%);
  pointer-events: none;
}

/* =====================================================
   WRAPPER
===================================================== */

.yt-trust-wrap {
  max-width: 820px;
  margin: auto;
  position: relative;
  z-index: 2;
  animation: ytTrustFade 1.1s cubic-bezier(.22,.61,.36,1) forwards;
}

/* =====================================================
   TEXT
===================================================== */

.yt-trust-title {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  margin-bottom: 22px;
}

.yt-trust-text {
  font-size: 1.15rem;
  line-height: 1.9;
  opacity: 0.95;
  margin-bottom: 42px;
}

/* =====================================================
   DIVIDER
===================================================== */

.yt-trust-divider {
  width: 90px;
  height: 4px;
  background-color: rgba(129, 200, 255, 0.728);
  margin: 0 auto 26px;
  border-radius: 3px;
}

/* =====================================================
   SUBTEXT
===================================================== */

.yt-trust-subtext {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.4px;
}

/* =====================================================
   ANIMATION
===================================================== */

@keyframes ytTrustFade {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .yt-trust-title {
    font-size: 2.1rem;
  }

  .yt-trust-text {
    font-size: 1.05rem;
  }
}

/* =====================================================
   FINAL CTA – YUVAASOFT
===================================================== */

/* =====================================================
   FINAL CTA SECTION
===================================================== */

.ycx-final-cta {
  padding: 60px 20px;
  background:
    radial-gradient(circle at bottom left, rgba(37,99,235,0.18), transparent 45%),
    linear-gradient(180deg, #2563eb);
  position: relative;
  overflow: hidden;
  text-align: left;
}

/* Soft background accent */
.ycx-final-cta::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(37,99,235,0.18), transparent 65%);
  pointer-events: none;
}

/* =====================================================
   WRAPPER
===================================================== */

.ycx-cta-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 30px;
  position: relative;
  z-index: 2;
  animation: ycxCtaReveal 1.1s cubic-bezier(.22,.61,.36,1) forwards;
}

/* =====================================================
   TEXT
===================================================== */

.ycx-cta-title {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.7px;
  margin-bottom: 22px;
  color: #ffffff;
  max-width: 860px;
}

.ycx-cta-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #ffffff;
  max-width: 640px;
  margin-bottom: 48px;
}

/* =====================================================
   ACTION BUTTONS
===================================================== */

.ycx-cta-actions {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.ycx-btn {
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.45s cubic-bezier(.22,.61,.36,1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Primary Button */
.ycx-btn-primary {
  background: #ffffff;
  color: #2563eb;
  box-shadow: 0 18px 45px rgba(37,99,235,0.35);
}

.ycx-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(255,255,255,0.45);
}

/* Outline Button */
.ycx-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.ycx-btn-outline:hover {
  background-color: rgba(255,255,255,0.12);
  color: #ffffff;
  transform: translateY(-5px);
}

/* =====================================================
   ANIMATION
===================================================== */

@keyframes ycxCtaReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .ycx-final-cta {
    padding: 100px 20px;
    text-align: center;
  }

  .ycx-cta-wrap {
    padding-left: 0;
  }

  .ycx-cta-title {
    font-size: 2.1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .ycx-cta-text {
    font-size: 1.05rem;
    margin-left: auto;
    margin-right: auto;
  }

  .ycx-cta-actions {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


/* Icon box */
.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e6f8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d6efd;
  font-size: 1.3rem;
}

.ys-address-off {
  padding-right: 23px;
}