/* ========================================
   THE INDIA ROAD - MAIN STYLESHEET
   Created: 2026.02.23
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --color-navy: #1a2e44;
    --color-navy-deep: #0f1c2e;
    --color-gold: #c9a227;
    --color-gold-light: #e8c547;
    --color-cream: #faf8f3;
    --color-cream-dark: #f0ebe0;
    --color-text: #2c3e50;
    --color-text-light: #5a6c7d;
    --color-border: #d4cfc4;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(26, 46, 68, 0.08);
    --shadow-medium: 0 8px 30px rgba(26, 46, 68, 0.12);
    --shadow-strong: 0 12px 40px rgba(26, 46, 68, 0.18);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    --max-width: 1200px;
    --nav-height: 70px;
}

/* ===== BASE RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--color-navy-deep);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav.scrolled {
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-cream);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-brand:hover {
    color: var(--color-gold-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.nav-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-lang a {
    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-lang a.active {
    color: var(--color-gold-light);
    background: rgba(201, 162, 39, 0.15);
}

/* Responsive nav text - shortens menu items on medium screens */
.nav-short { display: none; }

@media (max-width: 1024px) and (min-width: 1001px) {
    .nav-full { display: none; }
    .nav-short { display: inline; }
}

/* Hamburger Menu Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-cream);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://theindiaroad.com/Images/banner.jpg') center/cover no-repeat;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--color-cream), transparent);
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--color-cream);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold-light);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(250, 248, 243, 0.9);
    max-width: 500px;
}

.hero-book {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.book-cover {
    position: relative;
    transform: rotateY(-8deg);
    transition: var(--transition-smooth);
}

.book-cover:hover {
    transform: rotateY(0deg) scale(1.02);
}

.book-cover img {
    display: block;
    max-width: 240px;
    width: 100%;
    height: auto;
    box-shadow: 
        -20px 20px 60px rgba(0, 0, 0, 0.4),
        -5px 5px 20px rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.book-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.15) 0%, transparent 8%);
    pointer-events: none;
}

/* ===== MAIN CONTENT ===== */
.main {
    padding: 80px 24px;
}

.main-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.content {
    max-width: 720px;
}

.section {
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
}

.content p {
    margin-bottom: 1.4em;
    text-align: justify;
    hyphens: auto;
}

.content p:last-child {
    margin-bottom: 0;
}

.prologue-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--color-text-light);
    padding: 24px 32px;
    background: var(--color-cream-dark);
    border-left: 4px solid var(--color-gold);
    margin-bottom: 1.4em;
}

/* Read More Toggle */
.story-preview {
    position: relative;
}

.story-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4em;
    background: linear-gradient(to bottom, transparent, var(--color-cream));
    pointer-events: none;
    transition: var(--transition-fast);
}

.story-preview.expanded::after {
    opacity: 0;
}

.story-full {
    display: none;
    margin-top: 1.4em;
}

.story-full.expanded {
    display: block;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    color: var(--color-navy);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.read-more-btn:hover {
    background: var(--color-gold);
    color: var(--color-navy-deep);
}

.read-more-btn svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.read-more-btn.expanded svg {
    transform: rotate(180deg);
}

/* ===== SIDEBAR ===== */
.sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    align-self: start;
}

.buy-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.buy-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 20px;
    text-align: center;
}

.buy-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.buy-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.buy-link:hover {
    background: var(--color-navy);
    color: var(--color-cream);
    border-color: var(--color-navy);
    transform: translateX(4px);
}

.buy-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.7;
}

.buy-link:hover svg {
    opacity: 1;
}

.buy-link-primary {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-navy-deep);
    font-weight: 600;
}

.buy-link-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-navy-deep);
}

.sidebar-section {
    margin-top: 32px;
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.sidebar-section-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.review-link {
    color: var(--color-navy);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: var(--transition-fast);
}

.review-link:hover {
    color: var(--color-gold);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 24px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-cream);
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold-light);
}

