/* =============================================
   GAYUMA TECHNOLOGIES — GLOBAL STYLESHEET
   Blue Professional Theme | SEO-Ready
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --blue:        #1A56DB;
  --blue-dark:   #1047C4;
  --blue-deeper: #0B3699;
  --blue-light:  #EBF2FF;
  --blue-mid:    #3B82F6;
  --accent:      #F59E0B;
  --accent-light:#FEF3C7;
  --dark:        #0D1117;
  --dark2:       #161B22;
  --dark3:       #21262D;
  --gray:        #6E7681;
  --gray-light:  #F6F8FA;
  --border:      #D0D7DE;
  --white:       #FFFFFF;
  --success:     #22C55E;
  --text:        #1F2328;
  --text-muted:  #656D76;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm: 0 1px 6px rgba(26,86,219,0.08);
  --shadow-md: 0 4px 24px rgba(26,86,219,0.12);
  --shadow-lg: 0 12px 48px rgba(26,86,219,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex; align-items: center;
  padding: 0 5%;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(26,86,219,0.1); }

.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 19px; font-weight: 800; color: var(--dark);
}

.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deeper));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 4px 12px rgba(26,86,219,0.35);
}

.logo-text span { color: var(--blue); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); background: var(--blue-light); }

.nav-links .nav-dropdown { position: relative; }
.nav-links .nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }

.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: all .25s;
}

.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
}
.dropdown-menu a:hover { background: var(--blue-light); color: var(--blue); }
.dropdown-menu a span { font-size: 16px; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-ghost {
  padding: 9px 18px;
  font-size: 14px; font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  border-radius: var(--radius-sm);
  transition: all .2s;
  cursor: pointer; background: transparent;
  font-family: inherit;
}
.btn-ghost:hover { background: var(--blue-light); }

.btn-primary {
  padding: 10px 20px;
  font-size: 14px; font-weight: 700;
  color: white;
  background: var(--blue);
  border: none; border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(26,86,219,0.35);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,219,0.4); }

.btn-primary-lg {
  padding: 15px 32px;
  font-size: 16px; font-weight: 700;
  color: white;
  background: var(--blue);
  border: none; border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(26,86,219,0.4);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-lg:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,86,219,0.45); }

.btn-outline-lg {
  padding: 15px 32px;
  font-size: 16px; font-weight: 700;
  color: white;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-lg:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all .3s;
}

/* ── MOBILE MENU ── */
.mobile-nav {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--border);
  padding: 20px 5% 28px;
  flex-direction: column; gap: 4px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  font-size: 15px; font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover { background: var(--blue-light); color: var(--blue); }
.mobile-nav .mob-divider {
  height: 1px; background: var(--border); margin: 8px 0;
}
.mobile-nav .mob-cta {
  background: var(--blue); color: white !important;
  text-align: center; margin-top: 8px;
  box-shadow: 0 2px 8px rgba(26,86,219,0.3);
}

/* ══════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════ */
.page-wrap { padding-top: 70px; }

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
.section { padding: 96px 5%; }
.section-sm { padding: 64px 5%; }
.container { max-width: 1280px; margin: 0 auto; }

.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 18px;
}
.section-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800; margin-bottom: 16px;
  color: var(--text);
}

.section-title .highlight {
  color: var(--blue);
  position: relative;
}

.section-sub {
  font-size: 17px; color: var(--text-muted);
  line-height: 1.75; max-width: 580px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ══════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════ */
.breadcrumb {
  padding: 16px 5%;
  background: var(--gray-light);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--blue); font-weight: 500; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner span { color: var(--border); }

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #0E2060 100%);
  padding: 80px 5%;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,86,219,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,86,219,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }
.page-hero h1 { color: white; font-size: clamp(32px, 4vw, 52px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 560px; line-height: 1.7; }

/* ══════════════════════════════════════
   CARDS
══════════════════════════════════════ */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .3s;
}
.card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}

/* ══════════════════════════════════════
   BADGES / TAGS
══════════════════════════════════════ */
.badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 100px;
}
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-gold { background: var(--accent-light); color: #92400E; }
.badge-green { background: #DCFCE7; color: #15803D; }
.badge-popular {
  background: var(--blue); color: white;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 100px;
}

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit;
  color: var(--text);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ══════════════════════════════════════
   FLOATING ELEMENTS
══════════════════════════════════════ */
.float-call {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 24px rgba(26,86,219,0.45);
  text-decoration: none;
  animation: floatBounce 3s ease-in-out infinite;
  transition: transform .2s, background .2s;
}
.float-call:hover { background: var(--blue-dark); transform: scale(1.1) !important; animation: none; }

@keyframes floatBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.float-whatsapp {
  position: fixed; bottom: 100px; right: 28px; z-index: 999;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform .2s;
}
.float-whatsapp:hover { transform: scale(1.1); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 72px 5% 0;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 18px; font-weight: 800; color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.8; max-width: 300px; margin-bottom: 24px;
}

.footer-badge-wrap { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(26,86,219,0.3);
  background: rgba(26,86,219,0.1);
  color: #93C5FD;
  font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 6px;
  letter-spacing: 0.06em;
}

.footer-col h5 {
  font-size: 12px; font-weight: 800;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.55);
  font-size: 14px; margin-bottom: 12px;
  transition: color .2s;
}
.footer-col a:hover { color: #93C5FD; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  width: 32px; height: 32px; min-width: 32px;
  background: rgba(26,86,219,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.footer-contact-info { font-size: 13px; }
.footer-contact-info .label { color: rgba(255,255,255,0.35); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-contact-info a { color: rgba(255,255,255,0.65); display: block; transition: color .2s; }
.footer-contact-info a:hover { color: #93C5FD; }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom .seo-text { font-size: 11px; color: rgba(255,255,255,0.12); max-width: 700px; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.2); }
}

.anim-up { animation: fadeUp .6s ease both; }
.anim-up-2 { animation: fadeUp .6s .1s ease both; }
.anim-up-3 { animation: fadeUp .6s .2s ease both; }
.anim-up-4 { animation: fadeUp .6s .3s ease both; }

/* ══════════════════════════════════════
   RESPONSIVE UTILITIES
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hide-1024 { display: none !important; }
}
@media (max-width: 768px) {
  .section { padding: 64px 5%; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hide-768 { display: none !important; }
}
@media (max-width: 480px) {
  .section { padding: 48px 5%; }
  .hide-480 { display: none !important; }
}
