/* ========================================
   CSS Reset & Base Styles
   ======================================== */

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

:root {
  /* Colors */
  --color-white: #ffffff;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;
  --color-blue-50: #eff6ff;
  --color-purple-50: #faf5ff;
  --color-pink-50: #fdf2f8;
  --color-yellow-500: #eab308;
  --color-blue-600: #2563eb;
  --color-blue-800: #1e40af;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(to bottom right, var(--color-gray-50), var(--color-white), var(--color-gray-50));
  color: var(--color-gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   Page System
   ======================================== */

.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
  background: linear-gradient(90deg, rgb(16 37 55) 0%, rgb(26 58 75) 35%, rgb(83 120 126) 100%);
}

.page-container {
  position: relative;
  min-height: 100vh;
}

/* ========================================
   Animated Background
   ======================================== */

.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(64px);
  opacity: 0.3;
  animation: blob 7s infinite;
}

.blob-1 {
  top: 0;
  left: -1rem;
  background-color: var(--color-blue-50);
}

.blob-2 {
  top: 0;
  right: -1rem;
  background-color: var(--color-purple-50);
  animation-delay: 2s;
}

.blob-3 {
  bottom: -2rem;
  left: 5rem;
  background-color: var(--color-pink-50);
  animation-delay: 4s;
}

@keyframes blob {
  0%, 100% {
    transform: translate(0px, 0px) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* ========================================
   Layout
   ======================================== */

.content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .content-wrapper {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .content-wrapper {
    padding: 4rem 2rem;
  }
}

.content-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ========================================
   Header
   ======================================== */

   .nax-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .nav-item {
    background: #ffffffbe;
    border-radius: 12px;
    padding: 5px 15px;
    cursor: pointer;
  }

  .nav-item a {
    text-decoration: none;
    font-size: 14px;
    color: #111827;
  }

  .about-text.about-paragraph.bul {
    color: #bcbcbcde;
    margin-bottom: 10px;
    font-size: 20px;
  }

.header {
  text-align: center;
  padding-bottom: 1rem;
}

.logo-wrapper {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo img {
  width: 180px;
 border-radius: 12px;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-white);
}

.main-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .main-title {
    font-size: 3rem;
  }
}

.subtitle {
  color: #ffffff69;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}

/* ========================================
   Cards
   ======================================== */

.card {
  background: rgb(255 255 255 / 0%);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem 1rem;
  border: 1px solid var(--color-gray-100);
  transition: all 0.5s ease;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .card {
    padding: 2.5rem;
  }
}

.card-dark {
  background: linear-gradient(to bottom right, #0e2d41, #071e29);
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  color: var(--color-white);
}

@media (min-width: 640px) {
  .card-dark {
    padding: 2.5rem;
  }
}

.white {
  background: #fff;
}

/* ========================================
   Section Titles
   ======================================== */

.section-title {
  font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #e8e8e8;
    font-weight: 600;
    /* margin-bottom: 1.25rem; */
    text-align: center;
}

.section-title-light {
 font-size: 21px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #e8e8e8;
    font-weight: 600;
    /* margin-bottom: 1.5rem; */
    text-align: center;
}

/* ========================================
   Registration Section
   ======================================== */

.registration-number {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-gray-900);
  text-align: center;
  letter-spacing: 0.025em;
}

@media (min-width: 640px) {
  .registration-number {
    font-size: 1.875rem;
  }
}

/* ========================================
   Address Section
   ======================================== */

.address-content {
  text-align: center;
}

.address-line {
  font-size: 1.125rem;
  color: var(--color-gray-700);
  line-height: 1.4;
}

.address-country {
  color: var(--color-gray-900);
  font-weight: 500;
}

/* ========================================
   About Company Section
   ======================================== */

.about-text {
  font-size: 1rem;
  color: var(--color-gray-100);
  line-height: 1.75;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 640px) {
  .about-text {
    font-size: 1.125rem;
  }
}

.about-paragraph {
  margin-bottom: 1.5rem;
}

/* ========================================
   Partners Section
   ======================================== */

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

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.partner-card {
  display: flex;
  justify-content: center;
  padding: 20px;
  background-color: var(--color-white);
  border-radius: 1rem;
  border: 1px solid var(--color-gray-100);
  transition: all 0.3s ease;
  cursor: default;
}



.partner-card.prod-card {
  background: transparent;
  border: none;
   padding: 0 20px;
}

.partner-content {
  text-align: center;
}

.partner-content img {
  border-radius: 50%;
  width: 40px;
}

.prod p {
 color: #ffffffcc;
    margin-bottom: 10px;
    font-size: 16px;
}

/* .card.prod-box {
background-color: var(--color-white);
} */

.partner-content.prod img {
  border-radius: 0%;
  width: 100px;
}

.partner-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.beeline-logo {
  color: var(--color-yellow-500);
}

.mbank-logo {
  background: linear-gradient(to right, var(--color-blue-600), var(--color-blue-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.partner-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-900);
}

.partner-name-small {
  font-size: 0.75rem;
  line-height: 1.2;
}

/* ========================================
   Contact Section
   ======================================== */

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-item {
  display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: #223458;
    text-decoration: none;
    border: 1px solid #3741518a;
    width: 100%;
    padding: 10px 15px;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    max-width: 28rem;
}

.contact-item:hover {
  color: var(--color-gray-600);
  background-color: var(--color-gray-50);
}

.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-gray-400);
  transition: color 0.3s ease;
}

.contact-item:hover .contact-icon {
  color: var(--color-gray-600);
}

.contact-text {
  font-weight: 500;
}

/* ========================================
   WhatsApp Button
   ======================================== */

.whatsapp-button-container, .reest-button-box, .product-container {
  width: 100%;
  max-width: 28rem;
  margin-top: 10px;
}

.reest-button-box, .product-container {
  margin: 20px auto 0;
}

.whatsapp-button, .reest-button, .product-button {
  position: relative;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 0rem;
  background: linear-gradient(to right, var(--color-gray-900), var(--color-gray-800));
  color: var(--color-white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-button {
  background: var(--color-white);
  color: var(--color-gray-900);
}

.whatsapp-button:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.whatsapp-button:active {
  transform: scale(0.95);
}

.whatsapp-button-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-gray-800), var(--color-gray-700));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-button:hover .whatsapp-button-bg {
  opacity: 1;
}

.whatsapp-icon {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  z-index: 10;
}

.whatsapp-text {
  position: relative;
  z-index: 10;
}

/* ========================================
   Data Processing
   ======================================== */

.data-processing {
  text-align: center;
  padding: 0;
}

@media (min-width: 640px) {
  .data-processing {
    padding: 0 2rem;
  }
}

.data-processing-content {
  display: inline-block;
 background: rgb(249 250 251 / 0%);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--color-gray-100);
}

