/*
===============================================================================
UK DAYFINDER
FILE: /pages/dayfinder/style.css
VERSION: 10.0
PURPOSE: DayFinder-only visual layer — Premium Calendar Intelligence Dashboard

REFERENCE MAP:
[DAYFINDER-CSS-01] Design Tokens
[DAYFINDER-CSS-02] Shell & Reset
[DAYFINDER-CSS-03] Hero & Search
[DAYFINDER-CSS-04] Result Feature
[DAYFINDER-CSS-05] Celebration Layer
[DAYFINDER-CSS-06] UKHALID Strip
[DAYFINDER-CSS-07] Three-Calendar Grid
[DAYFINDER-CSS-08] Information Cards
[DAYFINDER-CSS-09] Historical Evidence
[DAYFINDER-CSS-10] Typography
[DAYFINDER-CSS-11] Cinematic Backdrop
[DAYFINDER-CSS-12] Language Dropdown
[DAYFINDER-CSS-13] Hero Animations
[DAYFINDER-CSS-14] Result Animations
[DAYFINDER-CSS-15] Urdu Mode
[DAYFINDER-CSS-16] Responsive
[DAYFINDER-CSS-17] Accessibility
[DAYFINDER-CSS-18] Reduced Motion
===============================================================================
*/

/* [DAYFINDER-CSS-01] DESIGN TOKENS */
.uk-dayfinder-shell{
  --uk-bg:#06101b;
  --uk-panel:#0d1a2a;
  --uk-panel2:#102238;
  --uk-line:#273c53;
  --uk-text:#f5f7fb;
  --uk-muted:#9fb1c5;
  --uk-gold:#d8b46a;
  --uk-gold2:#f3d99d;
  --uk-theme:#3dbb6d;
  --uk-theme-soft:rgba(61,187,109,.12);
  --uk-theme-line:rgba(61,187,109,.42);
  --uk-shadow:0 28px 90px rgba(0,0,0,.36);
}

/* [DAYFINDER-CSS-02] SHELL & RESET */
.uk-dayfinder-shell,
.uk-dayfinder-shell *{box-sizing:border-box}

