/* ============================================================
   GLOBAL STYLES — style.css
   Dr. Jaspal Singh Personal Website — jaspalsingh.in
   Brand: Red #C81240 | Sky Blue #67C8E8
   ============================================================ */

/* --- Brand Tokens (CSS Variables) --- */
:root {
  --magenta:        #C81240;
  --sky-blue:       #67C8E8;
  --white:          #FFFFFF;
  --light-grey:     #F8F8F8;
  --heading-color:  #1A1A2E;
  --body-color:     #4A4A68;
  --charcoal:       #1A1A2E;

  --gradient:       linear-gradient(135deg, #C81240 0%, #A60F35 100%);
  --gradient-rev:   linear-gradient(135deg, #A60F35 0%, #C81240 100%);
  --gradient-soft:  linear-gradient(135deg, rgba(200,18,64,0.08) 0%, rgba(200,18,64,0.14) 100%);
  --blue-gradient:  linear-gradient(135deg, #67C8E8 0%, #4bafd0 100%);
  --blue-soft:      linear-gradient(135deg, rgba(103,200,232,0.10) 0%, rgba(103,200,232,0.18) 100%);

  --font-heading:   'Plus Jakarta Sans', sans-serif;
  --font-body:      'Inter', sans-serif;

  --shadow-sm:      0 2px 8px rgba(26,26,46,0.07);
  --shadow-md:      0 6px 28px rgba(26,26,46,0.11);
  --shadow-lg:      0 12px 56px rgba(26,26,46,0.15);

  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      28px;
  --radius-pill:    50px;

  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --container:      1200px;
  --header-h:       72px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--body-color);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

ul, ol {
  list-style: none;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section-pad {
  padding: 88px 0;
}

.bg-light {
  background: var(--light-grey);
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--body-color);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* --- CTA alignment below sections --- */
.section-cta {
  text-align: center;
  margin-top: 52px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(200,18,64,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(200,18,64,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--sky-blue);
  border-color: var(--sky-blue);
}
.btn-outline:hover {
  background: var(--sky-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-dark {
  background: transparent;
  color: var(--heading-color);
  border-color: var(--heading-color);
}
.btn-outline-dark:hover {
  background: var(--heading-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-download {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  width: calc(100% - 44px);
  margin: 14px 22px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(200,18,64,0.25);
  transition: var(--transition);
}
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,18,64,0.40);
  color: var(--white);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 2px solid var(--magenta);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(26,26,46,0.1);
}

/* Home page uses default white nav (no dark hero behind it) */

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

/* Left section: phone + brand */
.header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Right section: hamburger aligned to end */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Phone link */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.phone-ring-wrap {
  position: relative;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-ring-wrap::before,
.phone-ring-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(200,18,64,0.4);
  animation: phoneRipple 2s ease-out infinite;
}
.phone-ring-wrap::after {
  animation-delay: 0.7s;
}

.phone-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 3px 14px rgba(200,18,64,0.35);
  animation: phoneShake 3s ease-in-out infinite;
}

.phone-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--heading-color);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

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

@keyframes phoneShake {
  0%,100% { transform: rotate(0deg); }
  10%      { transform: rotate(-15deg); }
  20%      { transform: rotate(12deg); }
  30%      { transform: rotate(-10deg); }
  40%      { transform: rotate(8deg); }
  50%      { transform: rotate(0deg); }
}

/* Header Brand Wrap — photo + wordmark together */
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--magenta);
  background: #f2e9e0;
  flex-shrink: 0;
  display: block;
}

/* Typographic Wordmark */
.wordmark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--magenta);
  letter-spacing: -0.4px;
  position: relative;
  text-decoration: none;
  line-height: 1;
  padding-bottom: 3px;
}
.wordmark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--sky-blue);
  border-radius: 2px;
}

/* Desktop Nav — centered column */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--heading-color);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-decoration: none;
}
.nav-link:hover {
  color: var(--magenta);
  background: rgba(200,18,64,0.07);
}
.nav-link.active {
  color: var(--magenta);
  background: rgba(200,18,64,0.07);
}
.nav-link.nav-cta {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 2px 14px rgba(200,18,64,0.3);
  margin-left: 4px;
}
.nav-link.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 22px rgba(200,18,64,0.4);
  color: var(--white);
  background: var(--gradient);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading-color);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Side Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100dvh;
  background: var(--white);
  z-index: 1100;
  padding: 28px 28px 40px;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(26,26,46,0.18);
}
.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--body-color);
  cursor: pointer;
  padding: 4px;
  margin-bottom: 20px;
  transition: var(--transition);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.drawer-close:hover {
  color: var(--magenta);
  background: rgba(200,18,64,0.07);
}

.drawer-wordmark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--magenta);
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
  padding-bottom: 3px;
  text-decoration: none;
}
.drawer-wordmark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--sky-blue);
  border-radius: 2px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.drawer-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--heading-color);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}
.drawer-link:hover,
.drawer-link.active {
  color: var(--magenta);
  background: rgba(200,18,64,0.07);
}

.drawer-social {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(26,26,46,0.08);
}
.drawer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--body-color);
  transition: var(--transition);
  text-decoration: none;
}
.drawer-social a:hover {
  background: var(--magenta);
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--charcoal);
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2.5fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}

