@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Mukta:wght@400;600;700;800&display=swap');

:root {
  --color-primary:   #1F4FD8;
  --color-accent:    #E53935;
  --color-dark:      #0B1A33;
  --color-surface:   #F5F7FA;
  --color-border:    #E0E0E0;
  --color-muted:     #6B7280;
  --color-green:     #4CAF50;
  --color-orange:    #FF9800;
  --color-whatsapp:  #25D366;
  --color-white:     #ffffff;

  --font-sans:    'Inter', sans-serif;
  --font-display: 'Mukta', sans-serif;

  --navbar-height: 80px;
  --container:     1320px;

  --shadow-card:       0 1px 3px 0 rgba(11,26,51,0.08);
  --shadow-card-hover: 0 8px 24px 0 rgba(11,26,51,0.12);
  --shadow-nav:        0 2px 20px 0 rgba(11,26,51,0.10);
  --shadow-mega:       0 16px 48px 0 rgba(11,26,51,0.14);

  --radius-xl:  12px;
  --radius-2xl: 16px;
  --radius-3xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--color-surface);
  color: var(--color-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.25; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--color-surface); }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }

:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; border-radius: 4px; }
::selection { background: rgba(31,79,216,0.15); color: var(--color-dark); }

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

@keyframes slow-zoom {
  0%   { transform: scale(1.05); }
  50%  { transform: scale(1); }
  100% { transform: scale(1.05); }
}
.animate-slow-zoom { animation: slow-zoom 20s ease-in-out infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.animate-pulse { animation: pulse-dot 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.bg-newsletter-form{
border-color: #fffffe1a;
background: #ffffff0d;
}
.mega-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}
.link-icon {
  display: none !important;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--color-white);
  border: 1px solid rgba(224, 224, 224, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
