/* TTS Page Specific Styles */

/* Active Navigation Link */
.nav-link.active {
  color: var(--primary-400);
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-400);
  border-radius: 1px;
}


/* TTS Hero Section */
.tts-hero {
  background: linear-gradient(135deg, #001b3b 0%, #001b3b 70%, #dc2626 100%);
  padding: 6rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.tts-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.tts-hero-title {
  font-size: clamp(1.875rem, 6vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.tts-hero-description {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.tts-hero-features {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 0.875rem;
}

/* Hide 3D bank model on mobile and small tablets */
.tts-hero-visual {
  display: none;
}

@media (min-width: 640px) {
  .tts-hero {
    padding: 7rem 0 5rem;
  }

  .tts-hero-content {
    gap: 3.5rem;
  }

  .tts-hero-title {
    margin-bottom: 1.25rem;
  }

  .tts-hero-description {
    margin-bottom: 1.75rem;
    max-width: 600px;
  }

  .tts-hero-features {
    gap: 1rem;
    margin-bottom: 2.25rem;
  }

  .hero-feature {
    gap: 0.75rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .tts-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .tts-hero-visual {
    display: block;
  }

  .tts-hero-description {
    margin-bottom: 2rem;
  }

  .tts-hero-features {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .tts-hero {
    padding: 8rem 0 6rem;
  }
}

@media (min-width: 1280px) {
  .tts-hero {
    padding: 10rem 0 8rem;
  }
}

/* 3D Bank Model */
.bank-model-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  padding: 1.5rem;
}

.bank-3d-model {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
  /* animation: modelFloat 6s ease-in-out infinite; */
  transition: all 0.3s ease;
  border-radius: 0.75rem;
}

.bank-3d-model:hover {
  transform: scale(1.02) rotateY(5deg);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.model-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0.1) 30%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  z-index: -1;
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-icon-1 {
  top: 15%;
  left: 10%;
  animation: floatIcon1 5s ease-in-out infinite;
}

.floating-icon-2 {
  bottom: 15%;
  right: 10%;
  width: 3rem;
  height: 3rem;
  animation: floatIcon2 6s ease-in-out infinite 1s;
}

.floating-icon-3 {
  bottom: 20%;
  left: 5%;
  width: 2.5rem;
  height: 2.5rem;
  animation: floatIcon3 4s ease-in-out infinite 2s;
}

.model-reflection {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.6;
}

/* Enhanced Animations */
@keyframes modelFloat {
  0%,
  100% {
    transform: translateY(0px) rotateY(-2deg);
  }
  50% {
    transform: translateY(-15px) rotateY(2deg);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes floatIcon1 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(5deg);
  }
  66% {
    transform: translateY(-5px) rotate(-3deg);
  }
}

@keyframes floatIcon2 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-5deg);
  }
}

@keyframes floatIcon3 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(3deg);
  }
  75% {
    transform: translateY(-4px) rotate(-2deg);
  }
}

/* Responsive adjustments for the 3D model */
@media (min-width: 768px) {
  .bank-model-container {
    padding: 2rem;
  }

  .bank-3d-model {
    max-width: 400px;
    border-radius: 1rem;
  }

  .floating-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
  }

  .floating-icon-2 {
    width: 2.75rem;
    height: 2.75rem;
  }

  .floating-icon-3 {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .bank-3d-model {
    max-width: 500px;
  }

  .floating-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .floating-icon-2 {
    width: 3rem;
    height: 3rem;
  }

  .floating-icon-3 {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 480px) {
  .bank-3d-model {
    max-width: 280px;
  }

  .bank-model-container {
    padding: 1rem;
  }
}

/* TTS Coverage Section */
.tts-coverage {
  background: #d1d1d1;
  padding: 4rem 0;
  color: var(--neutral-900);
}

.tts-coverage-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.professional-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.professional-photo {
  width: 100%;
  max-width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.professional-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.overlay-element {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-500);
  opacity: 0.8;
  animation: pulse 3s ease-in-out infinite;
}

.overlay-1 {
  top: 10%;
  right: -10px;
  width: 20px;
  height: 20px;
}

.overlay-2 {
  bottom: 30%;
  left: -15px;
  width: 30px;
  height: 30px;
  animation-delay: 1s;
}

.overlay-3 {
  top: 50%;
  right: -20px;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
}

.coverage-title {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0.75rem;
}

.coverage-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--neutral-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.coverage-list {
  display: grid;
  gap: 1.25rem;
}

.coverage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.coverage-bullet {
  width: 8px;
  height: 8px;
  background: var(--primary-500);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.coverage-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.375rem;
}

.coverage-text p {
  color: var(--neutral-600);
  line-height: 1.6;
  font-size: 0.875rem;
}

/* Why Separate Section */
.why-separate {
  background: var(--neutral-100);
  padding: 4rem 0;
}

.why-separate-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.why-separate-title {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: 1rem;
}

.why-separate-description {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--neutral-700);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.why-separate-benefits {
  display: grid;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.375rem;
}

.benefit-text p {
  color: var(--neutral-600);
  line-height: 1.6;
  font-size: 0.875rem;
}

/* Vault Visual */
.vault-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.vault-door {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 20px #1a252f, 0 0 0 40px #2c3e50, 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: rotate 20s linear infinite;
}

.vault-handle {
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 20px;
  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
  border-radius: 10px;
  transform: translateY(-50%);
}

.vault-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
}

.lock-circle {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #34495e, #2c3e50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}

.lock-inner {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.vault-bolts {
  position: absolute;
  inset: 20px;
}

.bolt {
  position: absolute;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bolt:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.bolt:nth-child(2) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.bolt:nth-child(3) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.bolt:nth-child(4) {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Features Grid */
.tts-features-grid {
  background: var(--neutral-900);
  padding: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-400);
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon svg {
  color: white;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--neutral-300);
  line-height: 1.6;
  font-size: 0.875rem;
}

/* Partnership Section */
.partnership {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 4rem 0;
}

.partnership-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.partnership-visual {
  position: relative;
}

.partnership-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.partnership-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
}

.overlay-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  border-radius: 50%;
  opacity: 0.9;
  animation: pulse 3s ease-in-out infinite;
}

.partnership-text h2 {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

.partnership-text p {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (min-width: 640px) {
  .tts-coverage {
    padding: 5rem 0;
  }

  .tts-coverage-content {
    gap: 3.5rem;
  }

  .professional-photo {
    max-width: 350px;
    height: 450px;
    border-radius: 1rem;
  }

  .coverage-title {
    margin-bottom: 1rem;
  }

  .coverage-subtitle {
    margin-bottom: 2.25rem;
  }

  .coverage-list {
    gap: 1.5rem;
  }

  .coverage-item {
    gap: 1rem;
    padding: 1rem 0;
  }

  .coverage-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .coverage-text p {
    font-size: 1rem;
  }
}

@media (min-width: 640px) {
  .why-separate {
    padding: 5rem 0;
  }

  .why-separate-content {
    gap: 3.5rem;
  }

  .why-separate-title {
    margin-bottom: 1.25rem;
  }

  .why-separate-description {
    margin-bottom: 2.25rem;
  }

  .why-separate-benefits {
    gap: 1.75rem;
  }

  .benefit-item {
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .benefit-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
  }

  .benefit-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .benefit-text p {
    font-size: 1rem;
  }
}

@media (min-width: 640px) {
  .tts-features-grid {
    padding: 5rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .feature-card {
    padding: 2rem;
    border-radius: 1rem;
  }

  .feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    margin-bottom: 1.25rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .feature-card p {
    font-size: 1rem;
  }
}

@media (min-width: 640px) {
  .partnership {
    padding: 5rem 0;
  }

  .partnership-content {
    gap: 3.5rem;
  }

  .partnership-image {
    height: 350px;
    border-radius: 1rem;
  }

  .partnership-text h2 {
    margin-bottom: 1.25rem;
  }

  .partnership-text p {
    margin-bottom: 1.75rem;
  }
}

@media (min-width: 768px) {
  .tts-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .tts-hero-visual {
    display: block;
  }

  .tts-coverage-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .why-separate-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .partnership-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .why-separate-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .why-separate-description {
    margin-bottom: 2.5rem;
  }

  .why-separate-benefits {
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .partnership-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }


  .partnership-text p {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .tts-hero {
    padding: 8rem 0 6rem;
  }
}

@media (min-width: 1024px) {
  .why-separate {
    padding: 6rem 0;
  }

  .benefit-icon {
    width: 3rem;
    height: 3rem;
  }
}

@media (min-width: 1024px) {
  .tts-coverage {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .partnership {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .tts-features-grid {
    padding: 6rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
  }
}