.footer-wordmark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  display: inline-block;
  margin-bottom: 14px;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--transition);
}
.footer-link:hover {
  color: var(--sky-blue);
}
.footer-nav-col--wide {
  flex: 1 1 auto;
}
.footer-top-link-row {
  margin-bottom: 16px;
}
.footer-home-link {
  font-size: 14px;
  font-weight: 500;
}
.footer-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 28px;
}
.footer-prog-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2px;
}
.footer-sub-link {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social-link:hover {
  background: var(--magenta);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-unacademy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-unacademy a {
  color: var(--sky-blue);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ============================================================
   RESPONSIVE — GLOBAL
   ============================================================ */

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .header-right { grid-column: 2; }
  .phone-text { display: none; }
  .header-phone { gap: 0; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .container { padding: 0 18px; }
  .section-pad { padding: 60px 0; }
  .section-header { margin-bottom: 44px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: auto; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

/* Visible focus ring for keyboard navigation (WCAG 2.1 AA) */
:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Suppress default outline only when focus-visible is supported
   (so mouse users don't see rings, keyboard users do) */
:focus:not(:focus-visible) {
  outline: none;
}

/* Skip-to-main link (screen readers + keyboard users) */
.skip-to-main {
  position: absolute;
  top: -999px;
  left: 16px;
  background: var(--magenta);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-to-main:focus {
  top: 0;
}

/* ============================================================
   REDUCED MOTION — respect user OS preference
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   MEGA DROPDOWN — DESKTOP NAV
   ============================================================ */

.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--heading-color);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  white-space: nowrap;
}

.nav-dropdown-trigger:hover,
.nav-item-dropdown:hover .nav-dropdown-trigger {
  color: var(--magenta);
  background: rgba(200,18,64,0.07);
}

.nav-dropdown-trigger.active {
  color: var(--magenta);
  background: rgba(200,18,64,0.07);
}

.dd-caret {
  font-size: 9px;
  transition: transform 0.22s ease;
  opacity: 0.6;
}

.nav-item-dropdown:hover .dd-caret {
  transform: rotate(180deg);
}

/* ── Premium Mega-Dropdown ──────────────────────────────── */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 740px;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 32px 80px rgba(26,26,46,0.18),
    0 8px 24px rgba(26,26,46,0.08),
    0 0 0 1px rgba(26,26,46,0.06);
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(0.16,1,0.3,1),
              transform 0.24s cubic-bezier(0.16,1,0.3,1),
              visibility 0.24s;
  z-index: 2000;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid rgba(26,26,46,0.07);
  border-left: 1px solid rgba(26,26,46,0.07);
  border-radius: 3px 0 0 0;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Column wrapper */
.dd-column {
  background: #FAFAFA;
  border-radius: 14px;
  padding: 14px 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Column header badge */
.dd-col-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 10px 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(26,26,46,0.07);
}

.dd-col-header-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.dd-col-header--orange .dd-col-header-icon { background: linear-gradient(135deg,#FF9A56,#E8580A); color:#fff; }
.dd-col-header--magenta .dd-col-header-icon { background: linear-gradient(135deg,#F472A8,#C81240); color:#fff; }
.dd-col-header--blue .dd-col-header-icon { background: linear-gradient(135deg,#67C8E8,#0284C7); color:#fff; }

.dd-col-header-text {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--heading-color);
}

/* Card grid inside each column */
.dd-cards {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Individual card item */
.dd-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.dd-card:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(26,26,46,0.10);
  transform: translateX(3px);
}

.dd-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  background: var(--icon-bg, #F3F4F6);
  color: var(--icon-color, #374151);
  transition: transform 0.15s ease;
}

.dd-card:hover .dd-card-icon {
  transform: scale(1.1);
}

.dd-card-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--heading-color);
  transition: color 0.15s;
  line-height: 1.2;
}

.dd-card:hover .dd-card-label {
  color: var(--magenta);
}

/* ============================================================
   MOBILE DRAWER ACCORDION
   ============================================================ */

.drawer-accordion { margin-bottom: 2px; }

.drawer-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--heading-color);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.drawer-accordion-trigger:hover,
.drawer-accordion-trigger.acc-open {
  color: var(--magenta);
  background: rgba(200,18,64,0.07);
}

.drawer-acc-caret {
  font-size: 11px;
  opacity: 0.6;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.drawer-accordion-trigger.acc-open .drawer-acc-caret {
  transform: rotate(180deg);
}

.drawer-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
  padding-left: 8px;
}

.drawer-accordion-body.acc-open {
  max-height: 600px;
}

.drawer-acc-section { margin-bottom: 10px; }

.drawer-acc-title {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(74,74,104,0.45);
  padding: 8px 16px 4px;
  display: block;
}

.drawer-acc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--body-color);
  text-decoration: none;
  transition: var(--transition);
}

.drawer-acc-link:hover,
.drawer-acc-link.active {
  color: var(--magenta);
  background: rgba(200,18,64,0.06);
}

/* ============================================================
   GRADIENT TEXT UTILITY
   ============================================================ */

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  color: #fff;
}
