
/*footer*/
footer {
  background: var(--header);
  border-top: 1px solid #e7ebee;
  margin-top: 40px;
  padding: 20px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text);
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}





/* page*/
    :root{
      --bg: #fffaf7;
      --card: #ffffff;
      --text: #273036;
      --muted: #6b7a86;
      --primary: #ff7aa5;
      --primary-soft: #ffe6ee;
      --accent: #7ad3ff;
      --chip: #f0f3f5;
      --danger: #e85b72;
      --ok: #2fbf71;
      --header: #ffffffcc;
      --shadow: 0 10px 25px rgba(0,0,0,.08);
      --baby-blue: #c2e6ff;
      --baby-pink: #ffd6e0;
      --baby-yellow: #fff0c2;
    }
    
    /* Base styles */
    html, body {
      height: 100%;
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: 'Comic Neue', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
      position: relative;
      overflow-x: hidden;
    }
    
    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }
    
    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(8px);
      background: var(--header);
      border-bottom: 1px solid #e7ebee;
    }
    
    .header-inner {
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: space-between;
      height: 64px;
    }
    
    .brand {
      display: flex;
      gap: 10px;
      align-items: center;
      font-weight: 800;
      font-size: 1.2rem;
    }
    
    .brand .logo {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 2s infinite;
    }
    
    .brand .logo::after {
      content: "👶";
      font-size: 1.5rem;
    }
    
    .lang-switch {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    
    .lang-btn {
      border: 1px solid #d0d7de;
      background: #fff;
      border-radius: 999px;
      padding: 6px 10px;
      cursor: pointer;
      font-size: 13px;
      transition: all 0.3s ease;
    }
    
    .lang-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .lang-btn.active {
      border-color: var(--primary);
      background: var(--primary-soft);
      animation: pulse 1.5s infinite;
    }
    
    /* Navigation */
    .nav-menu {
      display: flex;
      gap: 24px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    
    .nav-link {
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
      padding: 8px 0;
      position: relative;
      transition: color 0.3s ease;
    }
    
    .nav-link:hover {
      color: var(--primary);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    /* Card */
    .card {
      background: var(--card);
      border-radius: 20px;
      box-shadow: var(--shadow);
      padding: 24px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin-bottom: 24px;
	  margin-top: 40px;
    }
    
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(to right, var(--primary), var(--accent));
    }
    
    .card h2 {
      margin: 0 0 10px 0;
    }
    
    .muted {
      color: var(--muted);
    }
    
    /* Form elements */
    form {
      display: grid;
      gap: 18px;
    }
    
    .grid {
      display: grid;
      gap: 12px;
    }
    
    .g-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .g-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .full {
      grid-column: 1 / -1;
    }
    
    .field {
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
    }
    
    label {
      font-weight: 600;
    }
    
    input[type="text"], input[type="date"], textarea {
      border: 2px solid #e6eef5;
      border-radius: 14px;
      padding: 12px 14px;
      background: #fff;
      font-size: 15px;
      outline: none;
      transition: all 0.3s ease;
      font-family: inherit;
    }
    
    input[type="text"]:focus, input[type="date"]:focus, textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(255, 122, 165, 0.2);
    }
    
    textarea {
      min-height: 80px;
      resize: vertical;
    }
    
    /* Chip groups */
    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    
    .chip {
      user-select: none;
      cursor: pointer;
      background: var(--chip);
      border: 2px solid transparent;
      border-radius: 16px;
      padding: 8px 12px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .chip:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .chip[data-selected="true"] {
      background: var(--primary-soft);
      border-color: var(--primary);
      animation: wiggle 0.7s ease;
    }
    
    .hint {
      font-size: 12px;
      color: var(--muted);
    }
    
    /* Buttons */
    .btn {
      cursor: pointer;
      border: none;
      border-radius: 14px;
      padding: 12px 16px;
      font-weight: 700;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .btn.primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 4px 14px rgba(255, 122, 165, 0.4);
    }
    
    .btn.primary:hover {
      background: #ff6095;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 122, 165, 0.5);
    }
    
    .btn.secondary {
      background: #eef2f6;
      color: #23323c;
    }
    
    .btn.secondary:hover {
      background: #e2e8f0;
      transform: translateY(-2px);
    }
    
    /* Multi-step form styles */
    .form-steps-container {
      position: relative;
    }
    
    .form-step {
      display: none;
      animation: fadeIn 0.4s ease;
    }
    
    .form-step.active {
      display: block;
    }
    
    .step-indicators {
      display: flex;
      justify-content: center;
      margin-bottom: 24px;
      gap: 8px;
    }
    
    .step-indicator {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #e0e0e0;
      transition: all 0.3s ease;
    }
    
    .step-indicator.active {
      background: var(--primary);
      transform: scale(1.2);
    }
    
    .form-navigation {
      display: flex;
      justify-content: space-between;
      margin-top: 24px;
      position: sticky;
      bottom: 16px;
      background: var(--card);
      padding: 16px;
      border-radius: 16px;
      box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
    }
    
    /* Toast */
    .toast {
      position: fixed;
      right: 16px;
      bottom: 16px;
      background: #111b;
      color: #fff;
      padding: 12px 14px;
      border-radius: 12px;
      opacity: 0;
      transform: translateY(10px);
      transition: .25s;
      z-index: 100;
    }
    
    .toast.show {
      opacity: 1;
      transform: none;
      animation: bounce 1s;
    }
    
    /* Animations */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    @keyframes wiggle {
      0%, 7% { transform: rotateZ(0); }
      15% { transform: rotateZ(-5deg); }
      20% { transform: rotateZ(4deg); }
      25% { transform: rotateZ(-4deg); }
      30% { transform: rotateZ(3deg); }
      35% { transform: rotateZ(-2deg); }
      40%, 100% { transform: rotateZ(0); }
    }
    
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
      40% {transform: translateY(-15px);}
      60% {transform: translateY(-7px);}
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    /* Loader */
    .loader-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 18, 33, 0.4);
      backdrop-filter: blur(5px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .loader-overlay.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .loader-container {
      background: rgba(15, 18, 33, 0.4);
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      box-shadow: 0 20px 40px rgba(15, 18, 33, 0.7);
      max-width: 400px;
      width: 90%;
      transform: translateY(20px);
      transition: transform 0.3s ease;
      color: #fff;
    }
    
    .loader-overlay.visible .loader-container {
      transform: translateY(0);
    }
    
    .baby-loader {
      width: 60px;
      height: 60px;
      margin: 0 auto 15px;
      position: relative;
    }
    
    .baby-face {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
      border-radius: 50%;
      position: relative;
      animation: bounce 1s infinite alternate;
    }
    
    .baby-eyes {
      position: absolute;
      top: 15px;
      left: 10px;
      right: 10px;
      display: flex;
      justify-content: space-between;
    }
    
    .baby-eye {
      width: 8px;
      height: 8px;
      background: #333;
      border-radius: 50%;
      animation: blink 2s infinite;
    }
    
    .baby-mouth {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      width: 20px;
      height: 8px;
      background: #ff6b6b;
      border-radius: 0 0 10px 10px;
      animation: smile 1.5s infinite alternate;
    }
    
    .loader-text {
      font-size: 16px;
      font-weight: 600;
      color: var(--accent);
      margin-top: 10px;
      margin-bottom: 10px;
    }
    
    .loader-dots::after {
      content: '';
      animation: dots 1.5s infinite steps(4);
    }
    
    @keyframes blink {
      0%, 45%, 90% { transform: scaleY(1); }
      50%, 95% { transform: scaleY(0.1); }
    }
    
    @keyframes smile {
      0% { height: 5px; width: 15px; }
      100% { height: 8px; width: 20px; }
    }
    
    @keyframes dots {
      0% { content: ''; }
      25% { content: '.'; }
      50% { content: '..'; }
      75% { content: '...'; }
      100% { content: ''; }
    }
    
    /* Responsive adjustments */
    @media (max-width: 900px) {
      .layout {
        grid-template-columns: 1fr;
      }
      
      .ad {
        display: none;
      }
      
      .g-2, .g-3 {
        grid-template-columns: 1fr;
      }
      
      .header-inner {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
      }
      
      .brand {
        margin-bottom: 10px;
      }
      
      .nav-menu {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
      }
      
      .form-navigation {
        bottom: 0;
        border-radius: 0;
        margin-top: 32px;
      }
    }
    
    @media (max-width: 480px) {
      .card {
        padding: 16px;
      }
      
      .chips {
        gap: 6px;
      }
      
      .chip {
        padding: 10px 14px;
        font-size: 14px;
      }
    }
