/* ============================================================
   ElitePages — Premium Book Publishing Agency
   ============================================================ */

:root {
    --primary: #fe8504;
    --primary-dark: #e57600;
    --primary-light: #fff3e4;
    --dark: #242c33;
    --dark-lighter: #2f3940;
    --dark-card: #1a2028;
    --text-body: #6b7b8d;
    --text-heading: #1a2028;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --cream: #fefcf9;
    --gold: #d4a853;
    --gold-light: #f5e6c4;
    --border: #e8ecf0;
    --shadow-sm: 0 2px 12px rgba(36, 44, 51, 0.06);
    --shadow-md: 0 8px 30px rgba(36, 44, 51, 0.1);
    --shadow-lg: 0 20px 60px rgba(36, 44, 51, 0.12);
    --shadow-orange: 0 8px 30px rgba(254, 133, 4, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --font-heading: 'Poppins', -apple-system, sans-serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
    --font-accent: 'Poppins', -apple-system, sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.25;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

.text-primary-orange { color: var(--primary) !important; }

/* === Section Defaults === */
section { padding: 100px 0; position: relative; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-badge i { font-size: 14px; }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* === Buttons === */
.btn-primary-orange {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn-primary-orange::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-primary-orange:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-primary-orange:hover::before { left: 100%; }

.btn-outline-orange {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 34px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-outline-orange:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-dark-filled {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: var(--transition);
}

.btn-dark-filled:hover {
    background: var(--dark-lighter);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1050;
}

.navbar.scrolled {
    background: #000000d1;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /*padding: 10px 0;*/
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    transition: var(--transition);
}

.navbar-brand:hover .brand-icon { transform: rotate(-8deg) scale(1.05); }

.brand-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .brand-text { color: var(--dark); }

.navbar .nav-link {
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-link { color: var(--white); }

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: calc(100% - 32px); }

.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--primary) !important; }

.btn-nav {
    padding: 10px 28px !important;
    font-size: 14px !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 12px 0;
    margin-top: 10px;
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 30px;
}

/* Hamburger */
.navbar-toggler {
    border: none;
    padding: 8px;
    width: 40px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none !important;
    box-shadow: none !important;
}

.toggler-line {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .toggler-line { background: var(--dark); }

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/homebanner.webp ') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 82%) 0%, rgb(0 0 0 / 75%) 40%, rgba(30, 45, 58, 0.7) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 133, 4, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: 2;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254, 133, 4, 0.08) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
    z-index: 2;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(254, 133, 4, 0.3);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
}

.hero-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1.5s; width: 6px; height: 6px; }
.hero-particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 3s; }
.hero-particle:nth-child(4) { top: 70%; left: 70%; animation-delay: 4.5s; width: 5px; height: 5px; }
.hero-particle:nth-child(5) { top: 40%; left: 50%; animation-delay: 2s; }
.hero-particle:nth-child(6) { top: 80%; left: 40%; animation-delay: 5s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(20px, -30px) scale(1.5); opacity: 0.7; }
    50% { transform: translate(-10px, -60px) scale(1); opacity: 0.4; }
    75% { transform: translate(15px, -20px) scale(1.3); opacity: 0.6; }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(254, 133, 4, 0.15);
    border: 1px solid rgba(254, 133, 4, 0.3);
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(254, 133, 4, 0.3);
    border-radius: 3px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 50px; }

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 4px;
    font-weight: 800;
}

.hero-stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

/* Hero Form Card */
.hero-form-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-form-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.hero-form-header h4 {
    font-size: 22px;
    margin-bottom: 6px;
}

.hero-form-header p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

.hero-form .form-control,
.hero-form .form-select {
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 13px 16px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(254, 133, 4, 0.1);
    background: var(--white);
}

.hero-form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-body);
    margin: 12px 0 0;
}

.hero-form-note i { color: var(--primary); }