.uk-dayfinder-shell{
  width:100%;
  min-height:calc(100vh - 150px);
  color:var(--uk-text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  background:
    radial-gradient(circle at 15% 0%,rgba(61,187,109,.08),transparent 27%),
    radial-gradient(circle at 88% 8%,rgba(216,180,106,.09),transparent 28%),
    linear-gradient(180deg,#06101b,#091625 58%,#050b13);
  padding:1px 0;
}

.uk-dayfinder-shell button,
.uk-dayfinder-shell input{font:inherit}

.uk-dayfinder-shell button{cursor:pointer}

.uk-dayfinder-shell button:focus-visible,
.uk-dayfinder-shell input:focus-visible{
  outline:2px solid var(--uk-gold);
  outline-offset:3px;
}

/* [DAYFINDER-CSS-03] HERO & SEARCH */
.uk-dayfinder-shell .uk-hero{
  width:min(1180px,calc(100% - 34px));
  margin:0 auto;
  text-align:center;
  padding:58px 0 27px;
}

.uk-dayfinder-shell .uk-kicker{
  color:var(--uk-gold);
  font-size:11px;
  font-weight:900;
  letter-spacing:.23em;
  text-transform:uppercase;
}

.uk-dayfinder-shell .uk-hero h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(43px,7vw,74px);
  font-weight:500;
  line-height:.98;
  margin:13px 0;
  color:var(--uk-text);
}

.uk-dayfinder-shell .uk-hero>p{
  max-width:790px;
  margin:auto;
  color:var(--uk-muted);
  line-height:1.75;
  font-size:15px;
}

.uk-dayfinder-shell .uk-search{
  max-width:920px;
  margin:28px auto 0;
  display:flex;
  gap:9px;
  padding:9px;
  background:rgba(13,26,42,.93);
  border:1px solid var(--uk-line);
  border-radius:20px;
  box-shadow:var(--uk-shadow);
}

.uk-dayfinder-shell .uk-search input{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  color:var(--uk-text);
  font-size:17px;
  padding:17px;
}

.uk-dayfinder-shell .uk-search input::placeholder{color:#70849a;opacity:1}

.uk-dayfinder-shell .uk-search button{
  border:0;
  border-radius:14px;
  background:var(--uk-gold);
  color:#171208;
  padding:0 28px;
  min-height:54px;
  font-weight:900;
  transition:transform .2s,filter .2s,opacity .2s;
}

.uk-dayfinder-shell .uk-search button:hover{
  filter:brightness(1.06);
  transform:translateY(-1px);
}

.uk-dayfinder-shell .uk-search button:disabled{
  opacity:.65;
  cursor:wait;
  transform:none;
}

.uk-dayfinder-shell .uk-examples{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.uk-dayfinder-shell .uk-chip{
  border:1px solid var(--uk-line);
  background:#0a1624;
  color:#b7c7d8;
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  transition:.2s;
}

.uk-dayfinder-shell .uk-chip:hover{
  border-color:#536a83;
  color:#fff;
  transform:translateY(-1px);
}

.uk-dayfinder-shell .uk-input-message{
  min-height:24px;
  margin-top:10px;
  font-size:12px;
}

.uk-dayfinder-shell .uk-input-message.is-error{color:#f0abab}
.uk-dayfinder-shell .uk-input-message.is-success{color:#9fd9b3}

/* [DAYFINDER-CSS-04] RESULT FEATURE */
.uk-dayfinder-shell .uk-result{
  width:min(1180px,calc(100% - 34px));
  margin:0 auto;
  padding:22px 0 55px;
}

.uk-dayfinder-shell .uk-feature{
  position:relative;
  overflow:hidden;
  border:1px solid var(--uk-theme-line);
  border-radius:30px;
  background:
    radial-gradient(circle at 85% 20%,var(--uk-theme-soft),transparent 34%),
    linear-gradient(145deg,rgba(16,34,56,.98),rgba(8,19,31,.98));
  box-shadow:var(--uk-shadow);
  transition:border-color .6s,background .6s;
}

.uk-dayfinder-shell .uk-feature-inner{padding:31px}

.uk-dayfinder-shell .uk-main-answer{
  position:relative;
  z-index:2;
  width:58%;
}

.uk-dayfinder-shell .uk-eyebrow{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--uk-muted);
  font-weight:900;
}

.uk-dayfinder-shell .uk-date{
  font-size:clamp(25px,4vw,39px);
  margin-top:8px;
}

.uk-dayfinder-shell .uk-day-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
}

.uk-dayfinder-shell .uk-day{
  font-family:Georgia,serif;
  font-size:clamp(56px,7vw,80px);
  line-height:1;
  color:var(--uk-gold2);
  margin:5px 0;
}

.uk-dayfinder-shell .uk-urdu{
  font-size:29px;
  color:#dce7f2;
}

.uk-dayfinder-shell .uk-answer-badge{
  width:84px;
  height:84px;
  flex:0 0 84px;
  border:1px solid var(--uk-theme-line);
  border-radius:22px;
  background:rgba(0,0,0,.18);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:0 15px 35px rgba(0,0,0,.18);
}

.uk-dayfinder-shell .uk-answer-badge span{
  color:var(--uk-muted);
  font-size:9px;
  letter-spacing:.15em;
  font-weight:900;
}

.uk-dayfinder-shell .uk-answer-badge strong{
  margin-top:3px;
  color:var(--uk-theme);
  font-size:32px;
  line-height:1;
}

.uk-dayfinder-shell .uk-theme-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:18px;
  padding:8px 12px;
  border:1px solid var(--uk-theme-line);
  border-radius:999px;
  color:var(--uk-theme);
  background:var(--uk-theme-soft);
  font-size:12px;
  font-weight:900;
}

.uk-dayfinder-shell .uk-theme-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--uk-theme);
  box-shadow:0 0 14px var(--uk-theme);
}

/* [DAYFINDER-CSS-05] CELEBRATION LAYER */
.uk-dayfinder-shell .uk-celebration{
  display:none;
  position:absolute;
  right:0;
  top:0;
  width:47%;
  height:100%;
  pointer-events:none;
  opacity:.98;
}

.uk-dayfinder-shell .uk-celebration.is-visible{display:block}

.uk-dayfinder-shell .uk-flag-scene{
  position:absolute;
  right:4%;
  top:10%;
  width:min(440px,82%);
  height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

.uk-dayfinder-shell .uk-pakistan-doodle-flag{
  display:block;
  width:min(440px,100%);
  height:auto;
  max-height:220px;
  object-fit:contain;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.18));
  animation:ukDayFinderDoodleFloat 4.8s ease-in-out infinite;
  transform-origin:center center;
}

@keyframes ukDayFinderDoodleFloat{
  0%,100%{transform:translateY(0) rotate(-.5deg) scale(1)}
  50%{transform:translateY(-5px) rotate(.5deg) scale(1.015)}
}

.uk-dayfinder-shell .uk-celebration-copy{
  position:absolute;
  right:7%;
  bottom:10%;
  text-align:right;
}

.uk-dayfinder-shell .uk-celebration-small{
  font-size:11px;
  letter-spacing:.2em;
  color:#d8e9df;
  font-weight:900;
}

