body {
  margin: 0;
font-family: 'Lato', sans-serif;
  background-color: #0b0b0b;
}

.hero-section {
  position: relative;
  background-color: #0b0b0b;
background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.container {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.left-box {
  color: white;
  width: 55%;
    transform: translateY(80px); /* ✅ visually moves it down */

}

.left-box h1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
}

.left-box h1 span {
  font-weight: 800;
}

.left-box p {
  font-size: 16px;
  color: #b8c7d1;
}

.arrow-button {
  font-size: 26px;
  margin-top: 30px;
  background: #46ffee;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: black;
  cursor: pointer;
}

.form-box {
  width: 45%;
  background-color: rgba(0, 0, 0, 0.3); /* transparent black background */
  padding: 40px;
  border-radius: 32px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2); /* subtle white border */
  backdrop-filter: blur(8px); /* optional: glassmorphism effect */
}

.form-box h2 {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}
.form-box {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1s ease-out forwards;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

form input,
form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border: none;
  border-bottom: 1px solid #4f76a5;
  background-color: transparent;
  color: white;
  font-size: 14px;
}

form textarea {
  resize: vertical;
  height: 80px;
}

form button {
  width: 100%;
  padding: 14px;
  background-color: #46ffee;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.main-header {
  background-color: #0d0d0d;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ccc;
  border-radius:8px;
  padding: 6px 10px;
          height:60px;
}

.logo-en {
  color: #4ff1e2;
  font-weight: bold;
}

.logo-rest {
  color: #cfd8dc;
}






.header-contact {
  color: #d3d3d3;
  font-size: 14px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}



.header-nav a {
  text-decoration: none;
  color: #cfd8dc;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: #4ff1e2;
}

.active-dot::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4ff1e2;
  margin-right: -8px;
}
.input-group {
  position: relative;
  margin-bottom: 24px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #4ff1e2;
  background: transparent;
  font-size: 14px;
  color: white;
  outline: none;
  resize: none;
}

.input-group label {
  position: absolute;
  left: 0;
  top: 10px;
  color: #aaa;
  font-size: 14px;
  pointer-events: none;
  transition: all 0.2s ease;
}

/* Float label on focus or when input has content */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: -14px;
  font-size: 12px;
  color: #4ff1e2;
}
.partner-section-wrapper {
  background-color: #0b0b0b;
  padding: 0 20px;
}

