/*
Theme Name: RankwithMona Custom Theme
Theme URI: https://rankwithmona.com/
Author: Antigravity AI
Author URI: https://rankwithmona.com/
Description: A premium, ultra-high performance custom light-themed SEO & Digital Marketing Agency theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rankwithmona-custom
*/

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

/* --- DESIGN SYSTEM & CSS TOKENS (CLEAN LIGHT LAVENDER) --- */
:root {
  /* Colors - Clean Light Lavender System */
  --bg-main: #FAF8FD;
  --bg-surface: rgba(255, 255, 255, 0.75);
  --bg-surface-hover: rgba(255, 255, 255, 0.95);
  
  --clr-primary: #8B5CF6;       /* Royal Violet */
  --clr-secondary: #4F46E5;     /* Deep Indigo */
  --clr-accent: #EC4899;        /* Rose Pink */
  
  --text-primary: #1C1628;      /* Deep Charcoal Violet */
  --text-muted: #6B627E;         /* Lavender Slate */
  --text-white: #FFFFFF;
  
  --border-glass: rgba(139, 92, 246, 0.1);
  --border-glass-hover: rgba(139, 92, 246, 0.35);
  
  --shadow-glow: 0 15px 35px rgba(139, 92, 246, 0.12);
  --shadow-glow-accent: 0 15px 35px rgba(236, 72, 153, 0.12);
  --shadow-card: 0 10px 40px -10px rgba(28, 22, 40, 0.06);
  --shadow-card-hover: 0 20px 45px -5px rgba(139, 92, 246, 0.15);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  
  /* Timing */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Elegant Background Glows */
body::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -15%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, rgba(250,248,253,0) 70%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -15%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, rgba(250,248,253,0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-primary);
}

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

p {
  color: var(--text-muted);
}

/* --- UTILITY CLASSES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--clr-primary) 75%, var(--clr-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: var(--bg-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-8px);
  background: var(--bg-surface-hover);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-glow), var(--shadow-card-hover);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: var(--text-white);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4), var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-glass-hover);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(139, 92, 246, 0.05);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

/* --- HEADER / NAVIGATION --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.header.scrolled {
  background: rgba(250, 248, 253, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
  height: 72px;
  box-shadow: 0 4px 30px rgba(28, 22, 40, 0.02);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}

.logo span {
  color: var(--clr-primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-primary);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  margin: 5px;
  transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(3.2rem, 5.5vw, 4.8rem);
  line-height: 1.15;
  margin-bottom: 1.8rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* Hero Graphical Element */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(79, 70, 229, 0.1) 50%, rgba(250,248,253,0) 70%);
  filter: blur(40px);
  animation: orb-bounce 8s ease-in-out infinite alternate;
}

.hero-illustration {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.08);
  backdrop-filter: blur(10px);
  z-index: 2;
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: var(--transition-smooth);
}

.hero-visual:hover .hero-illustration {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03);
}

/* --- SERVICES SECTION --- */
.services {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-tag {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clr-primary);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-header h2 {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  margin-bottom: 1.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  background: rgba(139, 92, 246, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(139, 92, 246, 0.15);
  color: var(--clr-primary);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--clr-primary);
  color: white;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--clr-primary);
}

.service-link:hover {
  color: var(--clr-accent);
}

/* --- QUOTE SECTION --- */
.quote-section {
  padding: 6.5rem 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.9) 0%, rgba(250,248,253,0.95) 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  text-align: center;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.quote-container::before {
  content: '“';
  position: absolute;
  top: -85px;
  left: 20px;
  font-size: 12rem;
  color: rgba(139, 92, 246, 0.06);
  font-family: serif;
}

.quote-text {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.quote-author {
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.quote-resolution {
  font-size: 1.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

.quote-resolution span {
  color: var(--clr-accent);
}

/* --- ESTIMATOR SECTION --- */
.estimator {
  padding: 8rem 0;
}

.estimator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.calc-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.calc-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.calc-select, .calc-range {
  width: 100%;
  background: white;
  border: 1.5px solid var(--border-glass-hover);
  border-radius: var(--border-radius-md);
  padding: 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 500;
  outline: none;
  transition: var(--transition-smooth);
}

.calc-select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.calc-range {
  padding: 0.5rem 0;
  accent-color: var(--clr-primary);
}

.calc-result-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.04), rgba(79, 70, 229, 0.06));
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  box-shadow: var(--shadow-card);
}

.calc-result-box h3 {
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
}