.uk-dayfinder-shell .uk-celebration-copy h2{
  font-family:Georgia,serif;
  font-size:31px;
  margin:5px 0;
  color:#fff;
}

.uk-dayfinder-shell .uk-celebration-copy p{
  margin:0;
  color:#cde6d7;
  font-size:13px;
}

/* [DAYFINDER-CSS-06] UKHALID STRIP */
.uk-dayfinder-shell .uk-weekbar{
  margin-top:29px;
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:9px;
}

.uk-dayfinder-shell .uk-week-item{text-align:center}

.uk-dayfinder-shell .uk-week-ball{
  width:54px;height:54px;margin:auto;
  border-radius:50%;
  display:grid;place-items:center;
  border:1px solid #33495f;
  background:#0b1828;
  color:#a9b9c9;
  font-weight:900;
  transition:.5s;
}

.uk-dayfinder-shell .uk-letter{font-size:16px}

.uk-dayfinder-shell .uk-week-name{
  font-size:10px;
  color:#71859a;
  margin-top:7px;
}

.uk-dayfinder-shell .uk-week-item.is-active .uk-week-ball{
  background:var(--uk-theme);
  border-color:var(--uk-theme);
  color:#fff;
  box-shadow:0 0 0 5px var(--uk-theme-soft),0 0 28px var(--uk-theme-line);
  transform:translateY(-5px);
}

.uk-dayfinder-shell .uk-week-item.is-active .uk-week-name{
  color:#fff;
  font-weight:800;
}

/* [DAYFINDER-CSS-07] THREE-CALENDAR GRID */
.uk-dayfinder-shell .uk-calendar-grid{
  margin-top:17px;
  border:1px solid var(--uk-line);
  border-radius:23px;
  background:rgba(13,26,42,.7);
  padding:24px;
}

.uk-dayfinder-shell .uk-calendar-grid-heading{
  font-size:10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--uk-muted);
  font-weight:900;
  padding-bottom:16px;
  border-bottom:1px solid var(--uk-line);
  margin-bottom:18px;
}

.uk-dayfinder-shell .uk-calendar-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:17px;
}

.uk-dayfinder-shell .uk-calendar-card{
  background:rgba(8,20,34,.6);
  border:1px solid var(--uk-line);
  border-radius:18px;
  padding:20px;
  transition:transform .28s,border-color .28s,box-shadow .28s;
}

.uk-dayfinder-shell .uk-calendar-card:hover{
  transform:translateY(-2px);
  border-color:rgba(216,180,106,.2);
  box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.uk-dayfinder-shell .uk-calendar-card .uk-card-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.uk-dayfinder-shell .uk-calendar-card h2{
  font-family:Georgia,serif;
  font-size:18px;
  font-weight:500;
  margin:0;
  color:var(--uk-text);
}

.uk-dayfinder-shell .uk-calendar-card .uk-card-badge{
  color:var(--uk-theme);
  font-size:9px;
  letter-spacing:.12em;
  font-weight:900;
  background:var(--uk-theme-soft);
  padding:2px 10px;
  border-radius:999px;
  border:1px solid var(--uk-theme-line);
}

.uk-dayfinder-shell .uk-calendar-date{
  font-size:clamp(22px,2.4vw,32px);
  font-weight:500;
  padding:8px 0 14px;
  border-bottom:1px solid var(--uk-line);
  margin-bottom:12px;
}

.uk-dayfinder-shell .uk-calendar-date b{
  font-weight:500;
  color:var(--uk-gold2);
}

.uk-dayfinder-shell .uk-calendar-card .uk-meta-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  font-size:12px;
  border-bottom:1px solid rgba(39,60,83,.3);
}

.uk-dayfinder-shell .uk-calendar-card .uk-meta-row:last-child{
  border-bottom:0;
}

.uk-dayfinder-shell .uk-calendar-card .uk-meta-row span{
  color:var(--uk-muted);
}

.uk-dayfinder-shell .uk-calendar-card .uk-meta-row b{
  color:var(--uk-text);
  font-weight:400;
  text-align:right;
}

.uk-dayfinder-shell .uk-calendar-note{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid var(--uk-line);
  color:#71859a;
  font-size:12px;
  line-height:1.7;
}

/* [DAYFINDER-CSS-08] INFORMATION CARDS */
.uk-dayfinder-shell .uk-information-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:17px;
  margin-top:17px;
}

.uk-dayfinder-shell .uk-card{
  background:rgba(13,26,42,.9);
  border:1px solid var(--uk-line);
  border-radius:23px;
  padding:24px;
  transition:transform .28s,border-color .28s,box-shadow .28s;
}