.partner-section {
  background-color: #0b0b0b;
  border-radius: 40px;
  padding: 60px 20px 100px 20px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.partner-section h2 {
  font-size: 1.25rem;
  color: white;
  margin-top: -10px;
  margin-bottom: 80px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 300; /* ✅ makes the text thinner */
}

.partner-slider img {
  max-width: 150px;
  margin: auto;
  transition: filter 0.3s ease;
}

.partner-slider img:hover {
  filter: grayscale(0%);
}

.partner-slider .partner-card {
  margin: 0 10px;
}

.white-spacer {
  height: 40px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-bar-container {
  width: 80%;
  height: 8px;
  background-color: #222;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 100%;
  background-color: #4ff1e2;
  border-radius: 5px;
  transition: width 4s linear; /* Smooth transition */
}


.site-footer {
  background-color: #0b0b0b;
  color: #ccc;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;   /* spaces out left and center */
  align-items: center;              /* ✅ vertical alignment */
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left {
  flex: 1;
  margin-left:120px;
}

.footer-left .logo {
  font-size: 24px;
  margin-bottom: 10px;
  color: #4ff1e2;
}

.logo-en {
  font-weight: bold;
}

.footer-left p {
  color: #aaa;
  font-size: 14px;
  max-width: 500px;
  margin: 0;
}

.footer-bottom {
  font-size: 13px;
  color: #777;
  text-align: center;
  flex: 1;
   margin-top: 56px;
   margin-right:607px;
}
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .left-box,
  .form-box {
    width: 90%;
    text-align: center;
    transform: none;
  }

  .arrow-button {
    margin: 20px auto 0;
  }

  .form-box {
    padding: 30px;
  }

  .partner-slider img {
    max-width: 120px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer-left {
    margin-left: 0;
  }

  .footer-bottom {
    margin: 0;
  }
}

@media (max-width: 600px) {
  .left-box h1 {
    font-size: 28px;
  }

  .left-box p {
    font-size: 14px;
  }

  .form-box {
    padding: 20px;
  }

  .partner-section {
    padding: 40px 10px;
  }

  .partner-slider img {
    max-width: 90px;
  }

  .progress-bar-container {
    width: 90%;
  }


  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-left .logo {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 20px;
  }


  .header-contact {
    font-size: 13px;
    color: #ccc;
  }

  .header-nav {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    margin-top: 10px;
  }

  .header-nav a {
    display: inline-block;
    padding: 4px 8px;
  }
}



.counter-group-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px; /* ✅ increase this value as needed */
}

.counter-box {
  flex: 1;
  min-width: 180px;
  color: white;
}

.counter-label {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500;
  color: #fff;
}

.counter-label span {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.btn-counter {
  width: 36px;
  height: 36px;
  font-size: 20px;
  border: none;
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center; /* ✅ center the symbol vertically */
  padding: 0;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.btn-counter:hover {
  background-color: #ffe7d6;
}

.count-display {
  font-size: 16px;
  width: 24px;
  text-align: center;
  color: #fff;
}

.form-label-static {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 12px;
  font-weight: 400;
  display: block;
}
.btn-counter:disabled {
  background-color: #ddd !important;
  color: black !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
  border: none !important;
  pointer-events: none;
}
.input-group input[readonly]:not(:placeholder-shown) + label {
  top: -14px;
  font-size: 12px;
  color: #4ff1e2;
}
/* Float label when input has preset value */
.input-group input.filled + label {
  top: -14px;
  font-size: 12px;
  color: #4ff1e2;
}
.form-step {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  position: absolute;
  width: 100%;
}

.active-step {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}
.form-box form {
  position: relative;
  min-height: 500px; /* 🔧 Adjust this height based on max form step content */
  transition: height 0.4s ease;
}
.form-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.4s ease;
  opacity: 0;
  visibility: hidden;
}

.form-step.active-step {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}



/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* This centers the modal */
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* Background overlay */
  backdrop-filter: blur(4px);     /* Optional: blurred background */
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}


/* Modal Content Box */
.modal-content {
  background: #1a1a1a; /* deep black */
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 700px;
  width: 95%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: scaleIn 0.4s ease-in-out;
  position: center;
  color: #ffffff; /* white text */
}

/* Tick Icon Styling */
.tick-icon {
  font-size: 70px;
  color: #28a745; /* green tick */
  margin-bottom: 20px;
  animation: popIn 0.6s ease-out;
}


/* Main Title */
.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Description Text */
.modal-text {
  font-size: 16px;
  color: #dddddd;
  line-height: 1.6;
}

/* Divider Line */
.modal-content hr {
  border-top: 1px solid #444;
}

/* Call Message */
.call-message {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #28a745; /* green */
  animation: pulse 2s infinite;
}

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

@keyframes scaleIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}



/* Contact Row Flex */
.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Phone Icon Styling */
.pulse-icon {
  font-size: 28px;
  color: #28a745;
  animation: pulseIcon 1.5s infinite;
}

/* Align icon vertically with text and avatar */
.align-fix {
  display: flex;
  align-items: center;
}

/* Connecting Dots Animation */
.typing-dots span {
  animation: blink 1.4s infinite;
  animation-delay: calc(0.2s * var(--i));
  font-weight: bold;
  font-size: 30px;
  color: #28a745;
}
.typing-dots span:nth-child(1) { --i: 1; }
.typing-dots span:nth-child(2) { --i: 2; }
.typing-dots span:nth-child(3) { --i: 3; }

/* Avatar Image */
.contact-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #28a745;
}

