/* ============================================
   KALAME SAIYED AALE MUSTAFA
   Design System — CSS
   ============================================ */



/* ── Mirza Urdu Font ── */
@font-face {
  font-family: "Mirza";
  src: url("../fonts/Mirza-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mirza";
  src: url("../fonts/Mirza-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mirza";
  src: url("../fonts/Mirza-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mirza";
  src: url("../fonts/Mirza-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Variables ── */
:root {
  --primary: #13a1d9;
  --primary-50: #f0f2ff;
  --primary-100: #d1d8ff;
  --primary-200: #a3b1ff;
  --primary-300: #7588fa;
  --primary-400: #465ce6;
  --primary-500: #13a1d9;
  --primary-600: #15259e;
  --primary-700: #0e197d;
  --primary-800: #09105c;
  --primary-900: #050a3d;

  --gold: #d4af37;
  --gold-50: #fefdf0;
  --gold-100: #fdf9c7;
  --gold-200: #fbf191;
  --gold-300: #f7e452;
  --gold-400: #f2d024;
  --gold-500: #d4af37;
  --gold-600: #b8911e;
  --gold-700: #936b18;
  --gold-800: #79531a;

  --dark-400: #94a3b8;
  --dark-500: #64748b;
  --dark-600: #475569;
  --dark-700: #334155;
  --dark-800: #1e293b;
  --dark-900: #0f172a;
  --dark-950: #020617;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #6b7280;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --bg-page: #edf3fc;
  --bg-card: #ffffff;
  --bg-card-border: #f3f4f6;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;

  --shadow-card:
    0 4px 24px -4px rgba(0, 0, 0, 0.08), 0 2px 8px -2px rgba(0, 0, 0, 0.04);
  --shadow-soft:
    0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  --shadow-lifted:
    0 12px 40px -8px rgba(0, 0, 0, 0.15), 0 4px 16px -4px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 30px rgba(19, 161, 217, 0.25);

  --radius-card: 16px;
  --radius-xl: 12px;
  --radius-3xl: 24px;

  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-serif: "Cinzel", serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-primary);
  font-feature-settings:
    "rlig" 1,
    "calt" 1;
  transition:
    background-color 0.3s,
    color 0.3s;
  line-height: 1.6;
}

::selection {
  background: var(--primary-100);
  color: var(--primary-900);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* ── Containers ── */
.container-xl {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container-xl {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container-xl {
    padding: 0 2rem;
  }
}

/* ── Urdu ── */
.urdu {
  font-family: "Mirza", "Noto Nastaliq Urdu", serif !important;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #13a1d9;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.navbar-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 1rem;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  text-decoration: none;
}
.navbar-logo-img-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}
@media (min-width: 640px) {
  .navbar-logo-img-wrap {
    width: 64px;
    height: 64px;
  }
}
.navbar-logo-glow {
  position: absolute;
  inset: 6px;
  background: rgba(255, 255, 255, 0.8);
  filter: blur(12px);
  border-radius: 50%;
  transition: background 0.3s;
}
.navbar-logo:hover .navbar-logo-glow {
  background: rgba(255, 255, 255, 1);
}
.navbar-logo-img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s;
}
.navbar-logo:hover .navbar-logo-img {
  transform: scale(1.05);
}
.navbar-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}
.navbar-logo-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: white;
  font-size: 0.875rem;
  letter-spacing: -0.015em;
}
@media (min-width: 640px) {
  .navbar-logo-title {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .navbar-logo-title {
    font-size: 1.125rem;
  }
}
.navbar-logo-subtitle {
  font-family: var(--font-serif);
  font-weight: 700;
  color: #fbbf24;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
@media (min-width: 640px) {
  .navbar-logo-subtitle {
    font-size: 0.875rem;
  }
}

/* Desktop Nav Links */
.nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin: 0 1rem;
  flex: 1;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}
.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  transition: all 0.15s;
}
.nav-link:hover {
  color: #fde68a;
  background: rgba(255, 255, 255, 0.1);
}
.nav-link.active {
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.15);
  font-weight: 600;
}

/* Right actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .navbar-actions {
    gap: 0.375rem;
  }
}

/* Search trigger */
.search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.2s;
  font-size: 0.75rem;
  font-weight: 500;
}
@media (min-width: 640px) {
  .search-trigger {
    width: 240px;
    height: auto;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-xl);
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .search-trigger {
    width: 288px;
  }
}
.search-trigger:hover {
  border-color: var(--gold-400);
}
.search-trigger-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.search-trigger-left svg {
  color: var(--gold-400);
}
.search-trigger-label {
  display: none;
}
@media (min-width: 640px) {
  .search-trigger-label {
    display: inline;
  }
}
.search-trigger kbd {
  display: none;
  align-items: center;
  gap: 2px;
  padding: 2px 6px;
  font-size: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: rgba(209, 216, 255, 0.5);
  font-family: monospace;
}
@media (min-width: 640px) {
  .search-trigger kbd {
    display: inline-flex;
  }
}

