/* ============================================
   LENIDA BOOKS - MAIN STYLESHEET (UPDATED)
   Colors: Navy Blue (#01155F) | Deep Red (#C01C2A) | White (#FFF)
   Font: Montserrat
   Version: 4.0 - Updated Color Scheme
============================================ */

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #1a2a3f;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Color Variables - UPDATED */
:root {
    --navy-blue: #01155f;
    --navy-blue-light: #011a7a;
    --navy-blue-dark: #010e42;
    --deep-blue: #01155f;
    --deep-blue-light: #011a7a;
    --deep-blue-dark: #010e42;
    --white: #ffffff;
    --red-accent: #c01c2a;
    --red-hover: #8a141f;
    --gray-light: #f8fafc;
    --gray-border: #e2e8f0;
    --text-dark: #0f172a;
    --text-muted: #334155;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-blue);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.section-title {
    text-align: center;
    margin-bottom: 0.75rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.highlight {
    color: var(--red-accent);
    position: relative;
    display: inline-block;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--red-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--red-accent);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(192, 28, 42, 0.3);
}

.btn-primary:hover {
    background-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 28, 42, 0.4);
}

.btn-secondary {
    background-color: var(--navy-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--navy-blue-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy-blue);
    color: var(--navy-blue);
}

.btn-outline:hover {
    background: var(--navy-blue);
    color: var(--white);
    border-color: var(--navy-blue);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header & Navigation */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-border);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--red-accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--red-accent);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red-accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red-accent) 0%, #d42a3a 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--red-accent);
    font-size: 1.1rem;
}

/* Hero Image with Floating Cards */
.hero-image {
    text-align: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image img {
    max-width: 100%;
    background: transparent !important;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.floating-card i {
    color: var(--red-accent);
}

.card-1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -10px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Services Grid */
.services {
    padding: 4rem 0;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--gray-border);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--red-accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(192, 28, 42, 0.1), rgba(192, 28, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--red-accent);
    margin: 0;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--red-accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-link i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Why Section */
.why-section {
    background: var(--gray-light);
    padding: 4rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.why-item {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    transition: all 0.3s;
}

.why-item:hover {
    transform: translateX(10px);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--red-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    color: white;
    font-size: 1.5rem;
}

.why-content h4 {
    margin-bottom: 0.5rem;
    color: var(--navy-blue);
}

.why-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Testimonial Section */
.testimonial-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
    color: white;
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .author-info strong,
.testimonial-card.featured .author-info span {
    color: white;
}

.testimonial-card.featured .quote-icon i {
    color: rgba(255, 255, 255, 0.3);
}

.quote-icon i {
    font-size: 2rem;
    color: var(--navy-blue-light);
    opacity: 0.5;
    margin-bottom: 1rem;
    display: inline-block;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0;
    font-style: italic;
}

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

.author-avatar i {
    font-size: 3rem;
    color: var(--gray-border);
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Work With List */
.testimonial-card .work-with-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.testimonial-card .work-with-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    margin-left: 0;
    border-bottom: 1px solid var(--gray-border);
}

.testimonial-card .work-with-list li:last-child {
    border-bottom: none;
}

.testimonial-card .work-with-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red-accent);
    font-weight: bold;
}

/* Featured Books Section */
.featured-books {
    padding: 4rem 0;
}

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

/* Book Card Styles */
.book-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s;
    border: 1px solid var(--gray-border);
    position: relative;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.book-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--red-accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 1;
}

.book-cover {
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
    height: 220px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: bold;
}

.book-info h4 {
    margin: 0.5rem 0;
}

