/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.body-full-height {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.body-full-height .hero {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#download-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

.nav-logo {
    height: 100px;
    width: auto;
    display: block;
    border-radius: 50%;
}

.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #1e3a8a;
}

.cta-button {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(217, 119, 6, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.5);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(15, 23, 42, 0.9) 100%), url('https://images.unsplash.com/photo-1463567517034-628c51048aa2?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    column-gap: 4rem;
    row-gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.hero-title-logo {
    width: clamp(120px, 11vw, 160px);
    height: auto;
    flex: 0 0 auto;
    border-radius: 50%;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    max-width: 90%;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    max-width: 400px;
    width: 100%;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    background: rgba(15, 23, 42, 0.4);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.feature:hover {
    background: rgba(15, 23, 42, 0.6);
}

.feature-icon {
    font-size: 1.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.price-box {
    background: rgba(15, 23, 42, 0.6);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    display: inline-block;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.price-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

.main-cta {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.6);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.button-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: normal;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdf-preview {
    background: rgba(15, 23, 42, 0.6);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    text-align: center;
    max-width: 320px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.pdf-preview:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.pdf-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pdf-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pdf-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.file-type {
    background: rgba(37, 99, 235, 0.8);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: #0f172a;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.about-text h3 {
    color: #1e3a8a;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1.25rem;
}

.about-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.about-text li {
    margin-bottom: 0.75rem;
}

.about-text strong {
    color: #1e293b;
}

.about-visuals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 16px;
    border-bottom: 4px solid #2563eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: #0f172a;
}

.faq-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    word-break: break-word;
}

.faq-answer ol, .faq-answer ul {
    margin: 1rem 0;
    padding-left: 2rem;
    color: #64748b;
    line-height: 1.6;
}

.faq-answer li {
    margin-bottom: 0.75rem;
    word-break: break-word;
}

.faq-answer a {
    color: #2563eb;
    word-break: break-all;
}

/* How to Apply Section */
.how-to-apply {
    padding: 100px 0;
    background: #f8fafc;
}

.how-to-apply h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: #0f172a;
}

.apply-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.apply-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    height: 400px;
    border: 4px solid #fff;
}

.image-caption {
    text-align: center;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 1rem;
    font-weight: 500;
}

/* Blog */
.home-blog,
.blog-listing {
    padding: 100px 0;
    background: #fff;
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.section-heading-row h2,
.blog-listing h1 {
    color: #0f172a;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin: 0.5rem 0 0.75rem;
}

.section-heading-row p,
.blog-intro {
    color: #64748b;
    font-size: 1.15rem;
}

.eyebrow {
    color: #d97706;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.text-link,
.article-link {
    color: #1e3a8a;
    font-weight: 700;
    text-decoration: none;
}

.featured-post-card {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.featured-post-copy {
    padding: clamp(2rem, 5vw, 4rem);
    align-self: center;
}

.post-meta {
    color: #64748b;
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-post-copy h2,
.featured-post-copy h3 {
    color: #0f172a;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.featured-post-copy h2 a,
.featured-post-copy h3 a {
    color: inherit;
    text-decoration: none;
}

.featured-post-copy p {
    color: #475569;
    margin-bottom: 1.5rem;
}

.blog-header-spacer {
    padding-top: 133px;
}

.blog-masthead {
    padding: 76px 0 64px;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    color: #fff;
}

.blog-masthead h1 {
    font-size: clamp(2.75rem, 7vw, 5rem);
    line-height: 1;
    margin: 0.75rem 0 1.25rem;
}

.blog-masthead p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.2rem;
    max-width: 650px;
}

.article-hero {
    padding-top: 133px;
    background: #0f172a;
    color: #fff;
}

.article-hero-copy {
    max-width: 900px;
    padding: 72px 0 48px;
}

.article-hero h1 {
    font-size: clamp(2.35rem, 6vw, 4.5rem);
    line-height: 1.08;
    margin: 0.75rem 0 1.25rem;
}

.article-deck {
    color: #cbd5e1;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    max-width: 760px;
}

.article-hero-image {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
    display: block;
}

.article-body {
    padding: 72px 0 100px;
    background: #fff;
}

.article-content {
    max-width: 760px;
    margin: 0 auto;
    color: #334155;
    font-size: 1.08rem;
}

.article-content h2 {
    color: #0f172a;
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 2.75rem 0 1rem;
}

.article-content h3 {
    color: #1e3a8a;
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
}

.article-content p,
.article-content li {
    margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
    padding-left: 1.5rem;
    margin: 1rem 0 1.5rem;
}

.article-content a {
    color: #1d4ed8;
}

.article-callout {
    background: #eff6ff;
    border-left: 5px solid #2563eb;
    border-radius: 0 12px 12px 0;
    color: #1e3a8a;
    font-size: 1.12rem;
    margin: 2rem 0;
    padding: 1.4rem 1.5rem;
}

.article-warning {
    background: #fffbeb;
    border-color: #f59e0b;
    color: #92400e;
}

.article-cta {
    background: #0f172a;
    border-radius: 16px;
    color: #fff;
    margin-top: 3rem;
    padding: 2rem;
}

.article-cta h2 {
    color: #fff;
    margin-top: 0;
}

.article-cta p {
    color: #cbd5e1;
}

.article-cta .cta-button {
    display: inline-block;
    text-decoration: none;
}

.source-list {
    font-size: 0.95rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #1e3a8a;
    font-weight: 700;
    margin: 0 0.5rem;
    text-decoration: none;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(30, 58, 138, 0.95) 100%), url('https://images.unsplash.com/photo-1505228395891-9a51e7e86bf6?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    color: white;
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.price-large {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badges span {
    opacity: 0.95;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    background: rgba(15, 23, 42, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

/* Footer */
.footer {
    background: #fff;
    color: #475569;
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

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

.footer-logo-img {
    height: 140px;
    width: auto;
    border-radius: 50%;
    transition: transform 0.3s;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        column-gap: 2rem;
        row-gap: 2rem;
    }
    .hero h1 {
        font-size: 2.75rem;
    }
    .about-content {
        gap: 2rem;
    }
    .apply-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .apply-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 170px 0 80px;
    }

    .nav-links {
        display: none;
    }

    .blog-page .nav-links {
        display: flex;
        gap: 1rem;
    }

    .blog-page .nav-links .cta-button {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-title {
        justify-content: center;
        text-align: center;
    }

    .hero-title-logo {
        width: 124px;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
    
    .hero-features {
        margin: 0 auto 2.5rem;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .feature {
        width: 100%;
        justify-content: center;
    }
    
    .pdf-preview {
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat {
        flex: 1 1 40%;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .container {
        padding: 0 1.5rem;
    }

    .featured-post-card {
        grid-template-columns: 1fr;
    }

    .featured-post-image img {
        min-height: 240px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-header-spacer,
    .article-hero {
        padding-top: 133px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 160px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }

    .hero-title {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .hero-title-logo {
        width: 128px;
    }
    
    .main-cta {
        width: 100%;
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    .about-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .stat {
        flex: 1 1 45%;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .price-large {
        font-size: 2.75rem;
    }
    
    .cta-content h2, .about h2, .faq h2, .testimonials h2, .pdf-preview-section h2 {
        font-size: 2.25rem;
    }
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(rgba(248, 250, 252, 0.92), rgba(248, 250, 252, 0.92)), url('https://images.unsplash.com/photo-1498623116890-37e912163d5d?auto=format&fit=crop&w=1920&q=80') center/cover fixed;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 3.5rem;
  color: #0f172a;
}

.carousel {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item img,
.carousel-item iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.carousel-item img {
  cursor: pointer;
  object-fit: contain;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  z-index: 100;
  text-decoration: none;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1200px;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

/* PDF Preview Section */
.pdf-preview-section {
  padding: 80px 0;
  background: #f8fafc;
  text-align: center;
}

.pdf-preview-section h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #0f172a;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pdf-preview-images {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pdf-preview-image {
  flex: 1 1 300px;
  max-width: 300px;
  width: 100%;
}

.pdf-page-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.pdf-page-img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
}

.success-meta {
  font-size: 0.875rem;
  margin-top: 1rem;
  color: white;
}