/* Mobile toggle */
.mobile-toggle {
  padding: 0.5rem;
  color: rgba(209, 216, 255, 0.7);
  border-radius: var(--radius-xl);
  transition: all 0.2s;
}
@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}
.mobile-toggle:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--gray-100);
  background: var(--bg-card);
  overflow: hidden;
}

.mobile-menu.open {
  display: block;
  animation: slideDown 0.2s ease-out;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu-inner {
  padding: 1rem;
}
.mobile-nav-link {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.15s;
}

.mobile-nav-link:hover {
  background: var(--gray-50);
}

.mobile-nav-link.active {
  color: var(--primary-700);
  background: var(--primary-50);
}

/* ============================================
   SEARCH MODAL
   ============================================ */
.search-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 1rem 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
}
@media (min-width: 640px) {
  .search-modal-overlay {
    padding-top: 6rem;
  }
}
.search-modal-overlay.open {
  display: flex;
  animation: fadeIn 0.2s;
}
.search-modal {
  width: 100%;
  max-width: 672px;
  background: var(--bg-card);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-3xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: scaleIn 0.2s ease-out;
}

.search-modal-form {
  position: relative;
  border-bottom: 1px solid var(--gray-100);
  padding: 1rem;
}

.search-modal-form svg {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}
.search-modal-input {
  width: 100%;
  background: transparent;
  padding: 0.5rem 6rem 0.5rem 3rem;
  color: var(--text-primary);
  font-size: 1.125rem;
  border: none;
  outline: none;
}
.search-modal-input::placeholder {
  color: var(--gray-400);
}

.search-modal-clear {
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  padding: 4px;
}
.search-modal-clear:hover {
  color: var(--gray-600);
}
.search-modal-submit {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
}
.search-modal-results {
  padding: 1rem;
  max-height: 60vh;
  overflow-y: auto;
}
.search-results-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-results-label svg {
  color: var(--primary);
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem;
  border-radius: var(--radius-xl);
  transition: background 0.15s;
}
.search-result-item:hover {
  background: var(--primary-50);
}

.search-result-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.search-result-title {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-artist {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.search-modal-footer {
  background: var(--gray-50);
  padding: 0.625rem 1rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.search-modal-footer kbd {
  padding: 2px 6px;
  background: var(--gray-200);
  border-radius: 4px;
  font-size: 10px;
  font-family: monospace;
}

.search-no-results {
  text-align: center;
  padding: 2rem 0;
  color: var(--gray-500);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom right, #05172e, #13a1d9, #041122);
}

.hero-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.4;
  pointer-events: none;
}
.hero-bg-blob1 {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  filter: blur(130px);
}
.hero-bg-blob2 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 50%;
  height: 50%;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  filter: blur(110px);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 1rem 0 6rem;
}
@media (min-width: 768px) {
  .hero-content {
    padding: 2rem 0 7rem;
  }
}
@media (min-width: 1024px) {
  .hero-content {
    padding: 2rem 0 8rem;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: center;
}
@media (min-width: 640px) {
  .hero-grid {
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 8fr 4fr;
    gap: 2rem;
  }
}
@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
  }
}

/* Hero Text Column */
.hero-text {
  text-align: center;
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-text {
    order: 1;
    padding-right: 1rem;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  background: rgba(212, 175, 55, 0.05);
  backdrop-filter: blur(4px);
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.1);
  animation: fadeIn 0.5s ease-out 0.1s both;
}
@media (min-width: 640px) {
  .hero-eyebrow {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
  }
}
.hero-eyebrow-flower {
  color: var(--gold-400);
  display: none;
}
@media (min-width: 640px) {
  .hero-eyebrow-flower {
    display: block;
  }
}
.hero-eyebrow-text {
  color: var(--gold-400);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 640px) {
  .hero-eyebrow-text {
    font-size: 10px;
  }
}
@media (min-width: 768px) {
  .hero-eyebrow-text {
    font-size: 12px;
  }
}

