* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #050505;
  color: #E5E5E5;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 10px;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #F7E7C4 0%, #D4AF37 50%, #AA7C11 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn.btn-pill {
  border-radius: 50px;
}
.btn.btn-gold {
  background: linear-gradient(135deg, #F7E7C4 0%, #D4AF37 50%, #AA7C11 100%);
  color: #050505;
  border: 1px solid rgba(247, 231, 196, 0.5);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.btn.btn-gold .btn-arrow {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn.btn-gold:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #F7E7C4 30%, #D4AF37 70%, #AA7C11 100%);
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.75);
}
.btn.btn-gold:hover .btn-arrow {
  transform: translateX(5px);
}
.btn.btn-gold:active {
  transform: translateY(-1px);
}
.btn.btn-outline-gold {
  background: rgba(5, 5, 5, 0.5);
  color: #F7E7C4;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  backdrop-filter: blur(5px);
}
.btn.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #FFFFFF;
  border-color: #F7E7C4;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
  transform: translateY(-3px);
}
.btn.btn-outline-gold:active {
  transform: translateY(-1px);
}
.btn.btn-shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  transition: none;
}
.btn.btn-shine:hover::after {
  left: 120%;
  transition: all 0.8s ease-in-out;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header.scrolled {
  padding: 1rem 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.05);
}
.header .logo img {
  width: 100%;
  max-width: 150px;
}
.header .btn-header-cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #050505;
  overflow: hidden;
  padding: 7rem 0 4rem;
}
.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
  z-index: 1;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5, 5, 5, 0.59) 0%, rgba(5, 5, 5, 0.26) 45%, rgba(5, 5, 5, 0) 70%, rgba(5, 5, 5, 0.11) 100%), linear-gradient(to bottom, rgba(5, 5, 5, 0) 0%, transparent 20%, transparent 80%, rgba(5, 5, 5, 0) 100%), radial-gradient(circle, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0) 70%, rgba(5, 5, 5, 0) 100%);
  z-index: 2;
}
.hero-section .hero-gold-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.15) 0%, rgba(5, 5, 5, 0) 60%);
  z-index: 3;
  mix-blend-mode: color-dodge;
  opacity: 0.8;
  pointer-events: none;
}
.hero-section .hero-container {
  position: relative;
  z-index: 10;
}
.hero-section .hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section .badge-wrapper {
  margin-bottom: 1.5rem;
}
.hero-section .top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #F7E7C4;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.hero-section .top-badge .badge-dot {
  width: 6px;
  height: 6px;
  background-color: #D4AF37;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #D4AF37;
  animation: pulse-glow 2s infinite alternate;
}
.hero-section .main-heading {
  font-family: "Cinzel", serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}