/* Animations */
@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes blink {
  0%, 80%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

/* Fix autofill background flash */
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Float label properly even for prefilled/readonly */
.input-group input.filled + label,
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group input[readonly] + label {
  top: -14px;
  font-size: 12px;
  color: #4ff1e2;
}
.input-group select {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #4ff1e2;
  background: transparent;
  font-size: 14px;
  color: white;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234ff1e2' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px 7px;
  padding-right: 20px;
}

.input-group select option {
  background-color: black;
  color: white;
}

/* Label float for selects */
.input-group select:focus + label,
.input-group select.filled + label {
  top: -14px;
  font-size: 12px;
  color: #4ff1e2;
}


.input-group input.static-input{
 color: #888 !important;
  font-style: italic;
  background-color: transparent;
  pointer-events: none;
  border-bottom: 1px dashed #4ff1e2;
  opacity: 0.7;
}
.input-group label[for]:after {
  content: " *";
  color: red;
  margin-left: 4px;
  font-weight: bold;
}

/* === UPDATED CHECKBOX GROUP (TRANSPARENT BOX & 2-COLUMN LAYOUT) === */

/* 1. This styles the main container box */
.checkbox-group {
    border: 1px solid rgba(255, 255, 255, 0.1);    border-radius: 15px;
    padding: 20px 15px 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    text-align: left;
}



/* 2. This styles the title inside the box */
.checkbox-group-title {
    font-size: 1rem;
    font-weight: normal;
    color: grey;
    margin-top: 0;
    margin-bottom: 15px;
}

/* 3. This arranges the checkboxes into two columns */
.checkbox-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* THIS CREATES "2 OPTIONS IN A ROW" */
    gap: 12px 10px;                         /* Controls the space between the checkbox items */
}

/* 4. This styles the individual checkbox label and text */
.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: grey;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    accent-color: #0d6efd; /* Keeps the checkmark blue when selected */
}
/* This makes the star red */
.required-star {
    color: red;
    margin-left: 2px; /* Adds a little space between the text and the star */
      font-weight: bold;

}
/* === PROGRESS BAR STYLES === */
.progress-bar-container {
    position: relative;
    width: 100%;
    margin: 20px auto 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* This is the gray line in the background */
.progress-bar-container::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background-color: #e0e0e0;
    width: 100%;
    z-index: 1;
}

/* This is the blue fill-line that will animate */
.progress-bar-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background-color: #0d6efd;
    width: 0%; /* Starts at 0% width */
    z-index: 2;
    transition: width 0.4s ease;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #888;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    z-index: 3;
    transition: background-color 0.4s ease, color 0.4s ease;
    border: 3px solid white; /* Creates a clean look */
}

.step-indicator.active {
    background: #0d6efd;
    color: white;
}
/* This ensures the progress bar has the same width as the partner slider */
.progress-bar-container {
    max-width: 1100px; /* Or the exact max-width of your partner-section */
    margin: 0 auto;    /* Centers the container */
    padding: 20px 0;   /* Adds some vertical space */
}

/* This styles the disabled state for the counter buttons */
.btn-counter:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
/* === RESPONSIVE STYLES FOR MEMBER COUNTER === */
@media (max-width: 700px) {
  .counter-group-box {
    padding: 10px;
  }
  .counter-wrapper {
    flex-direction: column;
    gap: 18px; /* Add space between stacked counters */
  }
  .counter-box {
    width: 100%;
  }
  .counter-label {
    margin-bottom: 6px;
    display: block;
  }
  .counter-controls {
    justify-content: flex-start;
    gap: 10px;
  }
}

/* Optional: Form box width on small screens */
@media (max-width: 540px) {
  .form-box {
    padding: 16px;
    max-width: 100%;
  }
  .counter-group-box {
    padding: 5px;
  }
  .counter-label span {
    display: inline;
    font-size: 0.9em;
    color: #888;
  }
}

.input-error {
    border-color: red !important;
    background-color: #ffe6e6;
}

.dynamic-error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
}
/* === BUTTON GROUP: Back and Submit Side By Side === */
.button-group {
    display: flex;
    justify-content: space-between; /* space between buttons */
    gap: 12px;                      /* gap between buttons */
    margin-top: 20px;
}