.hero-heading {
  font-family: var(--font-serif);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  animation: slideUp 0.7s ease-out 0.2s both;
}
@media (min-width: 640px) {
  .hero-heading {
    margin-bottom: 1.5rem;
  }
}

.hero-heading-prefix {
  font-size: 9px;
  color: #facc15;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.6;
  max-width: 32rem;
  text-align: center;
}
@media (min-width: 640px) {
  .hero-heading-prefix {
    font-size: 10px;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .hero-heading-prefix {
    font-size: 12px;
  }
}

.hero-heading-name {
  font-size: 1.875rem;
  color: white;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-align: center;
}
@media (min-width: 640px) {
  .hero-heading-name {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-heading-name {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  .hero-heading-name {
    font-size: 3.5rem;
  }
}

.hero-heading-gold {
  font-size: 1.25rem;
  color: #facc15;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  word-spacing: 0.1em;
}
@media (min-width: 640px) {
  .hero-heading-gold {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .hero-heading-gold {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .hero-heading-gold {
    font-size: 2.75rem;
  }
}
@media (min-width: 1280px) {
  .hero-heading-gold {
    font-size: 3.25rem;
  }
}

.hero-heading-loc {
  font-size: 0.75rem;
  color: #facc15;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  text-align: center;
}
@media (min-width: 640px) {
  .hero-heading-loc {
    font-size: 0.875rem;
    margin-top: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-heading-loc {
    font-size: 1rem;
  }
}
@media (min-width: 1280px) {
  .hero-heading-loc {
    font-size: 1.125rem;
  }
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  width: 100%;
  max-width: 28rem;
}
@media (min-width: 640px) {
  .hero-divider {
    gap: 1rem;
    margin-top: 1.5rem;
  }
}
.hero-divider-line {
  height: 1px;
  width: 3rem;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.5));
}
@media (min-width: 640px) {
  .hero-divider-line {
    width: 6rem;
  }
}
.hero-divider-line:last-child {
  background: linear-gradient(to left, transparent, rgba(212, 175, 55, 0.5));
}
.hero-divider svg {
  color: var(--gold-400);
}

.hero-desc {
  font-size: 0.875rem;
  color: white;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 300;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  text-align: center;
  animation: fadeIn 0.5s ease-out 0.4s both;
}
@media (min-width: 640px) {
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .hero-desc {
    font-size: 1.125rem;
  }
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  animation: slideUp 0.5s ease-out 0.5s both;
}
@media (min-width: 640px) {
  .hero-cta {
    gap: 1rem;
  }
}
.hero-btn {
  flex: 1;
  max-width: 240px;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(to right, #facc15, #f59e0b);
  color: #072146;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.75rem;
}
@media (min-width: 640px) {
  .hero-btn {
    flex: none;
    padding: 0.875rem 2rem;
    gap: 0.5rem;
    font-size: 0.875rem;
  }
}
.hero-btn:hover {
  background: linear-gradient(to right, #f59e0b, #facc15);
  transform: scale(1.02);
}
.hero-btn:active {
  transform: scale(0.98);
}

/* Hero Logo Column */
.hero-logo-col {
  position: relative;
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.8s ease-out 0.3s both;
}
@media (min-width: 1024px) {
  .hero-logo-col {
    order: 2;
  }
}
.hero-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
@media (min-width: 640px) {
  .hero-logo-wrap {
    max-width: 380px;
  }
}
@media (min-width: 1024px) {
  .hero-logo-wrap {
    max-width: 460px;
  }
}
@media (min-width: 1280px) {
  .hero-logo-wrap {
    max-width: 550px;
  }
}
.hero-logo-glow1 {
  position: absolute;
  inset: 0;
  background: rgba(59, 130, 246, 0.4);
  border-radius: 50%;
  filter: blur(48px);
  transform: scale(1.1);
  pointer-events: none;
}
.hero-logo-glow2 {
  position: absolute;
  inset: 1rem;
  background: rgba(34, 211, 238, 0.5);
  border-radius: 50%;
  filter: blur(32px);
  transform: scale(0.9);
  pointer-events: none;
}
.hero-logo-glow3 {
  position: absolute;
  inset: 3rem;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  filter: blur(20px);
  transform: scale(0.75);
  pointer-events: none;
}
.hero-logo-main {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
@media (min-width: 640px) {
  .hero-logo-main {
    padding: 1rem;
  }
}
.hero-logo-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 30px rgba(56, 189, 248, 0.6));
  transition: transform 0.5s;
}
.hero-logo-main img:hover {
  transform: scale(1.05);
}

/* Wave Divider */
.wave-divider {
  position: relative;
  z-index: 20;
  margin-top: -7.33vw;
  pointer-events: none;
  overflow: hidden;
}
.wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
}
.wave-fill {
  fill: #edf3fc;
}

/* ============================================
   BROWSE SECTION
   ============================================ */
.browse-section {
  padding-bottom: 1rem;
  position: relative;
  z-index: 30;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .browse-section {
    padding-bottom: 2rem;
    margin-top: -1.5rem;
  }
}

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .section-heading {
    margin-bottom: 2.5rem;
  }
}
.section-heading-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.section-heading-ornament-line {
  height: 1px;
  width: 2rem;
  background: var(--gold-400);
}
@media (min-width: 768px) {
  .section-heading-ornament-line {
    width: 4rem;
  }
}
.section-heading-ornament svg {
  color: var(--gold-500);
}
.section-heading-label {
  color: var(--gold-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .section-heading-label {
    font-size: 12px;
  }
}
.section-heading h2 {
  font-size: 1.875rem;
  font-family: var(--font-serif);
  color: #072146;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-heading h2 {
    font-size: 3rem;
  }
}
.section-heading p {
  color: var(--gray-600);
  font-size: 0.75rem;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .section-heading p {
    font-size: 0.875rem;
  }
}
.section-heading-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.section-heading-bottom-line {
  height: 1px;
  width: 6rem;
  background: var(--gold-300);
}

.section-heading-bottom-dot {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--gold-400);
}

/* Sticky Controls Bar */
.controls-bar {
  position: sticky;
  top: 64px;
  z-index: 30;
  background: rgba(237, 243, 252, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.controls-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .controls-inner {
    display: flex;
    gap: 0.75rem;
  }
}
.search-input-wrap {
  position: relative;
  display: none;
  flex: 1;
}
@media (min-width: 640px) {
  .search-input-wrap {
    display: block;
  }
}
.search-input-wrap svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  width: 16px;
  height: 16px;
}
.search-input {
  width: 100%;
  padding: 0.375rem 2rem 0.375rem 2.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.625rem;
  outline: none;
  transition: all 0.2s;
}
@media (min-width: 640px) {
  .search-input {
    padding: 0.75rem 2rem 0.75rem 2.5rem;
    font-size: 1rem;
  }
}
.search-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(19, 161, 217, 0.3) !important;
}

.search-clear {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  display: none;
  padding: 4px;
}
.search-clear.visible {
  display: block;
}
.search-clear:hover {
  color: var(--gray-600);
}

/* Select dropdowns */
.filter-select-wrap {
  position: relative;
}
.filter-select {
  width: 100%;
  padding: 0.375rem 1.25rem 0.375rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.625rem;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
}
@media (min-width: 640px) {
  .filter-select {
    padding: 0.75rem 1.75rem 0.75rem 1rem;
    font-size: 1rem;
    min-width: 140px;
  }
}
.filter-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(19, 161, 217, 0.3) !important;
}

