:root {
    --primary-color: #D4AF37;
    /* Metallic Gold */
    --primary-dark: #B4941F;
    --primary-light: #F2D06B;
    --text-color: #1e293b;
    /* Dark Navy/Slate for text */
    --text-light: #64748b;
    /* Muted Slate */
    --bg-body: #ffffff;
    --bg-light: #f8f9fa;
    /* Very light gray for sections */
    --bg-dark-accent: #0f172a;
    /* Deep Navy for contrast */
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--bg-dark-accent);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .divider {
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bg-dark-accent);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    /* Ensure no default dots */
}

.nav-links li {
    display: flex;
    align-items: center;
}

/* Optional: Add a small decorative icon before items if requested, 
   or just ensure no bullet points. User asked for "proper icon" */
.nav-links a {
    color: var(--bg-dark-accent);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Space between icon and text */
}

.nav-links a i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

/* Dark overlay for better text readability on hero image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust opacity as needed */
    z-index: 1;
}

/* Remove the old animated shapes if they clash, or keep them subtle */
.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content .label {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    background: rgba(15, 23, 42, 0.8);
    /* Dark background for contrast */
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--primary-color);
    /* Gold text */
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.1;
    color: white;
    /* Changed to white for better contrast on image */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    /* Lighter text */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 100px 0;
}

/* About Section */
.about-section {
    background-color: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
}

.highlight-text {
    font-weight: 600;
    font-style: italic;
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-top: 30px;
    display: block;
}

/* Services */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.service-card:hover .icon {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-light);
}

/* Packages */
.packages-section {
    background-color: #ffffff;
}

.packages-grid {
    display: grid;
    /* Force 4 columns on desktop, wrap on smaller screens */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

/* Responsive Grid for Packages */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

.package-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
    /* Ensure content stacks properly */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* Fill the grid cell */
    min-height: 550px;
    /* Ensure enough height for all content */
    overflow: visible;
    /* Prevent cutting off shadows or buttons */
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.package-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.package-header .price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 15px 0;
}

.package-header p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

.package-features {
    text-align: left;
    margin-bottom: 35px;
}

.package-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
}

.package-features li i {
    color: #10b981;
    /* Green check */
}

/* Elite Package Special */
.package-card.elite {
    background: var(--bg-dark-accent);
    color: white;
    border: none;
}

.package-card.elite h3,
.package-card.elite .price,
.package-card.elite p,
.package-card.elite li {
    color: white !important;
}

.package-card.elite li i {
    color: var(--primary-color);
}

/* E-Book */
.ebook-package {
    margin-top: 80px;
    background: radial-gradient(circle at center, #1e293b, #0f172a);
    color: white;
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ebook-package::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(transparent, rgba(212, 175, 55, 0.05));
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ebook-package h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.ebook-package p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.ebook-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.ebook-details span {
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.ebook-details span:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.ebook-details span i {
    font-size: 2rem;
    color: var(--primary-color);
}

.ebook-package .btn {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

/* Books */
.books-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

/* Button Variants */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

.package-card .btn {
    width: 100%;
    margin-top: auto;
    /* Push to bottom */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
}

.book-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    width: 320px;
    transition: var(--transition);
    /* Advanced 3D Effect */
    perspective: 1500px;
    transform-style: preserve-3d;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.book-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.see-more-container {
    text-align: center;
    margin-top: 60px;
}

.btn-see-more {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--bg-dark-accent), #1e293b);
    color: white !important;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-see-more:hover {
    transform: scale(1.05) translateY(-5px);
    background: white;
    color: var(--bg-dark-accent) !important;
    border-color: var(--bg-dark-accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-see-more i {
    margin-left: 10px;
    transition: transform 0.3s;
}

.btn-see-more:hover i {
    transform: translateX(5px);
}

.book-image {
    width: 180px;
    height: 280px;
    margin: 10px auto 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 5px;
    position: relative;
    transform-style: preserve-3d;
}

/* Book Spine Effect */
.book-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 15px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.4), transparent);
    z-index: 10;
    border-radius: 5px 0 0 5px;
}

.book-card:hover .book-image {
    transform: rotateY(-20deg) rotateX(5deg) scale(1.05) translateX(-10px);
    box-shadow: 15px 20px 30px rgba(0, 0, 0, 0.25);
}

.book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.book-info .author {
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 15px;
}

.price-container {
    margin: 20px 0;
}

.discount-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-dark-accent);
}

.btn-buy {
    background: #25D366;
    color: white;
    width: 100%;
    border-radius: 10px;
    justify-content: center;
}

.btn-buy:hover {
    background: #128C7E;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Contact */
.contact-section {
    background-color: var(--bg-light);
}

.contact-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

/* Decorative top border/accent */
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.contact-form-wrapper h3 {
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.8rem;
    color: var(--bg-dark-accent);
}

.contact-form-wrapper p.form-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: white;
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-group {
    margin-bottom: 35px;
    /* Increased spacing */
}

/* Modern Light Footer - Redesigned */
footer {
    background: #ffffff;
    /* White background for logo visibility */
    color: #1e293b;
    /* Dark Slate text */
    padding: 80px 0 40px;
    font-size: 1.05rem;
    /* Bigger body font */
    border-top: 5px solid var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
    text-align: left;
    align-items: start;
}

/* Headings Typography */
.footer-column h3,
.footer-logo {
    color: #0f172a;
    /* Dark heading */
    font-family: 'Playfair Display', serif;
    /* Distinct serif font */
    font-size: 1.6rem;
    /* Much larger headings */
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.footer-desc {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 300px;
}

/* Reset Lists */
.footer-links,
.footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #475569;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    /* Bigger links */
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
    font-weight: 600;
}

.footer-contact li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.3rem;
    /* Bigger icons */
    margin-top: 2px;
}

.footer-divider {
    display: none;
    /* Removed old divider */
}

.copyright {
    display: block;
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 5px;
}


/* --- NEW E-Book Section Premium Styles --- */
.ebook-section {
    position: relative;
    background: #0f172a;
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.ebook-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.15), transparent 60%);
    pointer-events: none;
}