.uk-dayfinder-shell .uk-card:hover{
  transform:translateY(-3px);
  border-color:rgba(216,180,106,.24);
  box-shadow:0 18px 45px rgba(0,0,0,.16);
}

.uk-dayfinder-shell .uk-card h2{
  font-family:Georgia,serif;
  font-size:27px;
  font-weight:500;
  margin:0 0 16px;
}

.uk-dayfinder-shell .uk-card-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.uk-dayfinder-shell .uk-card-badge{
  color:var(--uk-theme);
  font-size:10px;
  letter-spacing:.12em;
  font-weight:900;
}

.uk-dayfinder-shell .uk-history-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.uk-dayfinder-shell .uk-event{
  border:1px solid var(--uk-line);
  border-radius:17px;
  padding:17px;
  background:#0a1624;
}

.uk-dayfinder-shell .uk-event-tag{
  color:var(--uk-theme);
  font-size:10px;
  letter-spacing:.14em;
  font-weight:900;
  text-transform:uppercase;
}

.uk-dayfinder-shell .uk-event h3{
  font-size:16px;
  line-height:1.35;
  margin:8px 0;
}

.uk-dayfinder-shell .uk-event p{
  color:var(--uk-muted);
  font-size:12px;
  line-height:1.65;
  margin:0;
}

.uk-dayfinder-shell .uk-event-source{
  font-size:10px;
  color:#687c92;
  margin-top:12px;
}

.uk-dayfinder-shell .uk-empty{
  grid-column:1/-1;
  color:var(--uk-muted);
  font-size:13px;
  line-height:1.7;
  border:1px dashed var(--uk-line);
  border-radius:16px;
  padding:18px;
}

.uk-dayfinder-shell .uk-note{
  margin-top:14px;
  color:#71859a;
  font-size:11px;
  line-height:1.7;
}

.uk-dayfinder-shell .uk-footer{
  width:min(1180px,calc(100% - 34px));
  margin:0 auto;
  text-align:center;
  padding:15px 0 45px;
  color:#71859a;
  font-size:11px;
  line-height:1.7;
}

.uk-dayfinder-shell .uk-noscript{
  width:min(1180px,calc(100% - 34px));
  margin:20px auto;
  padding:14px;
  border:1px solid #6d3f3f;
  background:#241417;
  color:#f1c2c2;
  border-radius:12px;
}

/* [DAYFINDER-CSS-09] HISTORICAL EVIDENCE */
.uk-dayfinder-shell .uk-history-note,
.uk-dayfinder-shell .uk-dispute-note{
  margin-top:14px;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid var(--uk-line);
  background:rgba(255,255,255,.025);
  color:#d6e0ea;
  line-height:1.7;
  font-size:13px;
}

.uk-dayfinder-shell .uk-history-note strong,
.uk-dayfinder-shell .uk-dispute-note strong{
  display:block;
  color:var(--uk-gold2);
  margin-bottom:4px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.uk-dayfinder-shell .uk-history-note p,
.uk-dayfinder-shell .uk-dispute-note p{margin:0}

.uk-dayfinder-shell .uk-dispute-note{
  border-color:rgba(216,180,106,.32);
  background:rgba(216,180,106,.055);
}

.uk-dayfinder-shell .uk-event-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.uk-dayfinder-shell .uk-live-badge{
  display:inline-flex;
  align-items:center;
  min-height:22px;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(61,187,109,.35);
  background:rgba(61,187,109,.08);
  color:#9fe0b7;
  font-size:9px;
  font-weight:900;
  letter-spacing:.1em;
}

.uk-dayfinder-shell .uk-event-link{margin-top:10px}
.uk-dayfinder-shell .uk-event-link a{
  color:var(--uk-gold2);
  text-decoration:none;
  font-size:12px;
  font-weight:800;
}
.uk-dayfinder-shell .uk-event-link a:hover{text-decoration:underline}

.uk-dayfinder-shell .uk-sources-card{
  grid-column:1 / -1;
}

.uk-dayfinder-shell .uk-sources-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}

.uk-dayfinder-shell .uk-source-link{
  display:flex;
  flex-direction:column;
  gap:5px;
  min-height:112px;
  padding:15px;
  border:1px solid var(--uk-line);
  border-radius:16px;
  background:#0a1624;
  color:var(--uk-text);
  text-decoration:none;
  transition:transform .2s,border-color .2s,background .2s;
  position:relative;
  overflow:hidden;
}

.uk-dayfinder-shell .uk-source-link:hover{
  transform:translateY(-2px);
  border-color:var(--uk-theme-line);
  background:#0d1b2c;
}