/* Book Placeholder Covers (CSS-Generated) */
.book-cover-placeholder {
    width: 100%;
    aspect-ratio: 2/3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    color: white;
    position: relative;
}

.book-cover-placeholder.style-1 {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.book-cover-placeholder.style-2 {
    background: linear-gradient(145deg, #2d1b4e 0%, #4a1942 50%, #8b1a4a 100%);
}

.book-cover-placeholder.style-3 {
    background: linear-gradient(145deg, #0d2137 0%, #134e5e 50%, #1a7a6d 100%);
}

.book-cover-placeholder.style-4 {
    background: linear-gradient(145deg, #3a1c2e 0%, #6b2737 50%, #c0392b 100%);
}

.book-cover-placeholder.style-5 {
    background: linear-gradient(145deg, #1e3c72 0%, #2a5298 50%, #3b7dd8 100%);
}

.book-cover-placeholder.style-6 {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 50%, #4a6741 100%);
}

.book-cover-placeholder .cover-ornament {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto;
}

.book-cover-placeholder .cover-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

.book-cover-placeholder .cover-author {
    font-family: var(--font-accent);
    font-size: 13px;
    font-style: italic;
    opacity: 0.8;
    letter-spacing: 1px;
}

.book-cover-placeholder .cover-icon {
    font-size: 36px;
    margin-bottom: 15px;
    opacity: 0.4;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--off-white); }

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover { gap: 12px; color: var(--primary-dark); }

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-section { background: var(--white); }

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.portfolio-filter-btn {
    background: var(--off-white);
    border: 1px solid var(--border);
    color: var(--text-body);
    padding: 10px 26px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.portfolio-cover {
    aspect-ratio: 2/3;
    overflow: hidden;
}

.portfolio-cover img,
.portfolio-cover .book-cover-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover .portfolio-cover img,
.portfolio-item:hover .portfolio-cover .book-cover-placeholder {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 32, 40, 0.95) 0%, rgba(26, 32, 40, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h5 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 4px;
}

.portfolio-overlay span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose-section {
    background: linear-gradient(135deg, #0f1923 0%, #1a2a38 100%);
    color: var(--white);
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(254, 133, 4, 0.3);
    transform: translateY(-8px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(254, 133, 4, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: var(--white);
}

.why-card h5 { color: var(--white); font-size: 20px; margin-bottom: 12px; }
.why-card p { color: rgba(255, 255, 255, 0.6); font-size: 15px; margin: 0; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-section { background: var(--cream); }

.process-timeline { position: relative; padding: 0; }

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    border-radius: 3px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.process-step-content {
    width: 45%;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.process-step-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.process-step:nth-child(odd) .process-step-content { margin-right: auto; }
.process-step:nth-child(even) .process-step-content { margin-left: auto; }

.process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(254, 133, 4, 0.4);
}

.process-step-content h4 { font-size: 20px; margin-bottom: 10px; }
.process-step-content p { font-size: 15px; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--off-white); }

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.testimonial-quote {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.3;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-heading);
    line-height: 1.8;
    margin-bottom: 24px;
    font-family: var(--font-accent);
    font-size: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-author h6 { margin: 0; font-size: 16px; }
.testimonial-author span { font-size: 13px; color: var(--text-body); }

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 14px;
}

.swiper-pagination-bullet { background: var(--primary); width: 10px; height: 10px; }
.swiper-pagination-bullet-active { width: 30px; border-radius: 5px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.cta-section p { color: rgba(255, 255, 255, 0.85); font-size: 18px; }

.btn-cta-white {
    background: var(--white);
    color: var(--primary);
    padding: 16px 40px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    border: none;
    transition: var(--transition);
}

.btn-cta-white:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--white); }

.contact-info-card {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 { color: var(--white); margin-bottom: 12px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 36px; }

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(254, 133, 4, 0.15);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-info-item h6 { color: var(--white); margin-bottom: 4px; font-size: 15px; }
.contact-info-item p, .contact-info-item a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}
.contact-info-item a:hover { color: var(--primary); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 15px;
    transition: var(--transition);
    background: var(--off-white);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(254, 133, 4, 0.1);
    background: var(--white);
}

/* ============================================================
   PAGE BANNER (Inner Pages)
   ============================================================ */
.page-banner {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.9) 0%, rgba(26, 42, 56, 0.85) 100%);
    z-index: 1;
}

.page-banner::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(254, 133, 4, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    z-index: 2;
}

.page-banner .container { position: relative; z-index: 3; }

.page-banner h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 24px;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom li { color: rgba(255, 255, 255, 0.5); font-size: 14px; }
.breadcrumb-custom li a { color: var(--primary); }
.breadcrumb-custom li + li::before { content: '/'; margin-right: 8px; color: rgba(255, 255, 255, 0.3); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-section { background: var(--white); }

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-wrapper .about-visual {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a2a38, #0f1923);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.about-visual i { font-size: 80px; color: var(--primary); opacity: 0.5; }

.about-experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
}

.about-experience-badge h3 { color: var(--white); font-size: 2.5rem; margin: 0; }
.about-experience-badge p { margin: 0; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.about-list { list-style: none; padding: 0; margin-top: 24px; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
    color: var(--text-heading);
}
.about-list li i { color: var(--primary); font-size: 18px; }

.team-card {
    text-align: center;
    transition: var(--transition);
}

.team-card:hover { transform: translateY(-8px); }

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--cream));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary);
    font-weight: 700;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.team-card h5 { font-size: 18px; margin-bottom: 4px; }
.team-card span { color: var(--primary); font-size: 14px; font-weight: 500; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 24px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.pricing-card.featured:hover { transform: scale(1.05) translateY(-8px); }

.pricing-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 20px;
}

.pricing-card h4 { font-size: 22px; margin-bottom: 8px; }

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-heading);
    margin: 16px 0;
}

.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--text-body); }