.hero-section .main-heading span {
  font-weight: 800;
}
.hero-section .subheading {
  font-size: 1.05rem;
  color: #A0A0A0;
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero-section .cta-group {
  display: flex;
  gap: 1.25rem;
  width: 100%;
}
.hero-section .trust-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 550px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}
.hero-section .trust-indicators .indicator-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-section .trust-indicators .indicator-item .indicator-icon {
  width: 20px;
  height: 20px;
  color: #D4AF37;
  flex-shrink: 0;
}
.hero-section .trust-indicators .indicator-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #E5E5E5;
  letter-spacing: 0.05em;
}
.hero-section .hero-visual-stats {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 2rem;
  z-index: 5;
}
.hero-section .hero-visual-stats .glass-card {
  background: rgba(18, 18, 18, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 2.25rem;
  width: 100%;
  max-width: 360px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.hero-section .hero-visual-stats .glass-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(247, 231, 196, 0.08) 0%, transparent 60%);
  border-radius: 12px;
  pointer-events: none;
}
.hero-section .hero-visual-stats .glass-card .card-header-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  margin-bottom: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-section .hero-visual-stats .glass-card .card-header-icon svg {
  width: 24px;
  height: 24px;
}
.hero-section .hero-visual-stats .glass-card .card-info .stat-number {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.hero-section .hero-visual-stats .glass-card .card-info .stat-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.hero-section .hero-visual-stats .glass-card .card-info .stat-desc {
  font-size: 0.8rem;
  color: #A0A0A0;
  line-height: 1.5;
}
.hero-section .hero-visual-stats .glass-card.stat-card-1 {
  align-self: flex-start;
  animation: float-card-1 6s ease-in-out infinite;
}
.hero-section .hero-visual-stats .glass-card.stat-card-2 {
  align-self: flex-end;
  animation: float-card-2 7s ease-in-out infinite;
  animation-delay: 0.5s;
}
.hero-section .hero-visual-stats .glass-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.hero-section .hero-visual-stats .glass-card:hover .card-header-icon {
  background: rgba(212, 175, 55, 0.2);
  border-color: #F7E7C4;
  color: #F7E7C4;
  transform: scale(1.1);
}

.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 4;
  pointer-events: none;
}
.particle-container .particle {
  position: absolute;
  background: radial-gradient(circle, rgba(247, 231, 196, 0.6) 0%, rgba(212, 175, 55, 0) 70%);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.3;
}
.particle-container .particle.p1 {
  width: 120px;
  height: 120px;
  left: 10%;
  top: 20%;
  animation: particle-float-slow 20s infinite linear;
}
.particle-container .particle.p2 {
  width: 180px;
  height: 180px;
  right: 15%;
  top: 15%;
  animation: particle-float-medium 25s infinite linear;
  animation-delay: -2s;
}
.particle-container .particle.p3 {
  width: 90px;
  height: 90px;
  left: 45%;
  bottom: 10%;
  animation: particle-float-fast 15s infinite linear;
  animation-delay: -5s;
}
.particle-container .particle.p4 {
  width: 150px;
  height: 150px;
  left: 30%;
  top: 60%;
  animation: particle-float-slow 22s infinite linear;
  animation-delay: -3s;
}
.particle-container .particle.p5 {
  width: 70px;
  height: 70px;
  right: 40%;
  top: 35%;
  animation: particle-float-fast 18s infinite linear;
  animation-delay: -1s;
}
.particle-container .particle.p6 {
  width: 130px;
  height: 130px;
  right: 5%;
  bottom: 25%;
  animation: particle-float-medium 28s infinite linear;
  animation-delay: -7s;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up-kf 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fade-in-up.delay-1 {
  animation-delay: 0.15s;
}
.fade-in-up.delay-2 {
  animation-delay: 0.3s;
}
.fade-in-up.delay-3 {
  animation-delay: 0.45s;
}
.fade-in-up.delay-4 {
  animation-delay: 0.6s;
}

@keyframes fade-in-up-kf {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
  }
  100% {
    transform: scale(1.1);
    box-shadow: 0 0 15px #d4af37;
  }
}
@keyframes float-card-1 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes float-card-2 {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-0.5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes particle-float-slow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.15);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes particle-float-medium {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-40px, 30px) scale(0.85);
  }
  66% {
    transform: translate(30px, -40px) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes particle-float-fast {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(25px, 25px) scale(1.2);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@media (max-width: 1200px) {
  .hero-section .main-heading {
    font-size: 3.2rem;
  }
  .hero-section .hero-layout {
    gap: 2rem;
  }
}
@media (max-width: 992px) {
  .header .header-container {
    padding: 0 1.5rem;
  }
  .hero-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: auto;
  }
  .hero-section .hero-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .hero-section .hero-content {
    align-items: center;
  }
  .hero-section .hero-content .subheading {
    display: none;
  }
  .hero-section .cta-group {
    justify-content: center;
  }
  .hero-section .trust-indicators {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section .hero-visual-stats {
    padding-left: 0;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
  }
  .hero-section .hero-visual-stats .glass-card {
    margin: 0;
    max-width: 280px;
  }
  .hero-section .hero-visual-stats .glass-card.stat-card-1 {
    animation: float-card-1 5s ease-in-out infinite;
  }
  .hero-section .hero-visual-stats .glass-card.stat-card-2 {
    animation: float-card-2 6s ease-in-out infinite;
  }
}
@media (max-width: 768px) {
  .hero-section .main-heading {
    font-size: 2.4rem;
    line-height: 1.25;
  }
  .hero-section .subheading {
    font-size: 0.95rem;
  }
  .hero-section .cta-group {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section .cta-group .btn {
    width: 100%;
  }
  .hero-section .trust-indicators {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
  }
  .hero-section .trust-indicators .indicator-item {
    justify-content: center;
  }
  .hero-section .hero-visual-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  .hero-section .hero-visual-stats .glass-card {
    max-width: 320px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .header .logo .logo-text .brand-name {
    font-size: 1.15rem;
  }
  .header .logo .logo-text .brand-sub {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
  }
  .header .btn-header-cta {
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
  }
  .hero-section {
    padding: 250px 0 150px;
  }
  .hero-section .top-badge {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }
  .hero-section .main-heading {
    font-size: 28px;
  }
}
.fleet-section {
  position: relative;
  padding: 50px 0;
  background-color: #050505;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.fleet-section .fleet-bg-glow {
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.fleet-section .fleet-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}
.fleet-section .fleet-header .fleet-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #F7E7C4;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.fleet-section .fleet-header .fleet-badge .badge-dot {
  width: 5px;
  height: 5px;
  background-color: #D4AF37;
  border-radius: 50%;
  box-shadow: 0 0 8px #D4AF37;
}
.fleet-section .fleet-header .fleet-heading {
  font-family: "Cinzel", serif;
  font-size: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.fleet-section .fleet-header .fleet-subheading {
  font-size: 1.05rem;
  color: #A0A0A0;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}
.fleet-section .fleet-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.fleet-section .filter-btn {
  background: rgba(18, 18, 18, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #A0A0A0;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.fleet-section .filter-btn:hover {
  color: #F7E7C4;
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}
.fleet-section .filter-btn.active {
  background: linear-gradient(135deg, #F7E7C4 0%, #D4AF37 50%, #AA7C11 100%);
  color: #050505;
  border-color: rgba(247, 231, 196, 0.5);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}
.fleet-section .filter-btn:active {
  transform: translateY(0);
}
.fleet-section .fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  position: relative;
  z-index: 2;
}
.fleet-section .fleet-card {
  background: rgba(18, 18, 18, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fleet-section .fleet-card .vip-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;
  background: linear-gradient(135deg, #F7E7C4 0%, #D4AF37 50%, #AA7C11 100%);
  color: #050505;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.fleet-section .fleet-card .vip-tag .star-icon {
  width: 12px;
  height: 12px;
}
.fleet-section .fleet-card.hidden {
  opacity: 0;
  transform: scale(0.85) translateY(20px);
  pointer-events: none;
}
.fleet-section .fleet-card .card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.fleet-section .fleet-card .image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: #000;
}
.fleet-section .fleet-card .image-wrapper .vehicle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fleet-section .fleet-card .image-wrapper .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.8) 0%, transparent 60%);
  z-index: 2;
}
.fleet-section .fleet-card .image-wrapper .capacity-tag {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  z-index: 3;
  background: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(5px);
  color: #F7E7C4;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.fleet-section .fleet-card .image-wrapper .capacity-tag .tag-icon {
  width: 14px;
  height: 14px;
  color: #D4AF37;
}
.fleet-section .fleet-card .card-content {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.fleet-section .fleet-card .card-content .vehicle-name {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.fleet-section .fleet-card .card-content .vehicle-desc {
  font-size: 0.85rem;
  color: #A0A0A0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.fleet-section .fleet-card .card-content .vehicle-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
}
.fleet-section .fleet-card .card-content .vehicle-features .feature-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  color: #E5E5E5;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.fleet-section .fleet-card .card-content .vehicle-features .feature-item .feature-bullet {
  width: 4px;
  height: 4px;
  background-color: #D4AF37;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 6px #D4AF37;
}
.fleet-section .fleet-card .card-content .btn-card-cta {
  width: 100%;
  margin-top: auto;
  padding: 0.85rem 1.5rem;
  font-size: 0.8rem;
  border-radius: 4px;
}
.fleet-section .fleet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.1);
}
.fleet-section .fleet-card:hover .vehicle-img {
  transform: scale(1.08);
}
.fleet-section .featured-card {
  grid-column: span 2;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.05);
}
.fleet-section .featured-card .card-inner {
  flex-direction: row;
}
.fleet-section .featured-card .image-wrapper {
  width: 50%;
  height: auto;
  min-height: 100%;
}
.fleet-section .featured-card .image-wrapper .capacity-tag {
  left: 1.5rem;
  bottom: 1.5rem;
}
.fleet-section .featured-card .card-content {
  width: 50%;
  padding: 3rem;
}
.fleet-section .featured-card .card-content .featured-badge {
  color: #D4AF37;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
}
.fleet-section .featured-card .card-content .vehicle-name {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.fleet-section .featured-card .card-content .vehicle-desc {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.fleet-section .featured-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.2);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .fleet-section {
    padding: 6rem 0;
  }
  .fleet-section .fleet-header {
    margin-bottom: 4rem;
  }
  .fleet-section .fleet-header .fleet-heading {
    font-size: 2.8rem;
  }
  .fleet-section .featured-card .card-content {
    padding: 2.25rem;
  }
}
@media (max-width: 992px) {
  .fleet-section .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .fleet-section .featured-card {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .fleet-section {
    padding: 5rem 0;
  }
  .fleet-section .fleet-header {
    margin-bottom: 3rem;
  }
  .fleet-section .fleet-header .fleet-heading {
    font-size: 2.2rem;
  }
  .fleet-section .fleet-header .fleet-subheading {
    font-size: 0.95rem;
  }
  .fleet-section .fleet-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fleet-section .featured-card {
    grid-column: span 1;
  }
  .fleet-section .featured-card .card-inner {
    flex-direction: column;
  }
  .fleet-section .featured-card .image-wrapper {
    width: 100%;
    height: 240px;
  }
  .fleet-section .featured-card .card-content {
    width: 100%;
    padding: 2.25rem;
  }
  .fleet-section .featured-card .card-content .vehicle-name {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .fleet-section .fleet-header .fleet-heading {
    font-size: 26px;
  }
  .fleet-section .fleet-filters {
    display: none;
  }
  .fleet-section .featured-card {
    display: none;
  }
  .fleet-section .fleet-card .card-content {
    padding: 15px;
  }
  .fleet-section .fleet-card .card-content .vehicle-name {
    font-size: 20px;
  }
}
.why-vista-section {
  position: relative;
  padding: 50px 0;
  background-color: #050505;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.why-vista-section .wv-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 100% 0%, rgba(212, 175, 55, 0.07) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 0% 100%, rgba(170, 124, 17, 0.05) 0%, transparent 55%), linear-gradient(175deg, #0a0a0a 0%, #050505 40%, #0c0c08 100%);
  pointer-events: none;
  z-index: 0;
}
.why-vista-section .wv-spotlight {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
}
.why-vista-section .wv-spotlight.wv-spotlight-left {
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
  animation: wv-spotlight-drift 14s ease-in-out infinite alternate;
}
.why-vista-section .wv-spotlight.wv-spotlight-right {
  bottom: -15%;
  right: -5%;
  background: radial-gradient(circle, rgba(170, 124, 17, 0.06) 0%, transparent 65%);
  animation: wv-spotlight-drift 18s ease-in-out infinite alternate-reverse;
}
.why-vista-section .wv-gold-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.why-vista-section .wv-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
}
.why-vista-section .wv-line.wv-line-1 {
  top: 18%;
  left: 0;
  width: 100%;
  animation: wv-line-sweep 8s ease-in-out infinite;
}
.why-vista-section .wv-line.wv-line-2 {
  top: 55%;
  left: 0;
  width: 100%;
  animation: wv-line-sweep 11s ease-in-out infinite;
  animation-delay: -3s;
  opacity: 0.5;
}
.why-vista-section .wv-line.wv-line-3 {
  top: 82%;
  left: 0;
  width: 100%;
  animation: wv-line-sweep 9s ease-in-out infinite;
  animation-delay: -6s;
  opacity: 0.35;
}
.why-vista-section .wv-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.why-vista-section .wv-p {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 231, 196, 0.55) 0%, transparent 70%);
  filter: blur(1.5px);
}
.why-vista-section .wv-p.wv-p1 {
  width: 90px;
  height: 90px;
  left: 5%;
  top: 15%;
  animation: wv-particle-drift 22s infinite linear;
}
.why-vista-section .wv-p.wv-p2 {
  width: 130px;
  height: 130px;
  right: 8%;
  top: 25%;
  animation: wv-particle-drift 28s infinite linear;
  animation-delay: -4s;
  opacity: 0.5;
}
.why-vista-section .wv-p.wv-p3 {
  width: 60px;
  height: 60px;
  left: 40%;
  bottom: 12%;
  animation: wv-particle-drift 17s infinite linear;
  animation-delay: -8s;
}
.why-vista-section .wv-p.wv-p4 {
  width: 100px;
  height: 100px;
  left: 65%;
  top: 60%;
  animation: wv-particle-drift 24s infinite linear;
  animation-delay: -2s;
  opacity: 0.4;
}
.why-vista-section .wv-p.wv-p5 {
  width: 45px;
  height: 45px;
  right: 30%;
  top: 10%;
  animation: wv-particle-drift 19s infinite linear;
  animation-delay: -11s;
}
.why-vista-section .wv-p.wv-p6 {
  width: 80px;
  height: 80px;
  left: 20%;
  bottom: 30%;
  animation: wv-particle-drift 26s infinite linear;
  animation-delay: -6s;
  opacity: 0.6;
}
.why-vista-section .container {
  position: relative;
  z-index: 5;
}
.why-vista-section .wv-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.why-vista-section .wv-visual {
  position: sticky;
  top: 8rem;
}
.why-vista-section .wv-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}
.why-vista-section .wv-image-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), transparent 50%, rgba(170, 124, 17, 0.3));
  z-index: 0;
}
.why-vista-section .wv-image-inner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(212, 175, 55, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.why-vista-section .wv-main-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-in-out;
  transform: scale(1.03);
}
.why-vista-section .wv-main-img:hover {
  transform: scale(1.06);
}
.why-vista-section .wv-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.65) 0%, transparent 45%), linear-gradient(to right, rgba(5, 5, 5, 0.3) 0%, transparent 60%);
  z-index: 2;
}
.why-vista-section .wv-img-gold-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  z-index: 3;
  mix-blend-mode: color-dodge;
  pointer-events: none;
}
.why-vista-section .wv-badge-redcarpet {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #F7E7C4 0%, #D4AF37 50%, #AA7C11 100%);
  color: #050505;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.3);
  animation: wv-badge-float 5s ease-in-out infinite;
}
.why-vista-section .wv-badge-redcarpet .wv-badge-icon {
  width: 14px;
  height: 14px;
}
.why-vista-section .wv-badge-toronto {
  position: absolute;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(5, 5, 5, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  animation: wv-badge-float 6s ease-in-out infinite;
  animation-delay: -2s;
}
.why-vista-section .wv-badge-toronto .wv-badge-icon {
  width: 22px;
  height: 22px;
  color: #D4AF37;
  flex-shrink: 0;
}
.why-vista-section .wv-badge-toronto .wv-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.why-vista-section .wv-badge-toronto .wv-badge-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #F7E7C4;
  letter-spacing: 0.05em;
}
.why-vista-section .wv-badge-toronto .wv-badge-sub {
  font-size: 0.68rem;
  color: #A0A0A0;
  letter-spacing: 0.04em;
}
.why-vista-section .wv-mini-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 2rem;
  background: rgba(18, 18, 18, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.why-vista-section .wv-mini-stat {
  flex: 1;
  text-align: center;
}
.why-vista-section .wv-mini-stat .wv-stat-num {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.why-vista-section .wv-mini-stat .wv-stat-label {
  font-size: 0.72rem;
  color: #A0A0A0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.why-vista-section .wv-mini-stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
  flex-shrink: 0;
  margin: 0 0.5rem;
}
.why-vista-section .wv-content {
  padding-top: 1rem;
}
.why-vista-section .wv-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #F7E7C4;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(247, 231, 196, 0.05);
}
.why-vista-section .wv-trust-badge .wv-trust-icon {
  width: 14px;
  height: 14px;
  color: #D4AF37;
}
.why-vista-section .wv-heading {
  font-family: "Cinzel", serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.75rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.why-vista-section .wv-gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 280px;
}
.why-vista-section .wv-gold-divider .wv-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0.1));
}
.why-vista-section .wv-gold-divider .wv-divider-diamond {
  color: #D4AF37;
  font-size: 0.7rem;
  flex-shrink: 0;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}
