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

/* Accessibility - Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Headlines and titles use Montserrat */
h1, h2, h3, h4, h5, h6,
.hero-main-title,
.hero-subtitle,
.section-title,
.nav-logo a,
.author-name,
.retailer-card h3,
.testimonial-author h4,
.theme-section h3 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding: 2rem 0;
    padding-top: 90px; /* Account for fixed navbar height */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.binary-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        );
    animation: binaryMove 20s linear infinite;
}

@keyframes binaryMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    justify-content: center;
}

.hero-author-image {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.hero-author-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.book-cover-container {
    position: relative;
    max-width: 300px;
}

.book-cover {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.book-cover:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.book-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { opacity: 0.2; }
    100% { opacity: 0.4; }
}

.hero-right {
    color: white;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-question {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #f8fafc;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.hero-main-title {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

.hero-description p {
    margin-bottom: 1.5rem;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.hero-highlights {
    margin-bottom: 2rem;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-bullets li {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.hero-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
}

.hero-author-intro {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.4);
}

.hero-author-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.hero-availability {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-top: 1rem;
    font-style: italic;
}

.hero-author-credit {
    font-style: italic;
    opacity: 0.9;
    margin-top: 1rem;
    margin-bottom: 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-author {
    margin-bottom: 2.5rem;
}

.by-line {
    font-size: 1rem;
    opacity: 0.8;
    margin-right: 0.5rem;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 400;
    margin-right: 1rem;
}

.author-title {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-featured {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-media-logo {
    max-height: 35px;
    max-width: 120px;
    height: auto;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-media-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.publisher-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.publisher-logo {
    height: 20px;
    width: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

/* About Book Section */
.about-book {
    background: white;
    padding: 5rem 0;
    margin-top: 2rem;
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.book-cover-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-cover-large {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.book-cover-large:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Excerpt Carousel */
.excerpt-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: visible;
}

.excerpt-track {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.excerpt-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
}

.excerpt-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    position: relative;
}

.excerpt-slide:not(.active) {
    z-index: 1;
}

.excerpt-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 1rem;
    z-index: 10;
}

.excerpt-btn {
    background: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 11;
    position: relative;
    color: white;
}

.excerpt-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    transform: scale(1.1);
}

.excerpt-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.excerpt-btn:disabled:hover {
    background: white;
    border-color: #e2e8f0;
    color: #666;
}

.excerpt-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.excerpt-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.excerpt-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

.excerpt-dot:hover {
    background: #94a3b8;
}

/* What's Inside Section */
.whats-inside {
    background: white;
}

.book-excerpt {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.excerpt-quote {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin: 0;
    position: relative;
}

.excerpt-quote::before {
    content: '"';
    font-size: 4rem;
    color: #e2e8f0;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.excerpt-quote p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: #2563eb;
    font-weight: 500;
    margin: 0 0 1rem 0;
}

.excerpt-quote cite {
    color: #666;
    font-weight: 600;
    font-style: normal;
}

.content-themes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.theme-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.theme-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.theme-section strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* About Assaf Section */
.about-assaf {
    background: #ffffff;
    padding: 5rem 0;
}

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

.author-image {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.author-right h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.author-role {
    font-size: 1.2rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.author-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.author-social {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* Career Journey */
.career-journey {
    background: white;
    padding: 5rem 0;
}

.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    height: fit-content;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* Core Philosophy */
.core-philosophy {
    background: #f8fafc;
    padding: 5rem 0;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-quote {
    text-align: center;
    margin-bottom: 4rem;
}

.philosophy-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #2563eb;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.philosophy-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #e2e8f0;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.principle {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.principle h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.principle p {
    color: #666;
    line-height: 1.6;
}

/* Author Credibility Section */
.author-credibility {
    background: white;
}

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

.author-headshot {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.credibility-right h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.credibility-right h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.author-role {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.author-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.author-achievements {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.achievement {
    text-align: center;
}

.achievement-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.achievement-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Social Proof Section */
.social-proof {
    background: #f8fafc;
}

/* Testimonials Carousel */
.testimonials-carousel {
    margin-bottom: 3rem;
    overflow: visible;
    padding-bottom: 1rem;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-track {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    padding: 3rem 5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.testimonial-slide:not(.active) {
    z-index: 1;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 1rem;
    z-index: 10;
}

.carousel-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 11;
    position: relative;
}

.carousel-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-btn:disabled:hover {
    background: white;
    border-color: #e2e8f0;
    color: #666;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #94a3b8;
}

.testimonial-quote {
    margin: 0 0 1.5rem 0;
    border: none;
    padding: 0;
}

.testimonial-quote p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info {
    text-align: center;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
    text-align: center;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    text-align: center;
}

.publisher-section {
    background: #f8fafc;
    padding: 4rem 0;
}

.publisher-badge {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.publisher-logo-large {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.publisher-badge p {
    color: #666;
    font-size: 1.1rem;
}



/* Get Book Section */
.get-book {
    background: #f8fafc;
    padding: 5rem 0;
}

.publication-info {
    text-align: center;
    margin: 2rem 0 3rem 0;
}

.availability-date {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin: 0 0 0.5rem 0;
}

.pre-order-note {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.retailer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
}

.retailer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    border: 2px solid #e2e8f0;
    width: 100%;
    height: 140px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.retailer-link:hover {
    background: white;
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.2);
}

.retailer-logo {
    max-height: 100px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
    display: block;
}

.retailer-link:hover .retailer-logo {
    filter: grayscale(0%);
}

/* Make Amazon and B&N logos bigger */
.retailer-link[href*="amazon"] .retailer-logo,
.retailer-link[href*="barnesandnoble"] .retailer-logo {
    max-height: 180px;
    max-width: 360px;
}

/* Amazon logo extra large (69% bigger than standard Amazon/B&N) */
.retailer-link-amazon-featured[href*="amazon"] .retailer-logo {
    max-height: 304px;
    max-width: 608px;
}

/* Enhanced Amazon styling for prominence */
.retailer-link-amazon-featured {
    position: relative;
}

/* Amazon CTA button styling */
.btn-amazon-primary {
    background: linear-gradient(135deg, #667eea 0%, #5a67d8 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-amazon-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #4c51bf 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.btn-amazon-secondary {
    background: linear-gradient(135deg, #667eea 0%, #5a67d8 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-amazon-secondary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #4c51bf 100%);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

/* Book Formats */
.book-formats {
    background: #f8fafc;
    padding: 5rem 0;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.format-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.format-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.format-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.format-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.format-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.format-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.format-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.format-features li::before {
    content: "•";
    color: #64748b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    background: #1a1a1a;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Options */
.contact-options {
    background: white;
    padding: 5rem 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.card-features span {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Information */
.contact-info {
    background: #f8fafc;
    padding: 5rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #1d4ed8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-left h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: #ccc;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .publisher-section {
        padding: 3rem 0;
    }
    
    .publisher-badge {
        padding: 1.5rem;
    }
    
    .nav-logo a {
        font-size: 1rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        min-height: 80vh;
        padding: 1rem 0;
        padding-top: 80px; /* Account for fixed navbar height on mobile */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-question {
        font-size: 1.4rem;
    }

    .hero-main-title {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .content-themes {
        grid-template-columns: 1fr;
    }

    .excerpt-quote {
        padding: 2rem;
    }

    .excerpt-quote p {
        font-size: 1.1rem;
    }
    
    .hero-description p {
        margin-bottom: 1.25rem;
    }

    .credibility-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .author-achievements {
        justify-content: center;
    }

    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .author-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .book-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .testimonial-slide {
        padding: 2rem 3rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        z-index: 15;
    }
    
    .carousel-controls {
        padding: 0 0.5rem;
        z-index: 10;
    }
    
    .excerpt-track {
        min-height: 280px;
    }
    
    .excerpt-slide {
        padding: 2rem 3rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .excerpt-quote {
        padding: 2rem 1.5rem;
    }
    
    .excerpt-quote p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .excerpt-btn {
        width: 35px;
        height: 35px;
        z-index: 15;
    }
    
    .excerpt-controls {
        padding: 0 0.5rem;
        z-index: 10;
    }
    
    .publication-info {
        margin: 1.5rem 0 2rem 0;
    }
    
    .availability-date {
        font-size: 1.3rem;
    }
    
    .pre-order-note {
        font-size: 1rem;
    }
    
    .retailer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .retailer-link {
        width: 100%;
        height: 120px;
        padding: 1.5rem;
    }
    
    .retailer-logo {
        max-height: 80px;
        max-width: 160px;
    }
    
    .retailer-link[href*="amazon"] .retailer-logo,
    .retailer-link[href*="barnesandnoble"] .retailer-logo {
        max-height: 160px;
        max-width: 320px;
    }
    
    .retailer-link-amazon-featured[href*="amazon"] .retailer-logo {
        max-height: 276px;
        max-width: 552px;
    }
    
    /* Mobile Amazon prominence */
    .retailer-link-amazon-featured {
        margin-bottom: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-right {
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-question {
        font-size: 1.2rem;
    }

    .publisher-section {
        padding: 2rem 0;
    }
    
    .publisher-badge {
        padding: 1rem;
    }
    
    .publisher-logo-large {
        height: 50px;
    }
    
    .publisher-badge p {
        font-size: 1rem;
    }

    .hero {
        min-height: 75vh;
        padding: 0.5rem 0;
        padding-top: 80px; /* Account for fixed navbar height on small mobile */
    }
    
    .nav-logo a {
        font-size: 0.8rem;
    }
    
    .hero-main-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .excerpt-quote {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-slide {
        padding: 1.5rem 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .testimonial-quote p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        z-index: 15;
    }
    
    .carousel-controls {
        padding: 0 0.25rem;
        z-index: 10;
    }
    
    .excerpt-track {
        min-height: 320px;
    }
    
    .excerpt-slide {
        padding: 1.5rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .excerpt-quote p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .excerpt-btn {
        width: 30px;
        height: 30px;
        z-index: 15;
    }
    
    .excerpt-controls {
        padding: 0 0.25rem;
        z-index: 10;
    }
    
    .publication-info {
        margin: 1rem 0 1.5rem 0;
    }
    
    .availability-date {
        font-size: 1.2rem;
    }
    
    .pre-order-note {
        font-size: 0.95rem;
    }
    
    .retailer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .retailer-link {
        width: 100%;
        height: 100px;
        padding: 1rem;
    }
    
    .retailer-logo {
        max-height: 60px;
        max-width: 140px;
    }
    
    .retailer-link[href*="amazon"] .retailer-logo,
    .retailer-link[href*="barnesandnoble"] .retailer-logo {
        max-height: 140px;
        max-width: 300px;
    }
    
    .retailer-link-amazon-featured[href*="amazon"] .retailer-logo {
        max-height: 241px;
        max-width: 482px;
    }
    
    /* Extra mobile Amazon prominence */
    .retailer-link-amazon-featured {
        margin-bottom: 1.5rem;
        height: 130px;
    }

    .excerpt-quote p {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .testimonial-quote p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-description p {
        margin-bottom: 1rem;
    }

    .theme-section h3 {
        font-size: 1.5rem;
    }

    .incentive-text h3 {
        font-size: 1.5rem;
    }

    .newsletter-content h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .author-achievements {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Additional Page Styles */

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.header-left h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 2rem;
}

.book-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.meta-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.meta-item strong {
    color: #1a1a1a;
    font-weight: 600;
}

.book-cover-large {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.book-cover-large:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Book Description */
.book-description {
    background: white;
    padding: 5rem 0;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2563eb;
    margin-bottom: 2rem;
    font-style: italic;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Key Features */
.key-features {
    background: #f8fafc;
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Chapter Overview */
.chapter-overview {
    background: white;
    padding: 5rem 0;
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.chapter-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.chapters-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chapter-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.chapter-number {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.chapter-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.chapter-content p {
    color: #666;
    line-height: 1.6;
}

/* Target Audience */
.target-audience {
    background: #f8fafc;
    padding: 5rem 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.audience-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.audience-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.audience-item p {
    color: #666;
    line-height: 1.6;
}

/* Key Insights */
.key-insights {
    background: white;
    padding: 5rem 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.insight-item {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.insight-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    opacity: 0.3;
    font-family: serif;
}

.insight-quote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .book-meta {
        grid-template-columns: 1fr;
    }
    
    .chapters-grid {
        grid-template-columns: 1fr;
    }
    
    .chapter-item {
        flex-direction: column;
        text-align: center;
    }
    
    .chapter-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .header-left h1 {
        font-size: 2.5rem;
    }
    
    .header-subtitle {
        font-size: 1.2rem;
    }
}

/* About Assaf Page Styles */

/* Assaf Hero */
.assaf-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

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

.assaf-hero-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.assaf-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-role {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Career Journey */
.career-journey {
    background: white;
    padding: 5rem 0;
}

.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    height: fit-content;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* Core Philosophy */
.core-philosophy {
    background: #f8fafc;
    padding: 5rem 0;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-quote {
    text-align: center;
    margin-bottom: 4rem;
}

.philosophy-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #2563eb;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.philosophy-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #e2e8f0;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
}

.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.principle {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.principle h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.principle p {
    color: #666;
    line-height: 1.6;
}

/* Achievements */
.achievements {
    background: white;
    padding: 5rem 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.achievement-item p {
    color: #666;
    line-height: 1.6;
}

/* Speaking & Media */
.speaking-media {
    background: #f8fafc;
    padding: 5rem 0;
}

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

.media-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.speaking-list,
.media-list {
    list-style: none;
    padding: 0;
}

.speaking-list li,
.media-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.speaking-list li::before,
.media-list li::before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.speaking-list li:last-child,
.media-list li:last-child {
    border-bottom: none;
}

/* Personal Touch */
.personal-touch {
    background: white;
    padding: 5rem 0;
}

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

.personal-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.personal-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.personal-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.personal-quote {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin-top: 2rem;
}

.personal-quote p {
    font-style: italic;
    color: #2563eb;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design for About Assaf */
@media (max-width: 768px) {
    .assaf-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-year {
        justify-self: center;
        max-width: 200px;
    }
    
    .media-content {
        grid-template-columns: 1fr;
    }
    
    .personal-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .assaf-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .philosophy-quote blockquote {
        font-size: 1.2rem;
    }
}

/* Get Book Page Styles */

/* Purchase Header */
.purchase-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

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

.purchase-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.book-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item strong {
    font-weight: 600;
}

.book-cover-purchase {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.book-cover-purchase:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Purchase Options */
.purchase-options {
    background: white;
    padding: 5rem 0;
}

.retailers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.retailer-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.retailer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

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

.retailer-image {
    height: 40px;
    width: auto;
}

.retailer-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.retailer-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.retailer-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Book Formats */
.book-formats {
    background: #f8fafc;
    padding: 5rem 0;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.format-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.format-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.format-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.format-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.format-item p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.format-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.format-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.format-features li::before {
    content: "•";
    color: #64748b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Bulk Orders */
.bulk-orders {
    background: white;
    padding: 5rem 0;
}

.bulk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.bulk-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.bulk-left p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.bulk-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.benefit-icon {
    font-size: 1.2rem;
}

.bulk-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.bulk-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* Trust Indicators */
.trust-indicators {
    background: #f8fafc;
    padding: 5rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */

/* Contact Header */
.contact-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Options */
.contact-options {
    background: white;
    padding: 5rem 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.card-features span {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Forms */
.contact-forms {
    background: #f8fafc;
    padding: 5rem 0;
}

.forms-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Information */
.contact-info {
    background: white;
    padding: 5rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.info-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #1d4ed8;
}

/* Responsive Design for Contact and Get Book Pages */
@media (max-width: 768px) {
    .purchase-header .header-content,
    .bulk-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .book-details {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .bulk-benefits {
        grid-template-columns: 1fr;
    }
    
    .retailer-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-header h1,
    .purchase-header h1 {
        font-size: 2.5rem;
    }
    
    .form-section {
        padding: 2rem 1rem;
    }
    
    .card-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .nav-logo a {
        font-size: 0.7rem;
    }
    
    .hero-main-title {
        font-size: 1.6rem;
    }
    
    .testimonial-slide {
        padding: 1rem 1rem;
    }
    
    .excerpt-slide {
        padding: 1rem 1rem;
    }
    
    .excerpt-quote {
        padding: 1rem 0.5rem;
    }
    
    .testimonial-quote p,
    .excerpt-quote p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .carousel-btn,
    .excerpt-btn {
        width: 28px;
        height: 28px;
    }
    
    .carousel-controls,
    .excerpt-controls {
        padding: 0 0.1rem;
    }
}

/* Speaking Engagement Section */
.speaking-section {
    padding: 6rem 0 8rem 0; /* Extra bottom padding for intersection observer */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.speaking-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.speaking-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.speaking-highlights h3,
.speaking-topics h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

/* Speaking topics when positioned below the form */
.speaking-topics {
    margin-top: 4rem;
    text-align: center;
}

.speaking-highlights ul {
    list-style: none;
    padding: 0;
}

.speaking-highlights li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.speaking-highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #64748b;
    font-weight: bold;
    font-size: 1.1rem;
}

.speaking-highlights li:last-child {
    border-bottom: none;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.keynote-presentations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
}

.keynote-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #2563eb;
}

.keynote-item h4 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.keynote-item p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.additional-topics {
    text-align: center;
}

.additional-topics h4 {
    color: #374151;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

.topics-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.topic-item {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 500;
    color: #475569;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.topic-item:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.speaking-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.speaking-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: center;
}

.form-description {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.speaking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Only show validation errors after form submission attempt */
.speaking-form.was-validated .form-group input:invalid,
.speaking-form.was-validated .form-group textarea:invalid {
    border-color: #ef4444;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* Responsive Design for Speaking Section */
@media (max-width: 768px) {
    .speaking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .speaking-form-container {
        padding: 1.5rem;
    }
    
    .topics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .keynote-presentations {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .keynote-item {
        padding: 1.5rem;
    }
    
    .keynote-item h4 {
        font-size: 1.2rem;
    }
    
    .keynote-item p {
        font-size: 0.95rem;
    }
    
    .topics-list {
        gap: 0.75rem;
    }
    
    .topic-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .speaking-section {
        padding: 4rem 0 6rem 0; /* Extra bottom padding for intersection observer */
    }
    
    .speaking-topics {
        margin-top: 3rem;
    }
    
    .keynote-presentations {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .keynote-item {
        padding: 1rem;
    }
    
    .keynote-item h4 {
        font-size: 1.1rem;
    }
    
    .keynote-item p {
        font-size: 0.9rem;
    }
    
    .speaking-form-container {
        padding: 1rem;
    }
    
    .speaking-form-container h3 {
        font-size: 1.5rem;
    }
    
    .form-description {
        font-size: 0.9rem;
    }
    
    .topic-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Media Highlights Section */
.media-highlights {
    background: #f8f9fa;
    padding: 4rem 0;
}

/* Featured Article */
.featured-article {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    color: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-video-preview {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(-90px);
}

.featured-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.featured-video:hover .featured-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.featured-iframe {
    border-radius: 12px;
}

.featured-publication-logo {
    max-height: 60px;
    max-width: 180px;
    margin-bottom: 1rem;
    display: block;
}

.featured-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: transparent;
    border-radius: 12px;
    padding: 1rem;
}

.featured-logo {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.9;
}

.featured-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.95;
}

/* Media Carousel */
.media-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: visible;
}

.media-carousel-track {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 12px;
}

.media-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.media-carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    position: relative;
}

.media-carousel-slide .media-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.media-carousel-slide .media-item.video-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.media-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 1rem;
    z-index: 10;
}

.media-carousel-btn {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #666;
}

.media-carousel-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    transform: scale(1.1);
}

.media-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.media-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.media-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-carousel-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

.media-carousel-dot:hover {
    background: #94a3b8;
}

/* Media Grid (Legacy - hidden when carousel is active) */
.media-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.media-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.media-item.video-item {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.media-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.media-thumbnail .video-thumbnail {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.media-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.media-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.media-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

/* Media Links Container */
.media-links {
    display: flex !important;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    visibility: visible !important;
}

.media-links .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    display: inline-block !important;
    visibility: visible !important;
}

/* Media Logos */
.media-logo {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.media-logo-img {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 0.75rem;
    display: block;
}

/* Larger logos for YouTube and Apple Podcast */
.media-logo-img[src*="youtubelogo"],
.media-logo-img[src*="applepodcastlogo"] {
    max-height: 60px;
    max-width: 180px;
}

.youtube-logo {
    background: #ff0000;
    color: white;
}

.apple-logo {
    background: #000;
    color: white;
}

.fastforward-logo {
    background: #0066cc;
    color: white;
}

.cyber-daily-logo {
    background: #ff6600;
    color: white;
}

.frontier-logo {
    background: #663399;
    color: white;
}

.media-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.media-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Podcast Section (Legacy) */
.podcast-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.video-preview {
    width: 100%;
    height: 315px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: translateY(-90px);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-iframe {
    border-radius: 8px;
}

.podcast-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.podcast-section .section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.podcast-item {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.podcast-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.podcast-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
}

.podcast-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}


.podcast-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #2c3e50;
    line-height: 1.3;
}

.podcast-info p {
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-size: 0.95rem;
}

.podcast-meta {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.podcast-info .btn {
    align-self: flex-start;
    margin-top: auto;
    color: #2c3e50;
    background: #f8f9fa;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
}

.podcast-info .btn:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

/* Responsive Design for Media Highlights */
@media (max-width: 768px) {
    .media-highlights {
        padding: 2.5rem 0;
    }
    
    .featured-article {
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 12px;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }
    
    .featured-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .featured-text h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .featured-text p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .featured-video {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .featured-publication-logo {
        max-height: 50px;
        max-width: 150px;
    }
    
    .featured-image {
        height: 60px;
        order: -1;
        justify-content: flex-start;
        padding: 0;
    }
    
    .featured-logo-img {
        max-height: 50px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .media-item.video-item {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .media-item {
        padding: 1.25rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .media-info h4 {
        font-size: 1.15rem;
        line-height: 1.3;
    }
    
    .media-desc {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .media-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .media-links .btn {
        flex: none;
        min-width: auto;
    }
    
    .media-logo-img {
        max-height: 35px;
        max-width: 100px;
    }
    
    .media-logo-img[src*="youtubelogo"],
    .media-logo-img[src*="applepodcastlogo"] {
        max-height: 50px;
        max-width: 150px;
    }
    
    /* Carousel adjustments for tablets */
    .media-carousel-track {
        min-height: 350px;
    }
    
    .media-carousel-slide .media-item {
        padding: 1.5rem;
    }
    
    .media-carousel-slide .media-item.video-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .media-carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .media-highlights {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-article {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-text h3 {
        font-size: 1.2rem;
        line-height: 1.25;
    }
    
    .featured-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .featured-publication-logo {
        max-height: 40px;
        max-width: 120px;
    }
    
    .featured-image {
        height: 50px;
    }
    
    .featured-logo-img {
        max-height: 40px;
    }
    
    .media-grid {
        gap: 1rem;
    }
    
    .media-item {
        padding: 1rem;
    }
    
    .media-info h4 {
        font-size: 1.1rem;
    }
    
    .media-desc {
        font-size: 0.85rem;
    }
    
    .media-logo-img {
        max-height: 30px;
        max-width: 90px;
    }
    
    .media-logo-img[src*="youtubelogo"],
    .media-logo-img[src*="applepodcastlogo"] {
        max-height: 45px;
        max-width: 135px;
    }
    
    /* Carousel adjustments for small mobile */
    .media-carousel-track {
        min-height: 300px;
    }
    
    .media-carousel-slide .media-item {
        padding: 1rem;
    }
    
    .media-carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .media-carousel-dots {
        margin-top: 1.5rem;
    }
    
    .media-carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* Responsive Design for Podcast Section (Legacy) */
@media (max-width: 768px) {
    .podcast-section {
        padding: 3rem 0;
    }
    
    .podcast-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .podcast-item {
        padding: 1.25rem;
    }
    
    
    .podcast-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .podcast-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .podcast-item {
        padding: 1rem;
    }
    
    .podcast-info h3 {
        font-size: 1.1rem;
    }
    
    .podcast-info p {
        font-size: 0.9rem;
    }
}