.filter-select-arrow {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
  width: 12px;
  height: 12px;
}
@media (min-width: 640px) {
  .filter-select-arrow {
    right: 0.5rem;
    width: 14px;
    height: 14px;
  }
}

/* View toggle (desktop) */
.view-toggle {
  display: none;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .view-toggle {
    display: flex;
  }
}
.view-toggle-btn {
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  color: var(--gray-500);
  transition: all 0.15s;
}

.view-toggle-btn:hover {
  background: var(--gray-50);
}

.view-toggle-btn.active {
  background: var(--primary-700);
  color: white;
}

/* Results count */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.results-count {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.results-count strong {
  font-weight: 600;
  color: var(--gray-900);
}

.results-count .highlight {
  color: var(--primary-600);
}
.clear-filters-btn {
  font-size: 0.875rem;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.clear-filters-btn:hover {
  color: #dc2626;
}

/* ============================================
   NAAT CARDS
   ============================================ */
.naat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .naat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .naat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .naat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.naat-card {
  background: var(--bg-card);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  animation: fadeIn 0.3s ease-out;
}

.naat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.1);
}

.naat-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.naat-card-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(250, 204, 21, 0.8);
  overflow: hidden;
  flex-shrink: 0;
}
.naat-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.naat-card-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.badge-naat {
  background: #13a1d9;
  color: white;
}
.badge-manqabat {
  background: #001140;
  color: white;
}
.badge-hamd {
  background: #15259e;
  color: white;
}
.badge-other {
  background: var(--gray-600);
  color: white;
}