/* Make buttons smaller and equal width */
.button-group .form-btn {
    flex: 1;                      /* equal width */
    padding: 10px 0;              /* smaller vertical padding */
    font-size: 0.9rem;            /* slightly smaller font */
    border-radius: 6px;           /* slightly rounded corners */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Specific colors (adjust as you like) */
.button-group .btn-prev {
    background-color: #cc0052;    /* secondary grey color */
    color: white;
    border: none;
}

.button-group .btn-prev:hover {
    background-color: #5a6268;
}

.button-group .btn-submit {
    background-color: #0d6efd;   /* blue primary color */
    color: white;
    border: none;
}

.button-group .btn-submit:hover {
    background-color: #0b5ed7;
}

.input-error {
    border-color: red !important;
}
.soft-press-btn {
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1.5px solid #bbb;
  background: #46ffee;
  color: #222;
  box-shadow: 0 4px 10px 0 #c4c4c4, 0 1.5px 0 0 #fff inset;
  transition:
    box-shadow 0.15s,
    background 0.15s,
    transform 0.09s;
  outline: none;
  cursor: pointer;
  appearance: none;
  /* Remove user-select for mobile tap highlight */
  margin-top: 25px; /* or adjust to your desired spacing */

}

/* Pressed/active state */
.soft-press-btn:active {
  background: #e9e9e9;
  box-shadow: 0 1px 2.5px #c4c4c4, 0 1.5px 0 0 #ddd inset;
  transform: translateY(2px);
}


.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropbtn {
  background: none;
  color: inherit;
  padding: 8px 13px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1.06em;
  transition: color 0.18s;
}

.nav-dropbtn:hover,
.nav-dropdown:hover .nav-dropbtn {
  color: #0d6efd;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 24px rgba(0,0,0,.14);
  z-index: 9999;
  margin-top: 8px;
}

.nav-dropdown-content a {
  display: block;
  color: #144469;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 500;
}

.nav-dropdown-content a:hover {
  background: #eef5ff;
  color: #0d6efd;
  border-radius: 6px;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}
/* Keep labels floated when a real value is present (select + inputs) */
.input-group input.filled + label,
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group input:valid + label { top: -14px; font-size: 12px; color: #4ff1e2; }

.input-group select.filled + label,
.input-group select:focus + label,
.input-group select:valid + label { top: -14px; font-size: 12px; color: #4ff1e2; }

/* Error look (underline) */
.input-error { border-bottom-color: #dc2626 !important; }
.dynamic-error-message { color:#dc2626; font-size:12px; line-height:1rem; margin-top:4px; }
/* Ensure the modal takes up the full viewport */
#successModal {
    display: none; /* Hide by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050; /* Ensure it's above other elements */
    width: 80%; /* Or any other value based on your design */
    max-width: 1000px; /* Limit width */
    background-color: black; /* Modal background color */
    border-radius: 10px; /* Optional: for rounded corners */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Ensure the modal content (inner part) is aligned properly */
#successModal .modal-content {
    position: relative;
    padding: 20px;
}

/* --- MODAL OVERLAY AND CARD --- */

.modal-card {
  position: relative;
  background: #16171a;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 48px rgba(0,0,0,0.74);
  max-width: 600px;
  width: 98vw;
  padding: 50px 20px 32px 20px;
  text-align: center;
  animation: scaleIn 0.32s cubic-bezier(.22,.68,.45,1.37);
  margin: auto;
}

/* Style the cross button */
#successModal .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}

/* Add styles to show the modal when it's active */
#successModal.show {
    display: block;
}
.tick-icon {
  font-size: 50px;
  color: #22c55e;
  margin-bottom: 12px;
  margin-top: 4px;
  animation: popIn 0.6s;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0 5px 0;
}
.modal-text {
  font-size: 16px;
  color: #dddddd;
  margin-bottom: 18px;
}
hr {
  border-top: 1px solid #444;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.pulse-icon { font-size:22px; color: #22c55e; animation:pulse 1.2s infinite; }
.typing-dots span { animation:blink 1.2s infinite; font-weight: bold; font-size: 28px; color: #22c55e; }
.typing-dots span:nth-child(2){ animation-delay:.2s; }
.typing-dots span:nth-child(3){ animation-delay:.4s; }
.contact-avatar img{ width:38px; height:38px; border-radius:50%; border:2px solid #22c55e; }
@media (max-width: 540px) {
  .modal-card { padding: 34px 6px 16px 6px; min-width:0; max-width:99vw; }
  .close-btn { top: 8px;font-size:2.1rem; }
}

@keyframes scaleIn { 0% { transform:scale(0.84) translateY(32px);opacity:0; } 100%{ transform:scale(1) translateY(0);opacity:1; } }
@keyframes popIn { 0%{transform:scale(0.5);opacity:0;}100%{transform:scale(1);opacity:1;} }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.07)} }
@keyframes blink { 0%,80%,100%{opacity:.17;} 40%{opacity:1;} }