.why-vista-section .wv-copy {
  margin-bottom: 2.25rem;
}
.why-vista-section .wv-copy p {
  font-size: 0.92rem;
  color: #A0A0A0;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.1rem;
}
.why-vista-section .wv-copy p:last-child {
  margin-bottom: 0;
}
.why-vista-section .wv-gold-word {
  color: #F7E7C4;
  font-weight: 500;
}
.why-vista-section .wv-quote {
  position: relative;
  margin-top: 20px;
  background: rgba(212, 175, 55, 0.04);
  border-left: 3px solid rgba(212, 175, 55, 0.5);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 1.75rem 1.5rem 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(212, 175, 55, 0.08);
}
.why-vista-section .wv-quote .wv-quote-mark {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  line-height: 0.6;
  color: rgba(212, 175, 55, 0.3);
  position: absolute;
  top: 1.25rem;
  left: 1rem;
}
.why-vista-section .wv-quote .wv-quote-text {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  font-style: italic;
  padding-left: 1rem;
  margin-bottom: 0.6rem;
}
.why-vista-section .wv-quote .wv-quote-author {
  font-size: 0.72rem;
  color: #D4AF37;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding-left: 1rem;
}
.why-vista-section .wv-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.why-vista-section .wv-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(18, 18, 18, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1.4rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.why-vista-section .wv-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(247, 231, 196, 0.04) 0%, transparent 60%);
  border-radius: 14px;
  pointer-events: none;
}
.why-vista-section .wv-feature-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(25, 22, 10, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.08);
}
.why-vista-section .wv-feature-card:hover .wv-feat-icon-wrap {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(247, 231, 196, 0.5);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}
.why-vista-section .wv-feature-card:hover .wv-feat-icon-wrap svg {
  color: #F7E7C4;
  transform: scale(1.1);
}
.why-vista-section .wv-feat-icon-wrap {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-vista-section .wv-feat-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: #D4AF37;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-vista-section .wv-feat-body {
  flex: 1;
}
.why-vista-section .wv-feat-title {
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.why-vista-section .wv-feat-desc {
  font-size: 0.77rem;
  color: #A0A0A0;
  line-height: 1.55;
  font-weight: 300;
}
.why-vista-section .wv-cta-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@keyframes wv-spotlight-drift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(30px, 20px) scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-20px, -15px) scale(0.95);
    opacity: 1;
  }
}
@keyframes wv-line-sweep {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes wv-particle-drift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(35px, -45px) scale(1.15);
    opacity: 0.5;
  }
  66% {
    transform: translate(-25px, 25px) scale(0.85);
    opacity: 0.2;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
}
@keyframes wv-badge-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
@media (max-width: 1280px) {
  .why-vista-section .wv-layout {
    gap: 3.5rem;
  }
  .why-vista-section .wv-heading {
    font-size: 2.9rem;
  }
  .why-vista-section .wv-main-img {
    height: 480px;
  }
}
@media (max-width: 1024px) {
  .why-vista-section {
    padding: 7rem 0;
  }
  .why-vista-section .wv-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .why-vista-section .wv-visual {
    position: static;
  }
  .why-vista-section .wv-main-img {
    height: 420px;
  }
  .why-vista-section .wv-heading {
    font-size: 2.6rem;
  }
  .why-vista-section .wv-content {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .why-vista-section {
    padding: 5.5rem 0;
  }
  .why-vista-section .wv-heading {
    font-size: 2.2rem;
  }
  .why-vista-section .wv-main-img {
    height: 320px;
  }
  .why-vista-section .wv-features-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .why-vista-section .wv-mini-stats {
    padding: 1.25rem 1rem;
  }
  .why-vista-section .wv-mini-stat .wv-stat-num {
    font-size: 1.75rem;
  }
  .why-vista-section .wv-cta-row {
    flex-direction: column;
  }
  .why-vista-section .wv-cta-row .btn {
    width: 100%;
    justify-content: center;
  }
  .why-vista-section .wv-quote .wv-quote-text {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .why-vista-section {
    padding: 4rem 0;
  }
  .why-vista-section .wv-heading {
    font-size: 24px;
    line-height: 1.4;
  }
  .why-vista-section .wv-badge-toronto,
  .why-vista-section .wv-badge-redcarpet {
    display: none;
  }
  .why-vista-section .wv-mini-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .why-vista-section .wv-mini-stat-divider {
    display: none;
  }
}
.testimonials-section {
  position: relative;
  padding: 8rem 0 0;
  background-color: #050505;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.testimonials-section .ts-bg-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 20% 0%, rgba(170, 124, 17, 0.06) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 80% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 55%), linear-gradient(180deg, #080808 0%, #050505 50%, #060604 100%);
  z-index: 0;
  pointer-events: none;
}
.testimonials-section .ts-bg-texture {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 1;
  pointer-events: none;
}
.testimonials-section .ts-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 2;
}
.testimonials-section .ts-glow.ts-glow-left {
  top: -5%;
  left: -12%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 65%);
  animation: ts-glow-pulse 16s ease-in-out infinite alternate;
}
.testimonials-section .ts-glow.ts-glow-right {
  bottom: 10%;
  right: -10%;
  background: radial-gradient(circle, rgba(170, 124, 17, 0.05) 0%, transparent 65%);
  animation: ts-glow-pulse 20s ease-in-out infinite alternate-reverse;
}
.testimonials-section .ts-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.testimonials-section .ts-p {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 231, 196, 0.5) 0%, transparent 70%);
  filter: blur(2px);
}
.testimonials-section .ts-p.ts-p1 {
  width: 80px;
  height: 80px;
  left: 8%;
  top: 20%;
  animation: ts-float 20s infinite linear;
}
.testimonials-section .ts-p.ts-p2 {
  width: 50px;
  height: 50px;
  right: 12%;
  top: 35%;
  animation: ts-float 15s infinite linear;
  animation-delay: -3s;
  opacity: 0.5;
}
.testimonials-section .ts-p.ts-p3 {
  width: 110px;
  height: 110px;
  left: 55%;
  bottom: 25%;
  animation: ts-float 25s infinite linear;
  animation-delay: -7s;
  opacity: 0.4;
}
.testimonials-section .ts-p.ts-p4 {
  width: 65px;
  height: 65px;
  right: 35%;
  top: 12%;
  animation: ts-float 18s infinite linear;
  animation-delay: -10s;
}
.testimonials-section .ts-p.ts-p5 {
  width: 90px;
  height: 90px;
  left: 28%;
  bottom: 40%;
  animation: ts-float 23s infinite linear;
  animation-delay: -5s;
  opacity: 0.6;
}
.testimonials-section .container {
  position: relative;
  z-index: 5;
}
.testimonials-section .ts-header {
  text-align: center;
  margin-bottom: 4.5rem;
}
.testimonials-section .ts-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: #F7E7C4;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.testimonials-section .ts-badge .ts-badge-icon {
  width: 12px;
  height: 12px;
  color: #D4AF37;
}
.testimonials-section .ts-heading {
  font-family: "Cinzel", serif;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}