.pricing-features { list-style: none; padding: 0; margin: 24px 0 32px; text-align: left; }
.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}
.pricing-features li i { color: var(--primary); font-size: 16px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-thumbnail {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.3);
}

.blog-card-body { padding: 28px; }

.blog-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.blog-card-body h5 {
    font-size: 18px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-body h5 { color: var(--primary); }

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-body);
}

.blog-meta span { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   PUBLISHING PAGE
   ============================================================ */
.platform-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--primary);
    margin: 0 auto 20px;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    color: var(--white);
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-orange);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover { background: var(--dark); transform: translateY(-4px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: rgba(255, 255, 255, 0.6); }

.footer-top { padding: 80px 0 40px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .brand-icon { background: var(--primary); color: var(--white); }
.footer-logo .brand-text { color: var(--white); font-family: var(--font-heading); font-size: 24px; font-weight: 700; }

.footer-about { font-size: 15px; line-height: 1.8; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

.footer-heading {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-links a:hover::before { width: 10px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact li i { color: var(--primary); font-size: 16px; margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--primary); }

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright { margin: 0; font-size: 14px; }

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }

/* Counter animation */
.counter-number { display: inline-block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-8px); }
}

@media (max-width: 991px) {
    section { padding: 70px 0; }

    .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 12px;
        box-shadow: var(--shadow-lg);
    }

    .navbar-collapse .nav-link { color: var(--dark) !important; }
    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link.active { color: var(--primary) !important; }

    .navbar .nav-link { padding: 12px 16px !important; }
    .navbar .nav-link::after { display: none; }

    .hero-section { min-height: auto; padding: 140px 0 80px; }
    .hero-form-card { margin-top: 40px; }
    .hero-stats { gap: 24px; }
    .hero-stat-item h3 { font-size: 1.6rem; }

    .process-timeline::before { left: 24px; }
    .process-step { flex-direction: column; }
    .process-step-content { width: 100%; margin-left: 60px !important; margin-right: 0 !important; }
    .process-number { left: 24px; top: 30px; transform: none; width: 48px; height: 48px; font-size: 18px; }

    .hero-form-card { padding: 28px 24px; }
}