.data-processing-text {
  font-size: 0.875rem;
  color: #ffffffad;
  line-height: 1.75;
  max-width: 36rem;
}

/* ========================================
   Footer
   ======================================== */
.regist-title {
  color: #00283375;
  margin-bottom: 15px;
  font-size: 18px;
  letter-spacing: 0;
}
.regist-span {
  font-size: 17px;
   color: #00283375;
    margin-bottom: 10px;
}
.footer {
  margin-top: 0;
    padding-top:25px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-content: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

.footer-link {
  color: var(--color-gray-400);
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer .fot-text {
  text-decoration: none;
  text-align: center;
  text-transform: none;
  color: #ffffffad;
}

footer .fot-text a {
 color: #ffffffad;
}

/* ========================================
   Policy Pages
   ======================================== */

.policy-container {
  max-width: 300px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--color-gray-100);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .policy-container {
    padding: 3rem;
  }
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: 1px solid var(--color-gray-300);
  border-radius: 0.75rem;
  color: var(--color-gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.back-button:hover {
  background-color: var(--color-gray-50);
  border-color: var(--color-gray-400);
  transform: translateX(-4px);
}

.back-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.policy-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-gray-200);
}

@media (min-width: 640px) {
  .policy-title {
    font-size: 20px;
  }

  .policy-container {
    min-width: 590px;
  }
}

@media (min-width: 1000px) {
  .policy-title {
    font-size: 20px;
  }

  .policy-container {
    min-width: 950px;
  }
}


.policy-section {
  margin-bottom: 2rem;
}

.policy-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gray-900);
  margin-bottom: 1rem;
}

.policy-text {
  font-size: 1rem;
  color: var(--color-gray-700);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.policy-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.policy-list li {
  font-size: 1rem;
  color: var(--color-gray-700);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.policy-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray-200);
}

.policy-date {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  font-style: italic;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.delay-200 {
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-400 {
  animation-delay: 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-600 {
  animation-delay: 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-700 {
  animation-delay: 0.7s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-800 {
  animation-delay: 0.8s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-1000 {
  animation-delay: 1s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-1200 {
  animation-delay: 1.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* ========================================
   Additional Animation Classes for React
   ======================================== */

.animation-delay-200 {
  animation-delay: 0.2s;
}

.animation-delay-400 {
  animation-delay: 0.4s;
}

.animation-delay-600 {
  animation-delay: 0.6s;
}

.animation-delay-700 {
  animation-delay: 0.7s;
}

.animation-delay-800 {
  animation-delay: 0.8s;
}

.animation-delay-1000 {
  animation-delay: 1s;
}

.animation-delay-1200 {
  animation-delay: 1.2s;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}