.testimonials-section .ts-rating-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: rgba(18, 18, 18, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.75rem 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.testimonials-section .ts-rating-score {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.testimonials-section .ts-rating-score .ts-score-num {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.testimonials-section .ts-rating-score .ts-score-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.testimonials-section .ts-stars {
  display: flex;
  gap: 3px;
}
.testimonials-section .ts-stars svg {
  width: 16px;
  height: 16px;
  fill: #D4AF37;
}
.testimonials-section .ts-stars .star-half {
  opacity: 0.6;
}
.testimonials-section .ts-review-count {
  font-size: 0.72rem;
  color: #A0A0A0;
  letter-spacing: 0.06em;
}
.testimonials-section .ts-rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}
.testimonials-section .ts-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonials-section .ts-bar-row .ts-bar-label {
  font-size: 0.7rem;
  color: #A0A0A0;
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}
.testimonials-section .ts-bar-row .ts-bar-track {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  overflow: hidden;
}
.testimonials-section .ts-bar-row .ts-bar-fill {
  height: 100%;
  background: linear-gradient(135deg, #F7E7C4 0%, #D4AF37 50%, #AA7C11 100%);
  border-radius: 10px;
}
.testimonials-section .ts-bar-row .ts-bar-pct {
  font-size: 0.68rem;
  color: #D4AF37;
  width: 28px;
  flex-shrink: 0;
  font-weight: 600;
}
.testimonials-section .ts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.testimonials-section .ts-featured {
  height: 100%;
}
.testimonials-section .ts-featured-inner {
  position: relative;
  background: rgba(16, 14, 8, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 3rem 2.5rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(247, 231, 196, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonials-section .ts-featured-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 45%);
  pointer-events: none;
  border-radius: 20px;
}
.testimonials-section .ts-featured-inner:hover {
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.testimonials-section .ts-feat-quote-mark {
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.7;
  color: rgba(212, 175, 55, 0.2);
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  pointer-events: none;
  user-select: none;
}
.testimonials-section .ts-feat-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonials-section .ts-feat-stars svg {
  width: 18px;
  height: 18px;
  fill: #D4AF37;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.6));
}
.testimonials-section .ts-feat-quote {
  font-size: 1.05rem;
  color: #E5E5E5;
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  flex: 1;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  padding-top: 0.5rem;
}
.testimonials-section .ts-feat-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.testimonials-section .ts-feat-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, #F7E7C4 0%, #D4AF37 50%, #AA7C11 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}
.testimonials-section .ts-feat-avatar span {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #050505;
}
.testimonials-section .ts-feat-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}
.testimonials-section .ts-feat-info .ts-feat-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}
.testimonials-section .ts-feat-info .ts-feat-detail {
  font-size: 0.75rem;
  color: #A0A0A0;
  letter-spacing: 0.06em;
}
.testimonials-section .ts-tag {
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.testimonials-section .ts-tag.ts-tag-student {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #F7E7C4;
}
.testimonials-section .ts-tag.ts-tag-parent {
  background: rgba(100, 200, 150, 0.08);
  border: 1px solid rgba(100, 200, 150, 0.25);
  color: #a8d8b8;
}
.testimonials-section .ts-feat-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  position: relative;
  z-index: 1;
}
.testimonials-section .ts-feat-divider span:not(.ts-feat-diamond) {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
}
.testimonials-section .ts-feat-divider .ts-feat-diamond {
  color: rgba(212, 175, 55, 0.4);
  font-size: 0.6rem;
}
.testimonials-section .ts-feat-glow-orb {
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
  animation: ts-orb-pulse 8s ease-in-out infinite alternate;
}
.testimonials-section .ts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-content: start;
}
.testimonials-section .ts-card {
  background: rgba(15, 13, 7, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}
.testimonials-section .ts-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  pointer-events: none;
}
.testimonials-section .ts-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.07);
}
.testimonials-section .ts-card-stars {
  display: flex;
  gap: 3px;
}
.testimonials-section .ts-card-stars svg {
  width: 13px;
  height: 13px;
  fill: #D4AF37;
}
.testimonials-section .ts-card-quote {
  font-size: 0.84rem;
  color: #A0A0A0;
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  flex: 1;
}
.testimonials-section .ts-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.85rem;
}
.testimonials-section .ts-card-avatar {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, #F7E7C4 0%, #D4AF37 50%, #AA7C11 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #050505;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonials-section .ts-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.testimonials-section .ts-card-info .ts-card-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}
.testimonials-section .ts-card-info .ts-card-loc {
  font-size: 0.68rem;
  color: #A0A0A0;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonials-section .ts-marquee-wrap {
  margin-top: 5rem;
  background: rgba(212, 175, 55, 0.04);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.testimonials-section .ts-marquee-wrap::before, .testimonials-section .ts-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.testimonials-section .ts-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #050505, transparent);
}
.testimonials-section .ts-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #050505, transparent);
}
.testimonials-section .ts-marquee-track {
  overflow: hidden;
}
.testimonials-section .ts-marquee-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ts-marquee-scroll 40s linear infinite;
  width: max-content;
}
.testimonials-section .ts-tick {
  font-size: 0.82rem;
  color: #A0A0A0;
  font-weight: 400;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.testimonials-section .ts-tick:hover {
  color: #F7E7C4;
}
.testimonials-section .ts-tick-dot {
  color: rgba(212, 175, 55, 0.4);
  font-size: 0.5rem;
  flex-shrink: 0;
}

@keyframes ts-glow-pulse {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15) translate(20px, 15px);
    opacity: 0.5;
  }
  100% {
    transform: scale(0.9) translate(-15px, -10px);
    opacity: 1;
  }
}
@keyframes ts-float {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(30px, -40px) scale(1.1);
    opacity: 0.5;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.85);
    opacity: 0.2;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
}
@keyframes ts-orb-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.3);
    opacity: 1;
  }
}
@keyframes ts-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 1200px) {
  .testimonials-section .ts-heading {
    font-size: 2.8rem;
  }
  .testimonials-section .ts-layout {
    gap: 1.75rem;
  }
}
@media (max-width: 992px) {
  .testimonials-section {
    padding: 6rem 0 0;
  }
  .testimonials-section .ts-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .testimonials-section .ts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-section .ts-rating-strip {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .testimonials-section .ts-rating-score {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .testimonials-section {
    padding: 4.5rem 0 0;
  }
  .testimonials-section .ts-heading {
    font-size: 2.2rem;
  }
  .testimonials-section .ts-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-section .ts-rating-strip {
    padding: 1.25rem 1.5rem;
  }
  .testimonials-section .ts-feat-quote {
    font-size: 0.95rem;
  }
  .testimonials-section .ts-marquee-wrap {
    margin-top: 3.5rem;
  }
}
@media (max-width: 480px) {
  .testimonials-section {
    padding: 3.5rem 0 0;
  }
  .testimonials-section .ts-heading {
    font-size: 1.85rem;
  }
  .testimonials-section .ts-featured-inner {
    padding: 2rem 1.5rem;
  }
  .testimonials-section .ts-feat-quote-mark {
    font-size: 5rem;
  }
  .testimonials-section .ts-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer {
  position: relative;
  background-color: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
}
.site-footer .ft-top-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  pointer-events: none;
}
.site-footer .ft-top-glow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 80px;
  background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.site-footer .ft-body {
  padding: 5rem 0 4rem;
}
.site-footer .ft-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}
.site-footer .ft-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-footer .ft-col-brand {
  gap: 1rem;
}
.site-footer .ft-col-brand .ft-logo {
  display: inline-block;
  margin-bottom: 0.25rem;
  transition: opacity 0.3s ease;
}
.site-footer .ft-col-brand .ft-logo img {
  width: 100%;
  max-width: 140px;
}
.site-footer .ft-col-brand .ft-logo:hover {
  opacity: 0.85;
}
.site-footer .ft-col-brand .ft-tagline {
  font-size: 0.82rem;
  color: #A0A0A0;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.03em;
}
.site-footer .ft-col-brand .ft-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.25rem 0;
  max-width: 140px;
}
.site-footer .ft-col-brand .ft-divider .ft-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.4), transparent);
}
.site-footer .ft-col-brand .ft-divider .ft-divider-gem {
  font-size: 0.5rem;
  color: rgba(212, 175, 55, 0.5);
}
.site-footer .ft-col-brand .ft-since {
  font-size: 0.75rem;
  color: #A0A0A0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-footer .ft-gold {
  color: #F7E7C4;
  font-weight: 600;
}
.site-footer .ft-col-contact {
  gap: 1.25rem;
}
.site-footer .ft-col-heading {
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.site-footer .ft-col-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: linear-gradient(135deg, #F7E7C4 0%, #D4AF37 50%, #AA7C11 100%);
}
.site-footer .ft-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer .ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.site-footer .ft-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-footer .ft-contact-icon svg {
  width: 16px;
  height: 16px;
  color: #D4AF37;
}
.site-footer .ft-contact-text {
  font-size: 0.83rem;
  color: #A0A0A0;
  line-height: 1.6;
  font-weight: 300;
  padding-top: 0.5rem;
}
.site-footer .ft-contact-link {
  font-size: 0.83rem;
  color: #A0A0A0;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  padding-top: 0.5rem;
  display: inline-block;
}
.site-footer .ft-contact-link:hover {
  color: #F7E7C4;
}
.site-footer .ft-col-cta {
  gap: 1rem;
  align-items: flex-start;
}
.site-footer .ft-col-cta .ft-col-heading {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: none;
}
.site-footer .ft-col-cta .ft-col-heading::after {
  width: 40px;
}
.site-footer .ft-cta-sub {
  font-size: 0.8rem;
  color: #A0A0A0;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.site-footer .ft-cta-btn {
  padding: 0.8rem 2.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
}
.site-footer .ft-cta-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: #A0A0A0;
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-top: 0.25rem;
}
.site-footer .ft-cta-note .ft-note-icon {
  width: 14px;
  height: 14px;
  color: #D4AF37;
  flex-shrink: 0;
}
.site-footer .ft-copy-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.1rem 0;
}
.site-footer .ft-copy-bar .container {
  position: relative;
  z-index: 1;
}
.site-footer .ft-copy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer .ft-copy-text {
  font-size: 0.75rem;
  color: #A0A0A0;
  letter-spacing: 0.04em;
  font-weight: 300;
}
.site-footer .ft-powered {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: #A0A0A0;
  letter-spacing: 0.04em;
  font-weight: 300;
}
.site-footer .ft-powered-link {
  color: #A0A0A0;
  transition: color 0.3s ease;
}
.site-footer .ft-powered-link:hover {
  color: #F7E7C4;
}
.site-footer .ft-powered-sep {
  color: rgba(212, 175, 55, 0.25);
  font-size: 0.6rem;
}