.uk-dayfinder-shell .uk-source-link::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(110deg,transparent 30%,rgba(255,255,255,.055) 50%,transparent 70%);
  transform:translateX(-130%);
  transition:transform .55s;
}

.uk-dayfinder-shell .uk-source-link:hover::before{
  transform:translateX(130%);
}

.uk-dayfinder-shell .uk-source-type{
  color:var(--uk-theme);
  font-size:9px;
  font-weight:900;
  letter-spacing:.12em;
}

.uk-dayfinder-shell .uk-source-link strong{font-size:14px}
.uk-dayfinder-shell .uk-source-link>span:last-child{
  margin-top:auto;
  color:var(--uk-muted);
  font-size:11px;
}

/* [DAYFINDER-CSS-10] TYPOGRAPHY */
@font-face{
  font-family:'Jameel Noori Nastaleeq Regular';
  src:url('/fonts/urdu/Jameel-Noori-Nastaleeq-Regular.ttf') format('truetype');
  font-style:normal;
  font-weight:400;
  font-display:swap;
}

@font-face{
  font-family:'UKMBNumeric';
  src:url('/fonts/numeric/font.woff2') format('woff2');
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
}

.uk-dayfinder-shell{
  font-family:'Inter','Segoe UI',Roboto,Arial,sans-serif;
  font-synthesis:none;
  isolation:isolate;
}

.uk-dayfinder-shell .uk-hero h1,
.uk-dayfinder-shell .uk-day,
.uk-dayfinder-shell .uk-card h2,
.uk-dayfinder-shell .uk-celebration-copy h2,
.uk-dayfinder-shell .uk-calendar-card h2{
  font-family:'Playfair Display',Georgia,'Times New Roman',serif;
}

.uk-dayfinder-shell .uk-numeric{
  font-family:'UKMBNumeric','Segoe UI',Arial,sans-serif;
  font-variant-numeric:tabular-nums;
}

.uk-dayfinder-shell .uk-urdu,
.uk-dayfinder-shell .uk-urdu-text,
.uk-dayfinder-shell [lang='ur'],
.uk-dayfinder-shell [dir='rtl']{
  font-family:'Jameel Noori Nastaleeq Regular',serif !important;
  font-weight:400 !important;
  letter-spacing:0 !important;
}

/* [DAYFINDER-CSS-11] CINEMATIC BACKDROP */
.uk-dayfinder-shell{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 16% 2%,rgba(61,187,109,.105),transparent 25%),
    radial-gradient(circle at 84% 3%,rgba(216,180,106,.115),transparent 26%),
    radial-gradient(circle at 50% 52%,rgba(37,91,126,.075),transparent 38%),
    linear-gradient(180deg,#06101b 0%,#091625 55%,#050b13 100%);
}

.uk-dayfinder-shell::before,
.uk-dayfinder-shell::after{
  content:'';
  position:absolute;
  pointer-events:none;
  z-index:0;
}

.uk-dayfinder-shell::before{
  inset:0;
  opacity:.24;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:58px 58px;
  mask-image:linear-gradient(to bottom,black,transparent 80%);
  animation:ukDayFinderGridMove 24s linear infinite;
}

.uk-dayfinder-shell::after{
  width:460px;
  height:460px;
  right:-170px;
  top:220px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(61,187,109,.075),transparent 67%);
  filter:blur(8px);
  animation:ukDayFinderOrb 9s ease-in-out infinite;
}

.uk-dayfinder-shell > *{
  position:relative;
  z-index:1;
}

@keyframes ukDayFinderGridMove{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(58px,58px,0)}
}

@keyframes ukDayFinderOrb{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(-55px,28px,0) scale(1.12)}
}

/* [DAYFINDER-CSS-12] LANGUAGE DROPDOWN */
.uk-language-switcher-wrap{
  width:min(1180px,calc(100% - 34px));
  margin:0 auto;
  display:flex;
  justify-content:flex-end;
  padding-top:20px;
  perspective:900px;
}

.uk-language-switcher{
  position:relative;
  width:174px;
  z-index:30;
}

