.elementor-20 .elementor-element.elementor-element-6ca6db0 > .elementor-container{min-height:400px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-cbdcc13 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

#wike-landing { width: 100%; }

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    color: white;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #e67e22;
    border: 2px solid #e67e22;
}
.btn-secondary:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.btn-disabled {
    background: #bdc3c7;
    color: #7f8c8d;
    cursor: not-allowed;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    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-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-image {
    width: 40px; height: 50px; object-fit: cover; border-radius: 4px;
}
.logo-text {
    font-family: 'Bebas Neue', cursive; font-size: 1.5rem; color: #2c3e50; letter-spacing: 1px;
}
.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-link {
    text-decoration: none; color: #2c3e50; font-weight: 500; transition: color 0.3s ease; position: relative;
}
.nav-link:hover { color: #e67e22; }
.nav-link.active { color: #e67e22; }
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: #e67e22; transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.buy-now-btn { background: linear-gradient(135deg, #e67e22, #f39c12); color: white !important; padding: 8px 20px; border-radius: 25px; }
.buy-now-btn::after { display: none; }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 4px; }
.hamburger span { width: 25px; height: 3px; background: #2c3e50; transition: all 0.3s ease; }

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex; align-items: center;
    padding: 100px 0 50px; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0; opacity: 0.3;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}
.hero-container {
    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: 1;
}
.hero-content { color: white; }
.hero-title {
    font-size: 4rem; margin-bottom: 1rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: fadeInUp 1s ease-out;
}
.hero-subtitle { font-size: 2rem; margin-bottom: 1.5rem; color: #ecf0f1; animation: fadeInUp 1s ease-out 0.2s both; }
.hero-pitch { font-size: 1.2rem; margin-bottom: 2rem; color: #bdc3c7; line-height: 1.8; animation: fadeInUp 1s ease-out 0.4s both; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 1s ease-out 0.6s both; }
.hero-carousel { animation: fadeInRight 1s ease-out 0.8s both; }
.hero-swiper {
    border-radius: 15px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 400px; background: #34495e;
}
.hero-swiper .swiper-slide { height: 400px; }
.hero-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-swiper .swiper-pagination-bullet { background: #f39c12; }
.hero-swiper .swiper-button-next, .hero-swiper .swiper-button-prev { color: #f39c12; }

/* Author Section */
.author { padding: 100px 0; background: #f8f9fa; }
.author-content { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: center; }
.author-image-container { text-align: center; position: relative; }
.author-image {
    width: 250px; height: 250px; border-radius: 50%; object-fit: cover;
    border: 5px solid #e67e22; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease;
}
.author-image:hover { transform: scale(1.05); }
.author-socials { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.social-link {
    display: flex; align-items: center; justify-content: center; width: 50px; height: 50px;
    background: #e67e22; color: white; border-radius: 50%; text-decoration: none; transition: all 0.3s ease;
}
.social-link:hover { background: #d35400; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3); }
.author-bio p { margin-bottom: 1.5rem; font-size: 1.1rem; line-height: 1.8; color: #555; }

/* Synopsis Section */
.synopsis { padding: 100px 0; background: white; }
.synopsis-content { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: center; }
.synopsis-description { font-size: 1.2rem; line-height: 1.8; color: #555; margin-bottom: 2rem; }
.synopsis-highlights { display: flex; gap: 2rem; flex-wrap: wrap; }
.highlight-item {
    display: flex; align-items: center; gap: 0.5rem; padding: 1rem 1.5rem; background: #f8f9fa;
    border-radius: 25px; border-left: 4px solid #e67e22;
}
.highlight-item i { color: #e67e22; font-size: 1.2rem; }
.synopsis-image { text-align: center; }
.book-cover {
    max-width: 300px; width: 100%; border-radius: 10px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); transition: transform 0.3s ease;
}
.book-cover:hover { transform: scale(1.05); }

/* Chapters Section */
.chapters { padding: 100px 0; background: #f8f9fa; }
.chapters-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.chapter-card {
    background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease; border-top: 4px solid #e67e22;
}
.chapter-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.chapter-title { font-size: 1.5rem; margin-bottom: 1rem; color: #2c3e50; }
.chapter-excerpt { color: #666; line-height: 1.6; margin-bottom: 1.5rem; }
.read-more-btn {
    background: transparent; color: #e67e22; border: 2px solid #e67e22; padding: 8px 20px; border-radius: 25px;
    cursor: pointer; font-weight: 600; transition: all 0.3s ease;
}
.read-more-btn:hover { background: #e67e22; color: white; }

/* Buy Now Section */
.buy-now {
    padding: 100px 0; background: linear-gradient(135deg, #e67e22, #f39c12); color: white; text-align: center;
}
.buy-now .section-title { color: white; }
.buy-now .section-title::after { background: white; }
.buy-message { font-size: 1.3rem; margin-bottom: 3rem; opacity: 0.9; }
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.pricing-card {
    background: white; color: #2c3e50; padding: 2.5rem 2rem; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease; position: relative;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 25px 50px rgba(0,0,0,0.2); }
.pricing-card.featured { transform: scale(1.05); border: 3px solid #f39c12; }
.pricing-card.featured::before {
    content: 'RECOMMENDED'; position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: #f39c12; color: white; padding: 5px 20px; border-radius: 15px; font-size: 0.8rem; font-weight: 600;
}
.pricing-title { font-size: 1.5rem; margin-bottom: 1rem; }
.pricing-price { font-size: 3rem; font-weight: 700; color: #e67e22; margin-bottom: 1.5rem; }

.contact-info {
    background: rgba(255,255,255,0.1); padding: 2rem; border-radius: 15px; backdrop-filter: blur(10px);
}
.contact-info h3 { margin-bottom: 1.5rem; font-size: 1.5rem; }
.contact-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 0.5rem; }
.contact-item i { color: #f39c12; width: 20px; }

/* Footer */
.footer { background: #2c3e50; color: white; text-align: center; padding: 2rem 0; }

/* Modals */
.modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
}
.modal-content {
    background-color: white; margin: 5% auto; padding: 2rem; border-radius: 15px; width: 90%; max-width: 600px; position: relative;
    animation: modalSlideIn 0.3s ease-out;
}
.close {
    color: #aaa; font-size: 28px; font-weight: bold; cursor: pointer; position: absolute; top: 15px; right: 20px;
}
.close:hover { color: #e67e22; }
.modal-content h3 { margin-bottom: 1rem; color: #2c3e50; font-size: 1.5rem; }
.modal-content p { line-height: 1.8; color: #555; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Fade-in on scroll */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .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; }
    .hero-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .hero-buttons { justify-content: center; }
    .author-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .synopsis-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .chapters-grid { grid-template-columns: 1fr; }
    .pricing-cards { grid-template-columns: 1fr; }
    .contact-details { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .hero-swiper .swiper-slide img { height: 250px; }
}
@media (max-width: 480px) {
    .container { padding: 0 15px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-pitch { font-size: 1rem; }
    .btn { padding: 10px 20px; font-size: 0.9rem; }
    .chapter-card { padding: 1.5rem; }
    .modal-content { margin: 10% auto; padding: 1.5rem; }
}/* End custom CSS */