.author-name {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.book-rating {
    margin: 0.5rem 0;
}

.book-rating i {
    color: #f5b042;
    font-size: 0.8rem;
}

.book-rating span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* CTA Banner */
.cta-banner {
    background: var(--navy-blue);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 30px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner .btn-primary {
    background: var(--white);
    color: var(--navy-blue);
    margin: 0 0.5rem;
}

.cta-banner .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-banner .btn-outline:hover {
    background: var(--white);
    color: var(--navy-blue);
}

.cta-content {
    position: relative;
    z-index: 1;
}

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

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.cta-note i {
    margin-right: 0.25rem;
}

/* Lead Magnet */
.lead-magnet {
    background: linear-gradient(135deg, #fff0f2, #ffe4e8);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.lead-magnet-content {
    max-width: 600px;
    margin: 0 auto;
}

.lead-magnet-icon {
    width: 80px;
    height: 80px;
    background: var(--red-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.lead-magnet-icon i {
    font-size: 2.5rem;
    color: white;
    margin: 0;
}

.lead-magnet h3 {
    margin-bottom: 1rem;
}

.lead-magnet p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.guide-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.guide-features span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.guide-features i {
    color: var(--red-accent);
    margin-right: 0.25rem;
    font-size: 0.8rem;
}

.lead-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid var(--gray-border);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--red-accent);
    box-shadow: 0 0 0 3px rgba(192, 28, 42, 0.1);
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-list i {
    width: 40px;
    height: 40px;
    background: var(--red-accent);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red-accent);
    box-shadow: 0 0 0 3px rgba(192, 28, 42, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.site-footer {
    background: var(--navy-blue-dark);
    color: #cbd5e1;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-logo h3 {
    color: var(--white);
}

.footer-logo span {
    color: var(--red-accent);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--red-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--red-accent);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.newsletter form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter button {
    background: var(--red-accent);
    border: none;
    padding: 0 15px;
    border-radius: 50px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter button:hover {
    background: var(--red-hover);
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.power-statement {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.power-statement i {
    color: var(--red-accent);
    margin: 0 0.5rem;
}

/* ============================================
   ABOUT PAGE STYLES
============================================ */
.about-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.about-hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.about-hero-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.our-story {
    padding: 5rem 0;
}

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

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--red-accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.story-image {
    position: relative;
}

.story-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--red-accent);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-md);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
}

.mission-vision {
    background: var(--gray-light);
    padding: 5rem 0;
}

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

.mission-card, .vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-accent), var(--red-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3, .vision-card h3 {
    margin-bottom: 1rem;
}

.mv-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(192, 28, 42, 0.05);
    border-radius: 50%;
}

.core-values {
    padding: 5rem 0;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid var(--gray-border);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--red-accent);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(192, 28, 42, 0.1), rgba(192, 28, 42, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--red-accent);
}

.value-card h4 {
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-section {
    background: var(--gray-light);
    padding: 5rem 0;
}

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

.team-card {
    background: white;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-image i {
    font-size: 5rem;
    color: var(--navy-blue-light);
    margin-bottom: 1rem;
}

.team-card h4 {
    margin-bottom: 0.25rem;
}

.team-title {
    display: inline-block;
    color: var(--red-accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--gray-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--red-accent);
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   SERVICES PAGE STYLES
============================================ */
.services-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.services-hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.services-hero-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.service-detail-section {
    padding: 5rem 0;
}

.service-detail-section.alt-bg {
    background: var(--gray-light);
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-wrapper.reverse {
    direction: rtl;
}

.service-detail-wrapper.reverse .service-content,
.service-detail-wrapper.reverse .service-testimonial {
    direction: ltr;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red-accent), var(--red-hover));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-content h2 {
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--red-accent);
    margin-bottom: 1.5rem;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features-list {
    margin: 2rem 0;
}

.service-features-list h4 {
    margin-bottom: 1rem;
    color: var(--navy-blue);
}

.service-features-list ul {
    list-style: none;
    padding: 0;
}

.service-features-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features-list li i {
    color: var(--red-accent);
    font-size: 1rem;
}

.service-testimonial .testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-services {
    padding: 5rem 0;
    background: white;
}

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

.why-service-item {
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 20px;
    transition: all 0.3s;
}

.why-service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-service-item i {
    font-size: 2.5rem;
    color: var(--red-accent);
    margin-bottom: 1rem;
}

.why-service-item h4 {
    margin-bottom: 0.75rem;
}

.why-service-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   BOOKSTORE PAGE STYLES
============================================ */
.bookstore-hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.bookstore-hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.bookstore-hero-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.book-categories {
    padding: 2rem 0;
    background: var(--white);
    position: sticky;
    top: 80px;
    z-index: 99;
    box-shadow: var(--shadow-sm);
}

.categories-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-border);
    background: white;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark);
}

.category-btn:hover {
    border-color: var(--red-accent);
    color: var(--red-accent);
}

.category-btn.active {
    background: var(--red-accent);
    border-color: var(--red-accent);
    color: white;
}

.books-grid-section {
    padding: 4rem 0;
}

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

/* Bookstore specific book card variations */
.books-grid .book-card .book-cover {
    height: 250px;
}

.books-grid .book-card .book-cover i {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.book-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.75rem 0;
    line-height: 1.5;
}

.book-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-border);
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--red-accent);
}

.btn-buy {
    background: transparent;
    border: 2px solid var(--red-accent);
    color: var(--red-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-buy:hover {
    background: var(--red-accent);
    color: white;
}

.load-more {
    text-align: center;
    margin-top: 3rem;
}

.special-offers {
    padding: 4rem 0;
    background: var(--gray-light);
}

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

.offer-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.offer-card i {
    font-size: 2.5rem;
    color: var(--red-accent);
    margin-bottom: 1rem;
}

.offer-card h3 {
    margin-bottom: 0.5rem;
}

.offer-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.offer-link {
    color: var(--red-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-link:hover i {
    transform: translateX(5px);
}

.newsletter-section {
    padding: 4rem 0;
}

.newsletter-wrapper {
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    color: white;
}

.newsletter-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-content h3 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-content p {
    max-width: 500px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    position: relative;
    margin-bottom: 1rem;
}

.newsletter-form .form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--text-muted);
}

.newsletter-form input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    width: 100%;
    margin-top: 0.5rem;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
}

@media (max-width: 968px) {
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-wrapper.reverse {
        direction: ltr;
    }
    
    .services-hero,
    .about-hero,
    .bookstore-hero {
        padding: 3rem 0;
    }
    
    .services-hero-text,
    .about-hero-text,
    .bookstore-hero-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.3rem; }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        text-align: center;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-grid,
    .why-grid,
    .contact-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, 
    .btn-secondary, 
    .btn-outline,
    .btn-large {
        width: 100%;
        text-align: center;
    }
    
    .trust-indicators,
    .story-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .guide-features {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .services-grid,
    .books-showcase,
    .books-grid,
    .values-grid,
    .team-grid,
    .mv-grid,
    .offers-grid,
    .why-services-grid {
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .categories-filter {
        gap: 0.75rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-large i {
        font-size: 1.8rem;
    }
    
    .service-tagline {
        font-size: 1rem;
    }
    
    .experience-badge {
        bottom: -10px;
        right: -10px;
        padding: 0.75rem;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
    
    .newsletter-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .service-card,
    .testimonial-card,
    .book-card,
    .value-card,
    .team-card,
    .offer-card,
    .why-service-item,
    .mission-card,
    .vision-card {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero {
        padding: 2rem 0;
    }
    
    .lead-magnet,
    .cta-banner,
    .newsletter-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .hero-buttons,
    .cta-banner,
    .lead-magnet,
    .footer,
    .mobile-menu-btn,
    .book-categories,
    .special-offers,
    .newsletter-section,
    .team-social,
    .cta-buttons {
        display: none;
    }
    
    body {
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}