.uk-language-toggle{
  width:100%;
  min-height:49px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 14px;
  border:1px solid rgba(216,180,106,.48);
  border-radius:15px;
  color:#f8f1df;
  background:
    linear-gradient(145deg,rgba(30,47,66,.98),rgba(8,18,30,.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.09),
    0 10px 24px rgba(0,0,0,.28),
    0 0 0 1px rgba(216,180,106,.04);
  transform-style:preserve-3d;
  transition:transform .28s cubic-bezier(.2,.8,.2,1),box-shadow .28s,border-color .28s;
}

.uk-language-toggle:hover{
  transform:translateY(-2px) rotateX(2deg);
  border-color:rgba(243,217,157,.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 16px 32px rgba(0,0,0,.34),
    0 0 22px rgba(216,180,106,.08);
}

.uk-language-toggle[aria-expanded='true']{
  transform:translateY(-1px) rotateX(-2deg);
  border-color:var(--uk-gold2);
}

.uk-language-globe{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  border:1px solid rgba(216,180,106,.34);
  border-radius:50%;
  color:var(--uk-gold2);
  font-size:10px;
  box-shadow:inset 0 0 12px rgba(216,180,106,.08);
}

.uk-language-toggle #languageCurrent{
  flex:1;
  text-align:left;
  font-size:12px;
  font-weight:900;
  letter-spacing:.05em;
}

.uk-language-chevron{
  color:var(--uk-gold2);
  font-size:17px;
  line-height:1;
  transition:transform .28s;
}

.uk-language-toggle[aria-expanded='true'] .uk-language-chevron{
  transform:rotate(180deg);
}

.uk-language-menu{
  position:absolute;
  top:calc(100% + 9px);
  right:0;
  width:100%;
  padding:7px;
  border:1px solid rgba(216,180,106,.34);
  border-radius:17px;
  background:rgba(7,17,28,.97);
  box-shadow:0 22px 46px rgba(0,0,0,.42),inset 0 1px 0 rgba(255,255,255,.06);
  transform-origin:top center;
  transform:rotateX(-18deg) translateY(-8px) scale(.97);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease,transform .28s cubic-bezier(.2,.8,.2,1);
}

.uk-language-menu:not([hidden]){
  opacity:1;
  transform:rotateX(0) translateY(0) scale(1);
  pointer-events:auto;
}

.uk-language-option{
  width:100%;
  min-height:46px;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid transparent;
  border-radius:12px;
  background:transparent;
  color:#c5d2df;
  padding:0 11px;
  text-align:left;
  transition:background .2s,border-color .2s,color .2s,transform .2s;
}

.uk-language-option:hover,
.uk-language-option.is-active{
  background:rgba(216,180,106,.08);
  border-color:rgba(216,180,106,.22);
  color:#fff;
  transform:translateX(2px);
}

.uk-language-option-code{
  width:31px;
  height:27px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:rgba(255,255,255,.045);
  color:var(--uk-gold2);
  font-size:9px;
  font-weight:900;
}

.uk-language-option-name{
  font-size:12px;
  font-weight:800;
}

/* [DAYFINDER-CSS-13] HERO ANIMATIONS */
.uk-dayfinder-shell .uk-hero{
  position:relative;
  overflow:visible;
  animation:ukDayFinderHeroIn .85s cubic-bezier(.2,.8,.2,1) both;
}

.uk-dayfinder-shell .uk-hero > *:not(.uk-hero-orb){
  position:relative;
  z-index:2;
}

.uk-hero-orb{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  filter:blur(1px);
}

.uk-hero-orb-one{
  width:280px;
  height:280px;
  left:-150px;
  top:70px;
  background:radial-gradient(circle,rgba(61,187,109,.12),transparent 67%);
  animation:ukDayFinderOrbLeft 8s ease-in-out infinite;
}

.uk-hero-orb-two{
  width:340px;
  height:340px;
  right:-190px;
  top:30px;
  background:radial-gradient(circle,rgba(216,180,106,.12),transparent 67%);
  animation:ukDayFinderOrbRight 10s ease-in-out infinite;
}

@keyframes ukDayFinderHeroIn{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes ukDayFinderOrbLeft{
  0%,100%{transform:translate(0,0) scale(1)}
  50%{transform:translate(50px,18px) scale(1.13)}
}

@keyframes ukDayFinderOrbRight{
  0%,100%{transform:translate(0,0) scale(1)}
  50%{transform:translate(-42px,28px) scale(1.08)}
}

.uk-dayfinder-shell .uk-kicker{
  animation:ukDayFinderFadeUp .8s .08s both;
}

.uk-dayfinder-shell .uk-hero h1{
  animation:ukDayFinderFadeUp .8s .16s both;
}

.uk-dayfinder-shell .uk-hero>p{
  animation:ukDayFinderFadeUp .8s .24s both;
}

.uk-dayfinder-shell .uk-search{
  position:relative;
  animation:ukDayFinderSearchIn .85s .32s both;
}

@keyframes ukDayFinderFadeUp{
  from{opacity:0;transform:translateY(14px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes ukDayFinderSearchIn{
  from{opacity:0;transform:translateY(16px) scale(.985)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

.uk-dayfinder-shell .uk-search::after{
  content:'';
  position:absolute;
  inset:-1px;
  border-radius:20px;
  pointer-events:none;
  background:linear-gradient(105deg,transparent 25%,rgba(243,217,157,.22) 50%,transparent 75%);
  transform:translateX(-120%);
  animation:ukDayFinderSearchShine 6s 1.2s ease-in-out infinite;
}

@keyframes ukDayFinderSearchShine{
  0%,68%,100%{transform:translateX(-120%)}
  78%{transform:translateX(120%)}
}

.uk-dayfinder-shell .uk-search-icon{
  width:40px;
  display:grid;
  place-items:center;
  color:var(--uk-gold2);
  font-size:26px;
  opacity:.8;
}

.uk-dayfinder-shell .uk-button-arrow{
  display:inline-block;
  margin-left:8px;
  transition:transform .22s;
}

.uk-dayfinder-shell .uk-search button:hover .uk-button-arrow{
  transform:translateX(4px);
}

/* [DAYFINDER-CSS-14] RESULT ANIMATIONS */
.uk-dayfinder-shell .uk-result.is-visible .uk-feature{
  animation:ukDayFinderResultIn .7s cubic-bezier(.2,.8,.2,1) both;
}

.uk-dayfinder-shell .uk-result.is-visible .uk-calendar-grid{
  animation:ukDayFinderCardIn .65s .06s cubic-bezier(.2,.8,.2,1) both;
}

.uk-dayfinder-shell .uk-result.is-visible .uk-card{
  animation:ukDayFinderCardIn .65s cubic-bezier(.2,.8,.2,1) both;
}

.uk-dayfinder-shell .uk-result.is-visible .uk-card:nth-child(2){animation-delay:.08s}
.uk-dayfinder-shell .uk-result.is-visible .uk-card:nth-child(3){animation-delay:.16s}

@keyframes ukDayFinderResultIn{
  from{opacity:0;transform:translateY(22px) scale(.985)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

@keyframes ukDayFinderCardIn{
  from{opacity:0;transform:translateY(14px)}
  to{opacity:1;transform:translateY(0)}
}

.uk-dayfinder-shell .uk-answer-badge{
  animation:ukDayFinderBadgePulse 4s ease-in-out infinite;
}

@keyframes ukDayFinderBadgePulse{
  0%,100%{box-shadow:0 15px 35px rgba(0,0,0,.18)}
  50%{box-shadow:0 15px 35px rgba(0,0,0,.18),0 0 25px var(--uk-theme-soft)}
}

.uk-dayfinder-shell .uk-week-item.is-active .uk-week-ball{
  animation:ukDayFinderActiveDay 2.8s ease-in-out infinite;
}

@keyframes ukDayFinderActiveDay{
  0%,100%{transform:translateY(-5px) scale(1)}
  50%{transform:translateY(-7px) scale(1.045)}
}

/* [DAYFINDER-CSS-15] URDU MODE */
.uk-dayfinder-shell[data-language='ur']{
  direction:rtl;
}

.uk-dayfinder-shell[data-language='ur'] .uk-language-switcher-wrap{
  direction:ltr;
}

.uk-dayfinder-shell[data-language='ur'] .uk-language-toggle #languageCurrent{
  text-align:right;
}

.uk-dayfinder-shell[data-language='ur'] .uk-hero,
.uk-dayfinder-shell[data-language='ur'] .uk-footer{
  text-align:center;
}

.uk-dayfinder-shell[data-language='ur'] .uk-search{
  direction:rtl;
}

.uk-dayfinder-shell[data-language='ur'] .uk-search input{
  font-family:'Jameel Noori Nastaleeq Regular',serif !important;
  font-size:20px;
}

.uk-dayfinder-shell[data-language='ur'] .uk-search button{
  font-family:'Inter','Segoe UI',sans-serif;
}

.uk-dayfinder-shell[data-language='ur'] .uk-calendar-card .uk-meta-row b{
  text-align:left;
}

.uk-dayfinder-shell[data-language='ur'] .uk-calendar-grid-heading{
  text-align:center;
}

.uk-dayfinder-shell[data-language='ur'] .uk-history-note,
.uk-dayfinder-shell[data-language='ur'] .uk-dispute-note,
.uk-dayfinder-shell[data-language='ur'] .uk-note{
  font-family:'Jameel Noori Nastaleeq Regular',serif !important;
  font-size:16px;
  line-height:1.9;
}

.uk-dayfinder-shell[data-language='ur'] .uk-event p,
.uk-dayfinder-shell[data-language='ur'] .uk-event h3,
.uk-dayfinder-shell[data-language='ur'] .uk-source-link,
.uk-dayfinder-shell[data-language='ur'] .uk-celebration-copy p{
  font-family:'Jameel Noori Nastaleeq Regular',serif !important;
  letter-spacing:0;
}

.uk-dayfinder-shell[data-language='ur'] .uk-event-source,
.uk-dayfinder-shell[data-language='ur'] .uk-source-type,
.uk-dayfinder-shell[data-language='ur'] .uk-card-badge{
  font-family:'Inter','Segoe UI',sans-serif;
}

.uk-dayfinder-shell[data-language='ur'] .uk-numeric,
.uk-dayfinder-shell[data-language='ur'] #detailGregorian,
.uk-dayfinder-shell[data-language='ur'] #detailSolarHijri,
.uk-dayfinder-shell[data-language='ur'] #detailHijri,
.uk-dayfinder-shell[data-language='ur'] #detailPosition,
.uk-dayfinder-shell[data-language='ur'] #detailLetter{
  font-family:'UKMBNumeric','Segoe UI',Arial,sans-serif !important;
  direction:ltr;
  unicode-bidi:plaintext;
}

/* [DAYFINDER-CSS-16] RESPONSIVE */
@media(max-width:850px){
  .uk-dayfinder-shell .uk-celebration{
    opacity:.22;
    width:70%;
  }

  .uk-dayfinder-shell .uk-main-answer{width:100%}

  .uk-dayfinder-shell .uk-calendar-cards{
    grid-template-columns:1fr 1fr;
  }

  .uk-dayfinder-shell .uk-information-grid{
    grid-template-columns:1fr;
  }

  .uk-dayfinder-shell .uk-sources-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .uk-dayfinder-shell .uk-hero,
  .uk-dayfinder-shell .uk-result,
  .uk-dayfinder-shell .uk-footer{
    width:calc(100% - 22px);
  }

  .uk-dayfinder-shell .uk-hero{padding-top:30px}

  .uk-dayfinder-shell .uk-search{
    flex-direction:column;
  }

  .uk-dayfinder-shell .uk-search button{width:100%}

  .uk-dayfinder-shell .uk-feature-inner{padding:23px 18px}

  .uk-dayfinder-shell .uk-day-row{align-items:center}

  .uk-dayfinder-shell .uk-answer-badge{
    width:70px;height:70px;flex-basis:70px;
  }

  .uk-dayfinder-shell .uk-answer-badge strong{font-size:27px}

  .uk-dayfinder-shell .uk-celebration{
    opacity:.12;
    width:100%;
  }

  .uk-dayfinder-shell .uk-calendar-cards{
    grid-template-columns:1fr;
  }

  .uk-dayfinder-shell .uk-sources-grid{
    grid-template-columns:1fr;
  }

  .uk-dayfinder-shell .uk-weekbar{gap:4px}

  .uk-dayfinder-shell .uk-week-ball{
    width:43px;height:43px;
  }

  .uk-dayfinder-shell .uk-week-name{font-size:9px}

  .uk-dayfinder-shell .uk-history-grid{grid-template-columns:1fr}

  .uk-dayfinder-shell .uk-calendar-card .uk-meta-row{
    flex-direction:column;
    gap:4px;
  }

  .uk-dayfinder-shell .uk-calendar-card .uk-meta-row b{
    text-align:left;
  }

  .uk-dayfinder-shell .uk-calendar-date{
    font-size:24px;
  }

  .uk-language-switcher-wrap{
    width:calc(100% - 22px);
    padding-top:12px;
  }

  .uk-language-switcher{width:160px}

  .uk-language-toggle{min-height:45px}

  .uk-search-icon{display:none !important}

  .uk-dayfinder-shell .uk-hero h1{
    font-size:clamp(42px,15vw,62px);
  }

  .uk-dayfinder-shell .uk-calendar-grid{
    padding:16px;
  }
}

/* [DAYFINDER-CSS-17] ACCESSIBILITY */
@media(prefers-reduced-motion:reduce){
  .uk-dayfinder-shell *{
    scroll-behavior:auto !important;
    animation:none !important;
    transition:none !important;
  }
}

/* [DAYFINDER-CSS-18] FOCUS VISIBLE */
.uk-dayfinder-shell a:focus-visible,
.uk-dayfinder-shell button:focus-visible,
.uk-dayfinder-shell input:focus-visible,
.uk-dayfinder-shell select:focus-visible,
.uk-dayfinder-shell textarea:focus-visible{
  outline:2px solid var(--uk-gold2);
  outline-offset:3px;
  border-radius:4px;
}

.uk-dayfinder-shell .uk-source-link:focus-visible{
  outline:2px solid var(--uk-gold2);
  outline-offset:3px;
}