.site-footer .ft-contact-item:hover .ft-contact-icon {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.1);
}

@media (max-width: 992px) {
  .site-footer .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .site-footer .ft-col-brand {
    grid-column: span 2;
    align-items: center;
    text-align: center;
  }
  .site-footer .ft-col-brand .ft-divider {
    max-width: 180px;
    margin: 0 auto;
  }
  .site-footer .ft-col-brand .ft-divider .ft-divider-line {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  }
  .site-footer .ft-col-cta {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .site-footer .ft-body {
    padding: 3.5rem 0 3rem;
  }
  .site-footer .ft-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .site-footer .ft-col-brand {
    grid-column: span 1;
    align-items: center;
  }
  .site-footer .ft-col-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .site-footer .ft-contact-item {
    justify-content: center;
    text-align: left;
  }
  .site-footer .ft-col-cta {
    align-items: center;
  }
  .site-footer .ft-cta-note {
    justify-content: center;
  }
  .site-footer .ft-copy-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
@media (max-width: 480px) {
  .site-footer .ft-body {
    padding: 3rem 0 2.5rem;
  }
  .site-footer .ft-copy-bar {
    padding: 1rem 0;
  }
  .site-footer .ft-powered {
    flex-wrap: wrap;
    justify-content: center;
  }
}