.naat-card-title {
  font-family: var(--font-serif);
  font-weight: 700;
  color: #13a1d9;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s;
}

.naat-card-title a {
  color: inherit;
}
.naat-card-title a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
}

.naat-card-preview {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.naat-card-preview.is-urdu {
  font-family: "Mirza", "Noto Nastaliq Urdu", serif;
  text-align: right;
  direction: rtl;
  font-size: 1rem;
  line-height: 1.4;
}
.naat-card-preview.is-roman {
  font-style: italic;
  font-weight: 300;
  text-align: left;
  font-size: 14px;
  line-height: 1.7;
}

.naat-card-link {
  position: relative;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: #13a1d9;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
}

.naat-card-link:hover {
  gap: 0.75rem;
}
.naat-card-link svg:last-child {
  transition: transform 0.3s;
}
.naat-card-link:hover svg:last-child {
  transform: translateX(4px);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-3xl);
  border: 2px dashed var(--gray-200);
}

.empty-state-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-card);
  background: var(--primary-50);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.empty-state h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* ============================================
   NAAT DETAIL PAGE
   ============================================ */
.detail-page {
  min-height: 100vh;
  background: var(--bg-card);
}

/* Hero Banner */
.detail-hero {
  position: relative;
  height: 14rem;
  overflow: hidden;
}
@media (min-width: 640px) {
  .detail-hero {
    height: 18rem;
  }
}
.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6)
  );
}
.detail-hero-breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 1.5rem;
}
@media (min-width: 640px) {
  .detail-hero-breadcrumb {
    padding-top: 2rem;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: white;
}
.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumb-current {
  color: white;
  font-weight: 500;
}

/* Detail Content */
.detail-content {
  padding: 2rem 0;
}
.detail-max {
  max-width: 56rem;
  margin: 0 auto;
}

/* Title & Meta */
.detail-meta {
  margin-bottom: 2rem;
}
.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.detail-badge-primary {
  background: var(--primary-50);
  color: var(--primary-700);
}

.detail-badge-gray {
  background: var(--gray-100);
  color: var(--gray-600);
}

.detail-badge-gold {
  background: var(--gold-50);
  color: var(--gold-700);
}

.detail-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}

@media (min-width: 640px) {
  .detail-title {
    font-size: 2.25rem;
  }
}

/* Artist info */
.detail-artist {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.detail-artist-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xl);
  object-fit: cover;
}
.detail-artist-name {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}

.detail-artist-name svg {
  color: var(--primary-600);
}
.detail-artist-loc {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Lyrics Card */
.lyrics-card {
  background: linear-gradient(135deg, #0A1D3B 0%, #12376B 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1rem;
  margin-bottom: 2rem;
  overflow: hidden;
  color: #ffffff !important;
}

@media (min-width: 768px) {
  .lyrics-card {
    padding: 2rem;
  }
}

.lyrics-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.lyrics-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff !important;
}

.lyrics-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (min-width: 640px) {
  .lyrics-controls {
    gap: 0.75rem;
  }
}

/* Language toggle */
.lang-select {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0 0.75rem;
  height: 34px;
  cursor: pointer;
  outline: none;
}
.lang-select option {
  background: #0A1D3B;
  color: #ffffff;
}

.lang-select:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
}

/* Font size controls */
.font-controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0 0.25rem;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.font-controls button {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  color: #ffffff;
  transition: background 0.15s;
}

.font-controls button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.font-controls .font-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding: 0 0.25rem;
  user-select: none;
}

/* Lyrics body */
.lyrics-body {
  color: #ffffff !important;
  transition: color 0.2s;
}