.footer-copy {
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 900px) {
    .main-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .sidebar-section {
        margin-top: 0;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 1000px) {
    :root {
        --nav-height: 60px;
    }
    
    body {
        font-size: 16px;
    }
    
    /* Mobile Menu */
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--color-navy-deep);
        padding: 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu a {
        padding: 16px;
        font-size: 1.1rem;
    }
    
    .nav-lang {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero adjustments */
    .hero {
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-description {
        margin: 0 auto;
    }
    
    .hero-book {
        order: 1;
    }
    
    .book-cover {
        transform: none;
    }
    
    .book-cover img {
        max-width: 200px;
    }
    
    /* Content adjustments */
    .main {
        padding: 48px 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .sidebar {
        grid-template-columns: 1fr;
    }
    
    /* Footer adjustments */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== CONTACT PAGE - HEADER VARIATION ===== */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/Images/banner.jpg') center/cover no-repeat;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

/* ===== CONTACT PAGE - FORM ===== */
.contact-card {
    background: #fff;
    border-radius: 8px;
    padding: 48px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    animation: fadeInUp 0.6s ease-out;
}

.form-group {
    margin-bottom: 24px;
}

.form-group:last-of-type {
    margin-bottom: 32px;
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-light);
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-navy-deep);
    background: var(--color-gold);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit svg {
    width: 20px;
    height: 20px;
}

.form-note {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.form-status {
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== RESPONSIVE - CONTACT PAGE ===== */
@media (max-width: 1000px) {
    .contact-card {
        padding: 32px 24px;
    }
}

/* ===== BOOKS PAGE - COMING SOON ===== */
.coming-soon {
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--color-gold);
}

.coming-soon h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.coming-soon p {
    color: var(--color-text-light);
    max-width: 400px;
    margin: 0 auto;
}

/* ===== RESOURCES PAGE - PAGE HEADER ===== */
.page-header {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--color-navy-deep) 0%, var(--color-navy) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: 16px;
}

.page-header h1 a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.page-header h1 a:hover {
    opacity: 0.8;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(250, 248, 243, 0.8);
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.page-nav a {
    color: var(--color-gold-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.page-nav a:hover {
    background: var(--color-gold);
    color: var(--color-navy-deep);
}

/* ===== RESOURCES PAGE - CONTENT ===== */
.content-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.content-card p {
    margin-bottom: 1.4em;
    text-align: justify;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-card a {
    color: var(--color-gold);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.content-card a:hover {
    color: var(--color-navy);
}

.content-card em {
    font-style: italic;
}

.map-image {
    width: 100%;
    max-width: 715px;
    height: auto;
    border-radius: 4px;
    margin: 24px 0;
    box-shadow: var(--shadow-soft);
}

.bibliography {
    font-size: 0.95rem;
    line-height: 1.8;
}

.bibliography p {
    margin-bottom: 0.8em;
    padding-left: 2em;
    text-indent: -2em;
}

/* ===== RESPONSIVE - RESOURCES PAGE ===== */
@media (max-width: 1000px) {
    .content-card {
        padding: 24px 20px;
    }
    
    .page-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ===== ABOUT PAGE - HERO VARIATIONS ===== */
.hero-image {
    display: flex;
    justify-content: center;
}

.author-portrait {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 -4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.author-portrait::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-initials {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-navy-deep);
    letter-spacing: 0.05em;
}

.hero-title a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
}

.hero-title a:hover {
    opacity: 0.8;
}

/* ===== ABOUT PAGE - CONTENT SECTIONS ===== */
.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
}

.content-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.stat-card {
    background: #fff;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--color-gold);
}

.stat-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* Quote Section */
.quote-section {
    background: #fff;
    border-radius: 8px;
    padding: 48px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 24px;
    left: 32px;
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: var(--color-gold);
    opacity: 0.2;
}

.quote-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 60px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.cta-btn-primary {
    background: var(--color-gold);
    color: var(--color-navy-deep);
}

.cta-btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

.cta-btn-secondary {
    background: var(--color-navy);
    color: var(--color-cream);
}

.cta-btn-secondary:hover {
    background: var(--color-navy-deep);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE - ABOUT PAGE ===== */
@media (max-width: 900px) {
    .content-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 1000px) {
    .hero-image {
        order: -1;
    }
    
    .author-portrait {
        width: 200px;
        height: 200px;
    }
    
    .author-initials {
        font-size: 3.5rem;
    }
    
    .quote-section {
        padding: 32px 24px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-book {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out;
}

.section {
    animation: fadeInUp 0.6s ease-out both;
}

.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.2s; }

.stat-card {
    animation: fadeInUp 0.6s ease-out both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
