:root {
    /* Color Palette - Light Professional Theme */
    --bg-color: #f8f9fa;
    /* Very light gray background */
    --bg-secondary: #ffffff;
    /* Pure white for cards/sections */
    --text-primary: #1a1a1a;
    /* Near black for main text */
    --text-secondary: #4a5568;
    /* Medium gray for secondary text */
    --accent-gold: #0066cc;
    /* Professional blue */
    --accent-gold-dark: #0052a3;
    /* Darker blue for hover states */
    --font-heading: 'Playfair Display', serif;
    --font-heading-hero: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-display: 'Cinzel', serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Fluid Typography */
    --fs-h1: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    --fs-h2: clamp(2rem, 4vw + 0.5rem, 3rem);
    --fs-body: clamp(1rem, 2vw, 1.1rem);
}

/* Global Reset for Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

.text-gold {
    color: var(--accent-gold);
    font-style: italic;
}

.brand-blue {
    color: #4da6ff;
    /* Bright blue to match the requested palette */
    font-style: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 999px;
    /* Pill shape */
}

.btn-primary {
    background-color: #0066ff;
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
    background-color: #0052cc;
    color: #ffffff;
}

.btn-outline {
    background-color: #ffffff;
    color: #0066ff;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background-color: #f8fafc;
    color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    padding: 0.75rem var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links .btn-nav {
    border: 1px solid var(--accent-gold);
    padding: 0.5rem 1.2rem;
    color: var(--accent-gold);
    border-radius: 2px;
}

.nav-links .btn-nav:hover {
    background-color: var(--accent-gold);
    color: #ffffff;
}

/* Marquee Banner */
.marquee-banner {
    position: fixed;
    top: 85px;
    /* Lowered to clear header */
    width: 100%;
    background-color: #ffffff;
    padding: 0.6rem 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 997;
    /* Below navbar */
    border-bottom: 2px solid var(--accent-gold);
    color: #1a1a1a;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 40s linear infinite;
    font-family: var(--font-body);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Base adjustment for marquee visibility */
@media (min-width: 1025px) {
    .navbar.scrolled+.marquee-banner {
        top: 75px;
        /* Adjusted state */
    }

    .hero-section {
        padding-top: 13rem !important;
        /* Increased for desktop */
    }
}

@media (max-width: 1024px) {
    .marquee-banner {
        top: 160px;
        /* Significantly lowered to clear the full mobile navbar */
        font-size: 0.9rem;
        padding: 0.7rem 0;
    }

    .hero-section {
        padding-top: 24rem !important;
        /* Significantly increased to clear both navbar and marquee */
    }
}




/* Hero Section */
.hero-section {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    /* Clean, high-contrast vibrant blue gradient matching reference */
    background: linear-gradient(135deg, #0b1c48 0%, #1e40af 100%);
    color: #ffffff;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
}

.book-display {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.book-cover-3d {
    width: 600px;
    max-width: 100%;
    height: auto;
    box-shadow:
        -20px 20px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(59, 130, 246, 0.3);
    /* Soft Glow */
    border-radius: 4px;
    transform: rotateY(-12deg) rotateX(4deg);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.book-display:hover .book-cover-3d {
    transform: rotateY(-2deg) rotateX(1deg) translateY(-10px) scale(1.03);
    box-shadow:
        -30px 30px 70px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(59, 130, 246, 0.5);
}

.hero-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Globe background effect behind hero text */
/* Globe background effect behind hero text */
/* Globe removed from here, moving to h1 */

.eyebrow {
    display: block;
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: var(--fs-h1);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    /* Bold Sans-serif like reference */
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    z-index: 1;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-text h1 .text-gold {
    color: #ffffff;
    font-style: normal;
    /* Remove italic in hero to match reference */
}

/* CAPSULE Background removed as requested */
.hero-text h1::before {
    display: none;
}

.hero-text h1 .text-gold {
    color: #ffffff;
    /* Match the title color within hero */
    font-style: italic;
}

.author {
    font-size: 1.25rem;
    color: #a5b4fc;
    /* Light blue accent color from reference */
    margin-bottom: 2rem;
    font-weight: 600;
}

.synopsis-preview {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 700;
    font-style: italic;
    background: rgba(255, 255, 255, 0.1);
    /* Subtle light background */
    padding: 0.8rem 1.2rem;
    border-left: 4px solid var(--accent-gold);
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

/* Features Stripe */
.features-section {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-secondary);
}

.feature-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.feature-item {
    text-align: center;
}

.feature-item h3 {
    font-size: 2rem;
    color: var(--accent-gold);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider-vertical {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.text-col {
    flex: 1;
}

.visual-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.abstract-shape {
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: pulse 4s infinite ease-in-out;
}

.section-label {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

h2 {
    font-size: var(--fs-h2);
    margin-bottom: 1.5rem;
}

.text-col p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.pull-quote {
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-top: 2rem;
    font-style: italic;
}

/* Reviews */
.reviews-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
}

.center {
    text-align: center;
}

.section-header {
    margin-bottom: 3rem;
}

.reviews-marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollLeft 40s linear infinite;
    padding: 2rem 0;
    /* Space for hover lift */
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    to {
        transform: translateX(-50%);
    }
}

.review-card {
    background: var(--bg-color);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    transition: transform 0.3s;
    /* Fixed width for scrolling but fluid on mobile */
    flex: 0 0 auto;
    width: 400px;
    max-width: 85vw;
}

.review-card {
    background: var(--bg-color);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.reviewer span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.reviewer-name {
    display: block;
    font-weight: 700;
    color: var(--text-primary) !important;
}

/* Reviews Page Specifics */
.page-header {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background-color: var(--bg-secondary);
    text-align: center;
}

.reviews-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

/* Pricing */
.pricing-container {
    margin-bottom: 2.5rem;
    padding: 1.5rem 2.5rem;
    background: #ffffff;
    /* Solid white background as requested */
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: inline-block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Stronger shadow to stand out against blue */
}

.price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #718096;
    /* Medium gray */
    font-size: 1.2rem;
}

.offer-price {
    font-size: 2.5rem;
    color: #1a202c;
    /* Dark color for readability on white */
    font-weight: 800;
    font-family: var(--font-body);
}

.discount-badge {
    background: var(--accent-gold);
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 2px;
}

.offer-details {
    color: #4a5568;
    /* Darker gray for white box */
    font-size: 0.9rem;
    font-weight: 600;
}

/* Demo Section */
.demo-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
    text-align: center;
}

.demo-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.audio-player-mock {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
}

.play-btn {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    cursor: pointer;
}

.track-line {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.track-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: var(--accent-gold);
}

.time {
    font-size: 0.8rem;
    font-family: monospace;
    color: var(--text-secondary);
}

/* Author Updates */
.author-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #f5f5f5;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.author-img-wrapper {
    flex-shrink: 0;
}

.author-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    /* Circle preference common in these designs */
    border: 3px solid var(--accent-gold);
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-options {
    max-width: 500px;
    margin: 3rem auto 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
    font-family: var(--font-body);
    width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.socials-links {
    margin-bottom: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icon {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--accent-gold);
}

.link-gold {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

.link-gold:hover {
    border-bottom-color: var(--accent-gold);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: transform 0.3s;
    /* Ensure it stays within viewport */
    max-width: 60px;
    max-height: 60px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
}

/* Author Section */
.author-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background-color: var(--bg-secondary);
}

.author-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials a {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--accent-gold);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards ease-out;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

/* Gallery Page Styles */
.gallery-section {
    padding: 8rem 0 4rem;
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 1.2rem;
    background: var(--bg-secondary);
}

.gallery-caption h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.gallery-caption p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.gallery-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gold);
    color: #fff;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 10;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 204, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    pointer-events: none;
    transition: background 0.3s ease;
}

.gallery-item:hover .video-overlay {
    background: var(--accent-gold);
}


/* Responsive */
/* Responsive */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 4rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .navbar {
        background-color: transparent;
        /* Transparent background */
        flex-direction: column;
        gap: 0.5rem;
        /* Reduced gap */
        padding: 0.5rem 1rem;
        /* Reduced padding */
        box-shadow: none;
        width: 100%;
        left: 0;
    }

    .hero-section {
        padding-top: 10rem;
        /* Increased padding to prevent overlap */
        padding-bottom: 2rem;
        /* Reduced bottom padding */
        height: auto;
        min-height: auto;
        /* Remove min-height constraint */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* Force center alignment */
    }

    .nav-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        /* Slightly increased for better flow */
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 2rem;
        /* Decreased size from 2.8rem */
        line-height: 1.1;
    }

    .synopsis-preview {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .book-cover-3d {
        width: 100%;
        /* Full width */
        max-width: 550px;
        /* Maximum size on mobile */
        margin: 0 auto;
    }

    .pricing-container {
        display: inline-block;
        margin: 1.5rem auto;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        /* Constrain width for cleaner look */
        gap: 1rem;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        display: block;
        text-align: center;
    }

    .feature-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .divider-vertical {
        display: none;
    }

    .split-layout {
        flex-direction: column;
    }

    .visual-col {
        order: -1;
        /* Show image before text on mobile if desired, or keep as is. Default column puts text first. User mentioned "prodect is coverd" in first pic which is hero. */
        margin-bottom: 2rem;
    }

    .visual-col img {
        margin: 0 auto;
        /* Center align images in split layout */
        max-width: 80%;
    }

    .text-col {
        text-align: center;
        padding: 0 1rem;
    }

    .about-section {
        padding: 3rem 0;
        /* Reduced from var(--spacing-xl) */
    }

    .demo-content {
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .demo-content img {
        margin: 2rem auto !important;
        /* Force center for inline styled img */
    }

    .pull-quote {
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--accent-gold);
        padding-top: 1.5rem;
        padding-left: 0;
    }

    .footer-content {
        display: flex;
        flex-direction: column-reverse;
        /* Copyright at bottom, Socials above */
        gap: 2rem;
        text-align: center;
    }

    .socials {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }

    .socials a {
        margin-left: 0;
        /* Reset margin */
    }

    .review-card {
        padding: 1.5rem;
        width: 90vw;
        /* Wider review cards on mobile */
    }

    .author-card {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .author-img {
        width: 150px;
        height: 150px;
        margin: 0 auto 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .offer-price {
        font-size: 2rem;
    }
}

/* Review Page Navigation */
.review-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}


#malayalam-reviews .section-title {
    color: var(--primary-blue);
}