@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
    --navy-blue: #003366;
    --gold: #D4AF37;
    --light-gold: #F4E4BC;
    --dark-navy: #001F3F;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
}

/* Header Styles */
.site-header {
    position: relative;
    z-index: 1000;
}

/* Enhanced Top Bar */
.top-bar {
    background: var(--navy-blue);
    padding: 8px 0;
}

.contact-info a {
    color: var(--navy-blue);
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 15px;
    margin-right: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    background: white;
    color: var(--gold);
    transform: translateY(-1px);
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
    background: white;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease-out;
}

.navbar > .container {
    position: relative;
}

.navbar-brand {
    flex: 0 0 auto;
    max-width: 40%;
}

.navbar-toggler {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 10px;
    border: 1px solid var(--navy-blue);
}

.main-logo {
    height: 50px;
    margin-right: 10px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-blue);
}

.nav-link {
    font-weight: 500;
    padding: 8px 16px;
    color: var(--navy-blue);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link {
    color: var(--navy-blue) !important;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
    color: var(--navy-blue);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: rgba(0, 51, 102, 0.05);
    color: var(--gold);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-search {
    background: none;
    border: none;
    color: var(--navy-blue);
    font-size: 1.2rem;
    padding: 5px;
    transition: all 0.3s ease;
}

.btn-search:hover {
    color: var(--gold);
    transform: scale(1.1);
}

/* Navigation Styling */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.9), rgba(0, 51, 102, 0.85)),
                url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('../images/overlay-pattern.png') repeat;
    opacity: 0.1;
    animation: slidePattern 20s linear infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to top, var(--navy-blue) 0%, transparent 100%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-section .subheadline {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-buttons .btn {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollIndicator 2s infinite;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollIndicator {
    0% { top: 8px; opacity: 1; }
    50% { top: 24px; opacity: 0; }
    100% { top: 8px; opacity: 1; }
}

@keyframes slidePattern {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Buttons Styling */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--navy-blue);
    border-color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
}

.btn-primary:hover {
    background: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline-primary:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

/* Enhanced Featured Book Section */
.featured-book {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.book-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden
}

.book-showcase-wrapper {
    position: relative;
}

.book-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--gold) 0%, transparent 60%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.book-content-wrapper {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
}

.book-showcase {
    position: relative;
    perspective: 1500px;
    margin-bottom: 2rem;
}

.book-wrapper {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(25deg);
    transition: all 0.6s ease;
}

.book-wrapper:hover {
    transform: rotateY(0deg) translateY(-20px);
}

.book-cover {
    width: 100%;
    border-radius: 10px;
    box-shadow: 
        -20px 20px 40px rgba(0,0,0,0.3),
        0 0 25px rgba(212, 175, 55, 0.2);
}

.book-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    transform: rotate(5deg);
    z-index: 2;
}

.book-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.subtitle {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, var(--gold), #e5c100);
    color: var(--navy-blue);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tab-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.book-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.book-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.book-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Blog Section Styling */
.section-header {
    margin-bottom: 3rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.divider-line {
    height: 2px;
    width: 60px;
    background: var(--gold);
    margin: 0 15px;
}

.divider-icon {
    color: var(--gold);
    font-size: 1.5rem;
}

/* Enhanced Membership Section */
.membership-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    padding: 100px 0;
}

.membership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-overlay.png');
    opacity: 0.05;
    pointer-events: none;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.pulse-button {
    position: relative;
}

.pulse-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--gold);
    border-radius: 30px;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.05);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Newsletter Section Styling */
.newsletter-wrapper {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 31, 63, 0.95) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.custom-input {
    height: 60px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.form-floating label {
    color: rgba(255, 255, 255, 0.7);
}

.btn-gold {
    background: var(--gold);
    color: var(--dark-navy);
    border: none;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: #E5C100;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer Enhancement */
footer {
    background: var(--dark-navy);
    padding: 80px 0 30px;
    color: white;
}

footer h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--gold);
    text-decoration: none;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Resources Section */
.resources-section {
    padding: 80px 0;
}

.resource-card {
    transition: all 0.3s ease;
    border: none;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.resource-card .card-body {
    padding: 2rem;
}

.resource-card .card-title {
    color: var(--navy-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resource-card .card-title i {
    font-size: 1.5rem;
}

.resource-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.resource-card .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
}

/* Video Gallery */
.video-card {
    position: relative;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.05);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 24px;
}

.video-thumbnail:hover .play-button {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
    color: var(--navy-blue);
    font-size: 1.1rem;
    margin-top: 1rem;
    text-align: center;
}

#videoModal .modal-content {
    background: transparent;
    border: none;
}

#videoModal .btn-close {
    z-index: 1;
    opacity: 0.8;
}

#videoModal .btn-close:hover {
    opacity: 1;
}

/* Enhanced Video Section */
.video-container {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0,0,0,0.1);
}

.video-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.video-thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 24px;
}

.video-thumbnail:hover .play-button {
    transform: scale(1);
}

.video-info {
    background: white;
    border-radius: 0 0 12px 12px;
}

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: var(--navy-blue);
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Testimonials */
.testimonial-carousel {
    padding: 2rem 0;
}

.testimonial-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 1rem;
}