.ebook-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    padding: 0 20px;
}

.ebook-content {
    flex: 1;
    max-width: 600px;
}

.label-gold {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.ebook-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ebook-content .lead {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 30px;
}

.ebook-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.ebook-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.ebook-benefits i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.ebook-price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.ebook-price-tag .currency {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.ebook-price-tag .unit {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 400;
}

.btn-gold-shine {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-gold-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-gold-shine:hover::after {
    left: 100%;
}

.btn-gold-shine:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.ebook-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-icon {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@media (max-width: 900px) {
    .ebook-section .container {
        flex-direction: column;
        text-align: center;
    }

    .ebook-benefits li {
        justify-content: center;
    }

    .ebook-price-tag {
        justify-content: center;
    }

    .ebook-visual {
        display: none;
    }
}

/* --- CTA Section --- */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc, #fff);
}

.cta-box {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    filter: blur(80px);
    opacity: 0.3;
    border-radius: 50%;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.btn-call {
    background: white;
    color: var(--bg-dark);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-call:hover {
    background: #f1f5f9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* --- NEW SECTION 1: Why Choose Us --- */
.why-choose-us {
    padding: 60px 0;
    margin-top: -80px;
    /* Overlap with hero */
    position: relative;
    z-index: 10;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.glass-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-accent));
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.glass-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.glass-panel p {
    color: #64748b;
    font-size: 0.95rem;
}

/* --- NEW SECTION 2: Printing Excellence --- */
.printing-section {
    background: #f8fafc;
    padding: 100px 0;
    overflow: hidden;
}

.print-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.print-text {
    flex: 1;
}

.print-desc {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
}

.print-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.print-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--bg-dark);
}

.print-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.print-note {
    font-style: italic;
    color: #64748b;
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.print-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.book-stack {
    position: relative;
    width: 200px;
    height: 300px;
    background: #fff;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    transform: rotateY(-30deg) rotateX(10deg);
    border-radius: 5px 20px 20px 5px;
    border-left: 10px solid var(--bg-dark);
    animation: floating-stack 4s ease-in-out infinite;
}

@keyframes floating-stack {

    0%,
    100% {
        transform: rotateY(-30deg) rotateX(10deg) translateY(0);
    }

    50% {
        transform: rotateY(-30deg) rotateX(10deg) translateY(-20px);
    }
}

.book-spine {
    height: 60px;
    background: var(--primary-color);
    margin-bottom: 2px;
    width: 110%;
    transform: translateX(-10px) translateZ(20px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
    .print-layout {
        flex-direction: column;
    }

    .print-visual {
        display: none;
    }

    /* Simplify on mobile */
    .why-choose-us {
        margin-top: 0;
    }
}

/* --- NEW SECTION 3: Global Distribution --- */
.distribution-section {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.dist-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.dist-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.dist-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 40px 20px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.dist-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.dist-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    background: rgba(212, 175, 55, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.dist-item h3 {
    margin-bottom: 10px;
    color: var(--bg-dark);
}

.dist-item p {
    color: #64748b;
}

/* Update Footer to be pushed down */
/* Update Footer to be pushed down */
.footer-bottom {
    border-top: 1px solid #e2e8f0;
    /* Light border */
    padding-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    color: #64748b;
    /* Copyright text color */
}

.footer-bottom p {
    padding-top: 20px;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.developer-credit a {
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 5px;
    text-decoration: none;
    position: relative;
}

.developer-credit a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.footer-brand-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    /* filter: brightness(0) invert(1); REMOVED to show real colors */
    opacity: 1;
}

.developer-credit a:hover::after {
    width: 100%;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hamburger {
        display: block;
        z-index: 2001;
        /* Above toggle menu */
        position: relative;
        flex-shrink: 0;
        /* Prevent hamburger from shrinking */
    }

    .logo-text {
        font-size: 1.2rem;
        /* Smaller font on mobile to prevent overflow */
        line-height: 1.2;
        max-width: 200px;
        /* Limit width to force wrapping if necessary */
    }

    .logo {
        gap: 8px;
        /* Tighter gap on mobile */
        min-width: 0;
        /* Allow logo container to shrink if needed */
    }

    /* Full Screen Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 2000;
        box-shadow: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--bg-dark-accent);
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    /* Center Footer on Mobile */
    .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-links li,
    .footer-contact li {
        justify-content: center;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
    }

    .contact-info,
    .contact-form-wrapper {
        min-width: 0;
        /* Allow shrinking below 300px if needed */
        width: 100%;
        padding: 25px 15px;
        box-sizing: border-box;
    }

    .info-item {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        /* Crucial for long emails/addresses */
    }

    .info-item div {
        flex: 1;
        min-width: 0;
        /* Allow text container to shrink */
    }

    .info-item p,
    .info-item a {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Prevent any horizontal scroll from AOS */
    [data-aos] {
        overflow-x: hidden;
    }

    .contact-section .container {
        padding: 0 10px;
    }

    .contact-form-wrapper {
        padding: 20px 10px;
    }

    .contact-form-wrapper h3 {
        font-size: 1.4rem;
    }

    .info-item i {
        margin-right: 10px;
        font-size: 1.2rem;
    }
}

/* Keyframes */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, 30px) rotate(5deg);
    }
}