@media (max-width: 767px) {
    section { padding: 60px 0; }

    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 16px; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }

    .hero-form-header h4 { font-size: 19px; }

    .section-title { font-size: 1.8rem; }

    .contact-info-card, .contact-form-card { padding: 32px 24px; }

    .footer-bottom { text-align: center; }
    .footer-bottom-links { justify-content: center; margin-top: 12px; }

    .whatsapp-btn { bottom: 20px; left: 20px; width: 48px; height: 48px; font-size: 24px; }
    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 575px) {
    .hero-section { padding: 120px 0 60px; }

    .portfolio-filter-btn { padding: 8px 18px; font-size: 13px; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.bg-dark-section { background: linear-gradient(135deg, #0f1923 0%, #1a2a38 100%); }
.bg-cream { background: var(--cream); }
.bg-off-white { background: var(--off-white); }
.text-gold { color: var(--gold); }
.fw-heading { font-family: var(--font-heading); }
.fw-accent { font-family: var(--font-accent); }

.decorated-heading {
    position: relative;
    display: inline-block;
}

.decorated-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-top: 12px;
}

.text-center .decorated-heading::after { margin-left: auto; margin-right: auto; }



/* ============================================================
   BOOKS LANDING PAGE
   ============================================================ */

/* --- Hero --- */
.books-hero {
    position: relative;
    background: var(--dark);
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.books-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/lp-banner.jpg') center/cover no-repeat;
    z-index: 0;
}

.books-hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 73%);
    z-index: 1;
}

.books-hero .container { position: relative; z-index: 2; }

.books-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(254, 133, 4, 0.15);
    border: 1px solid rgba(254, 133, 4, 0.4);
    color: var(--primary);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.books-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.books-hero-content h1 span { color: var(--primary); }

.books-hero-content > p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.books-hero-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.books-hero-checks li {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.books-hero-checks li i { color: var(--primary); font-size: 16px; }

.books-hero-trusted {
    color: #fff;
    font-size: 15px;
    margin-bottom: 24px;
    padding-top: 10px;
}

.books-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.books-hero-btns .btn { font-size: 14px; padding: 12px 24px; font-weight: 600; }

/* Hero book cover */
.books-hero-covers {
    text-align: center;
}

.books-cover-main {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px rgba(254, 133, 4, 0.15);
    transform: perspective(600px) rotateY(-5deg);
    transition: transform 0.4s ease;
}

.books-cover-main:hover {
    transform: perspective(600px) rotateY(0deg);
}

/* Hero form */
.books-hero-form {
    background: var(--primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(254, 133, 4, 0.3);
}

.books-form-header {
    text-align: center;
    padding: 24px 24px 16px;
}

.books-form-header h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
}

.books-hero-form form {
    padding: 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.books-hero-form .form-control {
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    background: #fff;
}

.books-hero-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.btn-books-submit {
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-books-submit:hover {
    background: #1a2028;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* --- Partners --- */
.books-partners {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.books-partners h3 {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--dark);
    margin: 0;
}

.books-partners-logos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #999;
    font-size: 13px;
    font-weight: 500;
}

.partner-logo i {
    font-size: 36px;
    color: var(--primary);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover i { opacity: 1; }

/* --- Why Choose --- */
.books-why {
    position: relative;
    padding: 100px 0;
    background: var(--dark);
    overflow: hidden;
}

.books-why-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f1923 0%, #1a2a38 100%);
}

.books-why .container { position: relative; z-index: 2; }

.books-why h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}

.books-why > .container > .row > .col-lg-6:first-child > p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.books-why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.books-why-list li {
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.books-why-list li i { color: var(--primary); font-size: 18px; }

.books-why-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.books-why-btns .btn { font-weight: 600; }

/* --- Services --- */
.books-services {
    padding: 100px 0;
    background: #fff;
}

.books-services h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.books-section-sub {
    color: var(--text-body);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.books-service-card {
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.books-service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(254, 133, 4, 0.12);
}

.books-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 28px;
    transition: all 0.3s ease;
}

.books-service-card:hover .books-service-icon {
    background: var(--primary);
    color: #fff;
}

.books-service-card h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.books-service-card p {
    color: var(--text-body);
    font-size: 14px;
    margin: 0;
}

/* --- Showcase --- */
.books-showcase {
    padding: 100px 0;
    background: var(--off-white);
}

.books-showcase h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.books-showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.books-showcase-item img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
    aspect-ratio: 2/3;
    object-fit: cover;
}

.books-showcase-item:hover img {
    transform: translateY(-10px) scale(1.03);
}

/* --- Pricing --- */
.books-pricing {
    padding: 100px 0;
    background: #fff;
}

.books-pricing h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.books-pricing-card {
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.books-pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(254, 133, 4, 0.15);
    transform: scale(1.05);
}

.books-pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.books-pricing-discount {
    display: inline-block;
    background: #d4edda;
    color: #155724;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.books-pricing-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.books-pricing-price {
    margin-bottom: 28px;
}

.books-price-original {
    text-decoration: line-through;
    color: var(--text-body);
    font-size: 18px;
    margin-right: 8px;
}

.books-price-current {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.books-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
    flex-grow: 1;
}

.books-pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.books-pricing-features li i { color: var(--primary); font-size: 14px; flex-shrink: 0; }

/* --- Testimonials --- */
.books-testimonials {
    padding: 100px 0;
    background: var(--off-white);
}

.books-testimonials h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.books-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.books-testimonial-stars { margin-bottom: 16px; }
.books-testimonial-stars i { color: #f5a623; font-size: 16px; }

.books-testimonial-card p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.books-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.books-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.books-testimonial-author h6 {
    margin: 0;
    font-weight: 700;
    font-size: 15px;
}

.books-testimonial-author span {
    font-size: 13px;
    color: var(--text-body);
}

/* --- FAQ --- */
.books-faq {
    padding: 100px 0;
    background: #fff;
}

.books-faq h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 40px;
}

.books-faq-item {
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.books-faq-item .accordion-button {
    font-weight: 600;
    font-size: 16px;
    padding: 20px 24px;
    color: var(--dark);
    background: #fff;
}

.books-faq-item .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

.books-faq-item .accordion-body {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    padding: 16px 24px 24px;
}

/* --- CTA --- */
.books-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1923 0%, #1a2a38 100%);
}

.books-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
}

.books-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.books-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.books-cta-btns .btn { font-weight: 600; }

/* --- Books Page Responsive --- */
@media (max-width: 991px) {
    .books-hero { padding: 100px 0 60px; min-height: auto; }
    .books-hero-content h1 { font-size: 2rem; }
    .books-showcase-grid { grid-template-columns: repeat(3, 1fr); }
    .books-pricing-card.featured { transform: none; }
    .books-partners h3 { margin-bottom: 24px; text-align: center; }
    .books-partners-logos { justify-content: center; }
}

@media (max-width: 767px) {
    .books-hero { padding: 90px 0 50px; }
    .books-hero-content h1 { font-size: 1.8rem; }
    .books-hero-btns { flex-direction: column; }
    .books-hero-btns .btn { width: 100%; text-align: center; }
    .books-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .books-why-btns { flex-direction: column; }
    .books-why-btns .btn { width: 100%; text-align: center; }
    .books-cta-btns { flex-direction: column; align-items: center; }
    .books-cta-btns .btn { width: 100%; max-width: 320px; }
    .books-form-header h4 { font-size: 17px; }
}