/* Enhanced Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 20px 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--gold);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--navy-blue), var(--dark-navy));
    color: white;
    transform: translateY(-20px);
}

.testimonial-card.featured:hover {
    transform: translateY(-30px);
}

.quote-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.rating {
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 5px;
}

.rating i {
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.featured .testimonial-text {
    color: rgba(255,255,255,0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.featured .testimonial-author {
    border-color: rgba(255,255,255,0.1);
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--navy-blue);
}

.featured .author-info h4 {
    color: white;
}

.author-info span {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card.featured {
        transform: translateY(0);
    }
    
    .testimonial-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .testimonials-container {
        flex-direction: column;
        gap: 2rem;
    }

    .testimonial-item {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .book-content-wrapper {
        padding: 1.5rem;
    }

    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .hero-content h1, .book-title, .section-title, .display-4 {
        font-size: 2rem !important;
    }
    .hero-content .subtitle {
        font-size: 1.1rem !important;
    }
    .book-details-wrapper, .about-content, .content-section, .ps-lg-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .book-image-wrapper, .about-image-wrapper {
        margin-bottom: 2rem;
    }
    .book-meta, .book-specs, .feature-grid, .achievement-grid {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .section-divider, .gold-separator {
        margin: 1rem 0 !important;
    }
    .btn, .btn-lg {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .container, .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .hero-section, .page-hero {
        padding: 40px 0 !important;
    }
    .about-section, .featured-book, .featured-book-hero, .video-section {
        padding: 30px 0 !important;
    }
    .book-cover, .about-image img, .video-thumbnail img {
        height: 180px !important;
        object-fit: cover;
    }
    .book-header, .book-meta, .book-specs {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .book-cta, .price-tag-container {
        text-align: left !important;
    }
    .section-title, .book-title {
        font-size: 1.5rem !important;
    }
    .lead, .subheadline {
        font-size: 1rem !important;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1, .book-title, .section-title, .display-4 {
        font-size: 1.2rem !important;
    }
    .hero-content .subtitle {
        font-size: 1rem !important;
    }
    .book-cover, .about-image img, .video-thumbnail img {
        height: 120px !important;
    }
    .btn, .btn-lg {
        font-size: 1rem !important;
        padding: 0.5rem 1rem !important;
    }
}

/* Enhanced Button Styles */
.btn-amazon {
    background: linear-gradient(45deg, var(--gold), #e5c100);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-amazon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button .tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 991px) {
    .navbar-toggler {
        background-color: var(--navy-blue);
        padding: 8px 12px;
        border: none;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .book-container {
        padding: 1.5rem;
    }

    .video-container {
        padding: 1.5rem !important;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-content {
        text-align: center;
        padding: 2rem 1rem;
    }

    .testimonial-card {
        margin-bottom: 1.5rem;
    }

    .newsletter-wrapper {
        padding: 2rem !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .book-visual-wrapper {
        margin-bottom: 2rem;
    }

    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .action-buttons .btn {
        width: 100%;
    }

    .video-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 3rem 0;
    }

    .whatsapp-button .tooltip {
        display: none;
    }
}

/* Enhanced Layout Spacing */
.section-spacing > * + * {
    margin-top: 2rem;
}

.content-wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

/* About Page Styles */
.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-overlay.png');
    opacity: 0.05;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.mission-statement {
    border-left: 4px solid var(--gold);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
    }
    
    .mission-card {
        margin-bottom: 1.5rem;
    }
}

/* About Personal Section Styles */
.about-personal {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.legacy-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 4px solid var(--gold);
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: var(--navy-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.personal-values, .mentor-role {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

/* Two Column About Page Styles */
.mission-list, .credentials-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li, .credentials-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.mission-list i, .credentials-list i {
    margin-right: 1rem;
    width: 20px;
}

.service-card {
    background: #f8f9fa;
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.profile-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.achievement-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

@media (max-width: 991px) {
    .content-section.ps-lg-4.border-start {
        border-left: none !important;
        margin-top: 3rem;
        padding-top: 3rem;
        border-top: 1px solid #dee2e6;
    }
}

/* About Section Enhancements */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    padding: 1rem;
}

.about-image {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--gold) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
    border-radius: 8px;
}

.about-content {
    padding: 2rem 0;
}

@media (min-width: 992px) {
    .about-content {
        padding-left: 3rem;
    }
    
    .about-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }
}

/* Price Tag Styling */
.price-tag-wrapper {
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--navy-blue), var(--dark-navy));
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-label {
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.price-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.price-tag-container {
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-tag.bold {
    display: inline-block;
    background: var(--navy-blue);
    color: var(--gold);
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.price-tag.bold .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
}

.price-tag.bold .amount {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Enhanced Featured Book Styles */
.featured-book-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.featured-book-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-overlay.png');
    opacity: 0.05;
}

.book-showcase-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 3rem;
    position: relative;
}

.book-image-wrapper {
    position: relative;
    margin-bottom: 2rem;
    perspective: 1000px;
}

.book-cover {
    width: 100%;
    border-radius: 10px;
    box-shadow: -20px 20px 40px rgba(0,0,0,0.3);
    transform: rotateY(20deg);
    transition: all 0.5s ease;
}

.book-cover.hover-effect:hover {
    transform: rotateY(0deg) translateY(-10px);
}

.bestseller-badge {
    position: absolute;
    top: 20px;
    left: -10px;
    background: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--navy-blue);
    color: var(--gold);
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.price-content {
    text-align: center;
}

.price-currency {
    font-size: 1rem;
    vertical-align: super;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.btn-primary-gold {
    background: linear-gradient(45deg, var(--gold), #e5c100);
    border: none;
    color: var(--navy-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

.btn-secondary-gold {
    background: white;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-gold:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

.book-details-wrapper {
    padding-left: 3rem;
}

.featured-label {
    display: inline-block;
    background: rgba(212,175,55,0.1);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.book-title {
    color: var(--navy-blue);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.book-subtitle {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.book-specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 991px) {
    .book-details-wrapper {
        padding-left: 0;
        padding-top: 2rem;
    }
    
    .book-showcase-container {
        padding: 1.5rem;
    }
}

.media-brand {
    font-size: 1rem;
    margin-left: 8px;
    margin-right: 32px;
    font-weight: 500;
    vertical-align: middle;
    color: #222;
}