.lyrics-stanza {
  margin-bottom: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lyrics-line-urdu {
  font-family: "Mirza", "Noto Nastaliq Urdu", serif !important;
  font-weight: 300;
  line-height: 1.3;
  text-align: right;
  direction: rtl;
  color: #ffffff !important;
  transition: font-size 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .lyrics-line-urdu {
    line-height: 1.4;
  }
}
.lyrics-line-roman {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: left;
  color: #ffffff !important;
  transition: font-size 0.2s ease-in-out;
}
.lyrics-credit {
  color: rgba(255, 255, 255, 0.8) !important;
  display: block;
  margin-top: 1rem;
  line-height: 1.6;
  transition: font-size 0.2s ease-in-out;
  font-family: "Mirza", "Noto Nastaliq Urdu", serif !important;
}
.lyrics-credit-bold {
  color: #fcd34d !important;
  font-weight: 700;
  transition: font-size 0.2s ease-in-out;
}
.lyrics-parens {
  color: rgba(255, 255, 255, 0.8) !important;
  display: block;
  margin-top: 0.375rem;
  line-height: 1.6;
  opacity: 0.9;
  transition: font-size 0.2s ease-in-out;
}

/* Nav Prev/Next */
.detail-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .detail-nav {
    grid-template-columns: 1fr 1fr;
  }
}
.detail-nav-card {
  background: var(--bg-card);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: border-color 0.2s;
  overflow: hidden;
}
.dark .detail-nav-card {
  background: var(--dark-700);
  border-color: var(--dark-500);
}
.detail-nav-card:hover {
  border-color: var(--primary-300);
}
.dark .detail-nav-card:hover {
  border-color: var(--primary-700);
}
.detail-nav-card.next {
  justify-content: flex-end;
  text-align: right;
}
.detail-nav-card svg {
  color: var(--gray-400);
  flex-shrink: 0;
}
.detail-nav-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.detail-nav-title {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--gray-900);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s;
}
.dark .detail-nav-title {
  color: white;
}
.detail-nav-card:hover .detail-nav-title {
  color: var(--primary-600);
}

/* More Naats */
.more-naats {
  margin-top: 1.25rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-100);
}
.dark .more-naats {
  border-color: var(--dark-700);
}
.more-naats h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.dark .more-naats h2 {
  color: white;
}
.more-naats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .more-naats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .more-naats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .more-naats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #13a1d9;
  color: var(--gray-400);
  padding-top: 2rem;
  position: relative;
  margin-top: 4rem;
}
@media (min-width: 640px) {
  .footer {
    padding-top: 3rem;
  }
}
.footer-inner {
  padding-bottom: 2rem;
}
@media (min-width: 640px) {
  .footer-inner {
    padding-bottom: 3rem;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* Footer brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {
  .footer-brand {
    align-items: flex-start;
  }
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-logo {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
  }
}
.footer-logo-img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: white;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
@media (min-width: 640px) {
  .footer-logo-img-wrap {
    width: 56px;
    height: 56px;
  }
}
.footer-logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-logo-text {
  font-size: 22px;
  font-family: var(--font-serif);
  font-weight: 700;
  color: white;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
@media (min-width: 640px) {
  .footer-logo-text {
    font-size: 1.25rem;
  }
}
.footer-logo-gold {
  color: var(--gold-400);
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  max-width: 24rem;
}
@media (min-width: 640px) {
  .footer-desc {
    text-align: left;
  }
}

/* Footer quick links */
.footer-links-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {
  .footer-links-col {
    align-items: flex-start;
  }
}
.footer-links-title {
  font-weight: 600;
  color: var(--gold-400);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-links-title {
    text-align: left;
  }
}
.footer-links-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  list-style: none;
}
@media (min-width: 640px) {
  .footer-links-list {
    justify-content: flex-start;
    gap: 1rem;
  }
}
.footer-links-list a {
  font-size: 13px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  color: white;
  transition: all 0.2s;
}
@media (min-width: 640px) {
  .footer-links-list a {
    font-size: 0.875rem;
  }
}
.footer-links-list a:hover {
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.1);
}
.footer-links-list a.first {
  background: rgba(255, 255, 255, 0.2);
  color: var(--gold-300);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.footer-quote {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  display: inline-block;
}
.footer-quote p {
  font-size: 0.875rem;
  color: white;
  font-style: italic;
  text-align: center;
  line-height: 1.7;
}

/* Footer Social Links */
.footer-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
@media (min-width: 640px) {
  .footer-social-links {
    justify-content: flex-start;
  }
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-social-link:hover {
  background: var(--gold-400);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(14, 25, 125, 0.4);
  background: rgba(0, 0, 0, 0.1);
}
.footer-bottom-inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    font-size: 0.75rem;
    text-align: left;
  }
}
.footer-bottom-heart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.footer-bottom-heart svg {
  color: var(--gold-400);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1e293b;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 200;
  opacity: 0;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    height: 0;
  }
  to {
    opacity: 1;
    height: auto;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================
   UTILITY HELPERS
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