.calc-price {
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--clr-primary);
  margin-bottom: 0.5rem;
  text-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.calc-subtext {
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

/* --- FOOTER --- */
.footer {
  background: #FAF8FD;
  border-top: 1px solid var(--border-glass);
  padding: 6.5rem 0 3rem 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  margin-bottom: 2.2rem;
  max-width: 290px;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
  color: white;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column a {
  color: var(--text-muted);
}

.footer-column a:hover {
  color: var(--clr-primary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- REVEAL ANIMATIONS (INTERSECTION OBSERVER) --- */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- KEYFRAMES --- */
@keyframes orb-bounce {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 1024px) {
  .hero-grid, .estimator-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-links.nav-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(250, 248, 253, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 3.5rem 2rem;
    gap: 2.5rem;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.08);
    border-top: 1px solid var(--border-glass);
    z-index: 999;
    align-items: center;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav-links.nav-active.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links.nav-active li {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav-links.nav-active.show li {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-links.nav-active.show li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.nav-active.show li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.nav-active.show li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.nav-active.show li:nth-child(4) { transition-delay: 0.25s; }

  .nav-links.nav-active li a {
    font-size: 1.45rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
  }
  
  .burger {
    display: block;
    z-index: 1001;
  }
  
  .burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  
  .burger.toggle .line2 {
    opacity: 0;
  }
  
  .burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -5px);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* --- CORE WORDPRESS & GUTENBERG BLOCK COMPATIBILITY STYLES --- */

/* Alignments */
.alignleft {
  float: left;
  margin: 0.5rem 1.5rem 1.5rem 0;
}
.alignright {
  float: right;
  margin: 0.5rem 0 1.5rem 1.5rem;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  clear: both;
}
.alignwide {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

@media (max-width: 768px) {
  .alignleft, .alignright {
    float: none;
    margin: 0 0 1.5rem 0;
  }
}

/* Base Post & Page Entry Gutenberg Content Styles */
.post-entry-content,
.page-entry-content {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.post-entry-content p,
.page-entry-content p {
  margin-bottom: 1.8rem;
  color: var(--text-primary);
  opacity: 0.9;
}

.post-entry-content h1,
.post-entry-content h2,
.post-entry-content h3,
.post-entry-content h4,
.post-entry-content h5,
.post-entry-content h6,
.page-entry-content h1,
.page-entry-content h2,
.page-entry-content h3,
.page-entry-content h4,
.page-entry-content h5,
.page-entry-content h6 {
  margin-top: 2.8rem;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.post-entry-content h2,
.page-entry-content h2 {
  font-size: 1.85rem;
  border-bottom: 2px solid rgba(139, 92, 246, 0.08);
  padding-bottom: 0.5rem;
}

.post-entry-content h3,
.page-entry-content h3 {
  font-size: 1.5rem;
}

/* Hyperlinks within content */
.post-entry-content a,
.page-entry-content a {
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: var(--transition-smooth);
}

.post-entry-content a:hover,
.page-entry-content a:hover {
  color: var(--clr-accent);
  text-decoration-color: var(--clr-accent);
}

/* Gutenberg Quote Block (.wp-block-quote) */
blockquote,
.wp-block-quote {
  position: relative;
  background: rgba(139, 92, 246, 0.03);
  border-left: 4px solid var(--clr-primary);
  padding: 1.8rem 2.2rem;
  margin: 2.5rem 0;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  box-shadow: inset 0 0 20px rgba(139, 92, 246, 0.02);
}

blockquote p,
.wp-block-quote p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 0.8rem !important;
}

blockquote cite,
.wp-block-quote cite,
.wp-block-quote__citation {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-style: normal;
}

/* Images & Captions */
.wp-block-image {
  margin: 2.5rem 0;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
}

.wp-block-image figcaption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
  font-weight: 600;
}

/* Lists */
.post-entry-content ul,
.post-entry-content ol,
.page-entry-content ul,
.page-entry-content ol {
  margin: 1.5rem 0 2rem 2.5rem;
}

.post-entry-content li,
.page-entry-content li {
  margin-bottom: 0.8rem;
  padding-left: 0.25rem;
}

/* Tables */
.wp-block-table {
  width: 100%;
  margin: 2.5rem 0;
  border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
  padding: 1rem 1.2rem;
  border: 1px solid var(--border-glass);
  text-align: left;
}

.wp-block-table th {
  background: rgba(139, 92, 246, 0.04);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

.wp-block-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.4);
}

/* Code & Preformatted Blocks */
pre, code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
}

pre.wp-block-code {
  background: #1C1628;
  color: #F3F1F6;
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  overflow-x: auto;
  margin: 2.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
}

code {
  background: rgba(139, 92, 246, 0.06);
  color: var(--clr-primary);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  border-radius: 0;
  font-weight: normal;
}

/* Dynamic Pagination Elements Styles */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-card);
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: white;
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.page-numbers.prev,
.page-numbers.next {
  width: auto;
  padding: 0 1.5rem;
  border-radius: 50px;
}

/* Custom Text Gradient Hover Class */
.text-gradient-hover {
  transition: var(--transition-smooth);
}

.text-gradient-hover:hover {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

