/* ══════════════════════════════════════════
   DOCLENK — SHARED STYLES
   Used by: index.html, about.html, privacy-policy.html, terms-conditions.html
══════════════════════════════════════════ */

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  background: #f5f5f5;
  color: #0d0d0d;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
a:hover { text-decoration: none; color: inherit; }

/* ── CSS VARIABLES ── */
:root {
  --ink: #0d0d0d;
  --ink-soft: #1a1a1a;
  --ink-mid: #2e2e2e;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --light-gray: #ebebeb;
  --mid-gray: #9a9a9a;
  --dark-gray: #555555;
  --border: #dedede;
  --card-bg: #ffffff;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  padding-top: 5px;
    padding-bottom: 5px;
  padding-left: 16px;
  background-color: white !important;
  border-bottom: 1px solid #dadada;
  overflow-x: hidden !important;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
  z-index: 99999 !important;
  position: fixed !important;
  width: 100%;
  top: 0px;
}
.navbar-brand {
  font-size: 25px !important;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: black !important;
  padding-top: .3125rem;
    padding-bottom: .3125rem;

}
.header-top-dp {
  position: absolute;
  right: 25px;
  top: 20px;
}
.button {
  background-color: black !important;
  color: white !important;
  border-radius: 1000px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
}
.nav-link {
  opacity: 1 !important;
  color: black !important;
  transition: opacity .2s;
  font-size: 13px !important;
  font-family: "Roboto", sans-serif;
}
.nav-link:hover { opacity: 0.5 !important; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #060606;
  color: rgba(255,255,255,.5);
  padding: 4rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: white;
  text-decoration: none;
}
.footer-brand p {
  margin-top: 1rem;
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
  font-family: "Roboto", sans-serif;
}
.footer-col h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: .92rem;
  font-family: "Roboto", sans-serif;
  padding: 0;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 0;
  margin: 0;
}
.footer-col ul li { padding: 0; margin: 0; }
.footer-col ul a {
  text-decoration: none;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  transition: color .2s;
  font-family: "Roboto", sans-serif;
  display: block;
  padding: 0;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: "Roboto", sans-serif;
}
.made-in {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.06);
  padding: .3rem .8rem;
  border-radius: 50px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  font-family: "Roboto", sans-serif;
}

/* ══════════════════════════════════════════
   CONTACT POPUP
══════════════════════════════════════════ */
.contact-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.contact-overlay.open { opacity: 1; pointer-events: all; }
.contact-popup {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  width: 420px;
  max-width: 92vw;
  border: 1px solid var(--border);
  box-shadow: 0 40px 100px rgba(0,0,0,0.22);
  transform: translateY(36px) scale(0.97);
  opacity: 0;
  transition: transform .42s cubic-bezier(.16,1,.3,1), opacity .35s ease;
  position: relative;
}
.contact-overlay.open .contact-popup { transform: translateY(0) scale(1); opacity: 1; }
.contact-popup-close {
  position: absolute; top: 1.1rem; right: 1.2rem;
  background: none; border: none; cursor: pointer;
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--mid-gray);
  transition: background .2s, color .2s;
}
.contact-popup-close:hover { background: var(--light-gray); color: var(--ink); }
.contact-popup-label { font-size: .68rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--mid-gray); margin-bottom: .4rem; font-family: "Roboto", sans-serif; }
.contact-popup-title { font-size: 1.55rem; font-weight: 400; color: var(--ink); margin-bottom: .5rem; letter-spacing: -.3px; font-family: "Roboto", sans-serif; }
.contact-popup-sub { font-size: .83rem; color: var(--dark-gray); font-weight: 300; line-height: 1.6; margin-bottom: 1.8rem; font-family: "Roboto", sans-serif; }
.contact-items { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.6rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1.1rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .2s;
}
.contact-item:hover { border-color: var(--ink); background: var(--white); transform: translateX(4px); }
.contact-item-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item-body { display: flex; flex-direction: column; }
.contact-item-label { font-size: .68rem; color: var(--mid-gray); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: .15rem; font-family: "Roboto", sans-serif; }
.contact-item-value { font-size: .88rem; color: var(--ink); font-weight: 400; font-family: "Roboto", sans-serif; }
.contact-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; padding: .85rem;
  background: var(--ink); color: var(--white);
  border: none; border-radius: 14px;
  font-size: .88rem; font-weight: 400;
  letter-spacing: .5px;
  font-family: "Roboto", sans-serif;
  cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s;
}
.contact-whatsapp:hover { background: #111; transform: translateY(-1px); color: white; }

/* ══════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════ */
.section-label {
  font-size: .7rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--dark-gray);
  margin-bottom: .75rem;
  font-family: "Roboto", sans-serif;
}
.section-title {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15; letter-spacing: -.5px;
}
.section-sub {
  color: var(--dark-gray); font-size: .95rem; line-height: 1.8;
  max-width: 560px; margin-top: .75rem; font-weight: 300;
  font-family: "Roboto", sans-serif;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   INNER PAGE STYLES (about, privacy, terms)
══════════════════════════════════════════ */
.page-hero {
  background: var(--ink);
  padding: 8rem 5% 4rem;
  margin-top: 0;
}
.page-hero-label {
  font-size: .7rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
}
.page-hero h1 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; color: white;
  line-height: 1.1; letter-spacing: -.5px;
}
.page-hero p {
  color: rgba(255,255,255,.5);
  font-size: 1rem; line-height: 1.8;
  max-width: 560px; margin-top: 1rem;
  font-family: "Roboto", sans-serif;
}
.page-body {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;padding-bottom: 50px;
  padding-left:15px;
  padding-right: 15px;
}
.page-body h2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--ink); margin-top: 2.5rem; margin-bottom: .75rem;
}
.page-body h2:first-child { margin-top: 0; }
.page-body p {
  font-size: .93rem; color: var(--dark-gray);
  line-height: 1.85; margin-bottom: .75rem;
  font-family: "Roboto", sans-serif;
}
.page-body ul {
  padding-left: 1.2rem;
  margin-bottom: .75rem;
}
.page-body ul li {
  font-size: .93rem; color: var(--dark-gray);
  line-height: 1.85; margin-bottom: .4rem;
  font-family: "Roboto", sans-serif;
}
.page-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */


@media(max-width: 1200px)
{
  .page-body {
  max-width:100%;
  margin: 0 auto;
  padding-left:15px;
  padding-right: 15px;
}
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 7rem 5% 3rem; }
}