/* ========================================
   GLOBAL STYLES & VARIABLES
   ======================================== */

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --text-color: #334155;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    padding: 20px 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
}

.brand-hk {
    color: var(--primary-color);
}

.brand-rest {
    color: white;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    background: rgba(99, 102, 241, 0.2);
}

.dropdown-menu {
    background: var(--dark-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(99, 102, 241, 0.2);
    color: white;
}

/* ========================================
   HERO SECTIONS
   ======================================== */

.hero-editorial {
    min-height: 100vh;
    position: relative;
    background: url('images/banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    overflow: hidden;
}

.hero-editorial .container{
    position: relative;
    z-index: 3;
}




.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    z-index: 1;
    opacity: 0.9;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 100px;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 72px;
    color: white;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line-1,
.title-line-2,
.title-line-3 {
    display: block;
}

.title-line-2 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1e293b 100%);
    text-align: center;
}

.page-hero-title {
    font-size: 56px;
    color: white;
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   MANIFESTO SECTION
   ======================================== */

.manifesto-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.manifesto-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.05), transparent 50%);
}

.manifesto-content {
    position: relative;
    z-index: 2;
}

.manifesto-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.manifesto-item {
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.manifesto-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.15);
}

.manifesto-number {
    font-size: 60px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.manifesto-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.manifesto-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   CATEGORY NAVIGATOR
   ======================================== */

.category-navigator {
    padding: 0;
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.category-inner {
    height: 100%;
    min-height: 500px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all 0.5s ease;
}

.category-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transition: all 0.5s ease;
}

.category-card:hover .category-inner::before {
    transform: scale(1.1);
}

.category-icon {
    font-size: 48px;
    color: white;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.category-name {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.category-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.category-topics {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.category-topics li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 15px;
}

.category-link {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-link:hover {
    gap: 15px;
    color: white;
}

/* ========================================
   FEATURED BOOKS
   ======================================== */

.featured-books {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
}

.section-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.featured-book-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.featured-book-card .row{
    height: 100%;
}

.featured-book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-book-cover {
    height: 100%;
    overflow: hidden;
}

.featured-book-cover img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.featured-book-content {
    padding: 30px;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.featured-book-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.featured-book-author {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 15px;
}

.featured-book-excerpt {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.featured-book-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.featured-book-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */

.philosophy-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(to bottom, white, #f8fafc);
}

.philosophy-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.philo-shape {
    position: absolute;
    opacity: 0.05;
}

.philo-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 10%;
    left: -50px;
}

.philo-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 10%;
    right: -100px;
}

.philosophy-visual {
    position: relative;
    z-index: 2;
}

.philosophy-visual img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.philosophy-content {
    position: relative;
    z-index: 2;
}

.philosophy-title {
    font-size: 42px;
    margin-bottom: 30px;
}

.philosophy-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.philosophy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 10px;
}

/* ========================================
   SUBSCRIPTION TEASER
   ======================================== */

.subscription-teaser {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.subscription-card {
    background: white;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.subscription-icon {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.subscription-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.subscription-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-form {
    max-width: 500px;
    margin: 0 auto 20px;
}

.subscription-form .input-group {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    overflow: hidden;
}

.subscription-form .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 16px;
}

.subscription-form .form-control:focus {
    box-shadow: none;
}

.subscription-form .btn {
    padding: 15px 40px;
    border-radius: 0 50px 50px 0;
}

.subscription-note {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   EXPERIMENTAL CTA
   ======================================== */

.experimental-cta {
    padding: 120px 0;
    background: var(--light-color);
}

.cta-block {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
}

.cta-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-block:hover::before {
    width: 100%;
    opacity: 0.1;
}

.cta-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-block p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* ========================================
   FOOTER
   ======================================== */

.main-footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-brand {
    font-size: 28px;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   COOKIE CONSENT
   ======================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ========================================
   BOOK PAGES
   ======================================== */

.book-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
}

.book-cover-wrapper {
    position: relative;
}

.book-cover-large {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.book-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.book-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.book-author {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.book-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 25px;
}

.book-rating i {
    color: #f59e0b;
}

.rating-text {
    margin-left: 10px;
    color: var(--text-light);
    font-weight: 600;
}

.book-tagline {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 30px;
}

.book-meta-info {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.meta-item i {
    color: var(--primary-color);
}

.book-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.book-description,
.book-for,
.book-takeaways,
.book-sample {
    padding: 80px 0;
}

.book-desc-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 20px;
}

.for-card,
.takeaway-item {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.for-card:hover,
.takeaway-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.for-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.for-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.for-text {
    color: var(--text-light);
    line-height: 1.8;
}

.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.takeaway-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 15px;
}

.takeaway-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.takeaway-text {
    color: var(--text-light);
    line-height: 1.8;
}

.sample-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px;
    border-radius: 20px;
    color: white;
}

.sample-title {
    font-size: 32px;
    color: white;
    margin-bottom: 30px;
}

.sample-quote {
    font-size: 22px;
    line-height: 1.8;
    font-style: italic;
    border-left: 4px solid white;
    padding-left: 30px;
    margin-bottom: 20px;
}

.sample-author {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.related-books {
    padding: 80px 0;
    background: var(--light-color);
}

.related-book-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-book-content {
    padding: 30px;
}

.related-book-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.related-book-desc {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
}

/* ========================================
   ARTICLE PAGES
   ======================================== */

.article-page {
    padding-top: 80px;
}

.article-header {
    padding: 80px 0 40px;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.article-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.article-title {
    font-size: 56px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--dark-color);
}

.article-date {
    display: block;
    color: var(--text-light);
    font-size: 14px;
}

.article-stats {
    color: var(--text-light);
}

.article-featured-image {
    margin-bottom: 60px;
}

.article-featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.article-content {
    padding-bottom: 80px;
}

.article-body {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-color);
}

.article-body .lead {
    font-size: 24px;
    line-height: 1.7;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 40px;
}

.article-body h2 {
    font-size: 36px;
    margin-top: 60px;
    margin-bottom: 25px;
}

.article-body h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body p {
    margin-bottom: 25px;
}

.article-footer {
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: var(--light-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    color: var(--text-color);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.article-share span {
    font-weight: 600;
    color: var(--text-color);
}

.article-share a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: 50%;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.article-share a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.related-articles {
    margin-top: 80px;
}

.related-articles h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.related-article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-article-content {
    padding: 25px;
}

.related-category {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.related-article-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
    padding: 80px 0;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px;
    border-radius: 20px;
    color: white;
    height: 100%;
}

.contact-info-title {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-details a:hover {
    color: white;
}

.contact-hours {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hours h4 {
    font-size: 18px;
    color: white;
    margin-bottom: 15px;
}

.contact-hours p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-result {
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-result.success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-color);
    display: block;
}

.form-result.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    display: block;
}

.map-section {
    padding: 80px 0;
    background: var(--light-color);
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-contact {
    background: white;
}

/* ========================================
   SERVICES PAGE
   ======================================== */

.service-intro {
    background: white;
}

.service-intro-title {
    font-size: 42px;
    margin-bottom: 30px;
}

.service-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.service-details {
    padding: 80px 0;
    background: var(--light-color);
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-card-title {
    font-size: 32px;
    color: white;
    margin: 0;
}

.service-price {
    text-align: right;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    display: block;
    font-family: 'Space Grotesk', sans-serif;
}

.price-period {
    font-size: 16px;
    opacity: 0.9;
}

.service-card-body {
    padding: 50px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.service-features li {
    padding: 15px 0;
    display: flex;
    align-items: start;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--success-color);
    font-size: 20px;
    flex-shrink: 0;
}

.process-title {
    font-size: 24px;
    margin-bottom: 30px;
    margin-top: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.step-content h5 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.use-cases {
    padding: 80px 0;
    background: white;
}

.use-case-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.use-case-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.use-case-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.use-case-desc {
    color: var(--text-light);
    line-height: 1.8;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--light-color);
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    background: var(--light-color);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

.accordion-body {
    padding: 25px;
    line-height: 1.8;
    color: var(--text-color);
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.story-section {
    background: white;
}

.story-title {
    font-size: 38px;
    margin-bottom: 25px;
}

.story-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 20px;
}

.values-section {
    background: var(--light-color);
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.value-text {
    color: var(--text-light);
    line-height: 1.8;
}

.mission-section {
    background: white;
}

.mission-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.mission-title {
    font-size: 36px;
    color: white;
    margin-bottom: 30px;
}

.mission-statement {
    font-size: 24px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 600;
}

.mission-details {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
}

.team-section {
    background: var(--light-color);
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    width: 120px;
    height: 120px;
    display: block;
    margin: auto 20px;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.cta-section {
    padding: 80px 0;
    background: var(--light-color);
}

.cta-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-page {
    padding: 150px 0 80px;
    background: white;
}

.legal-content {
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.legal-title {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-update {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.legal-section h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.legal-section p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 20px;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-section li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--secondary-color);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    
    .page-hero-title {
        font-size: 42px;
    }
    
    .article-title {
        font-size: 40px;
    }
    
    .book-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .manifesto-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }
    
    .page-hero-title {
        font-size: 32px;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .book-title {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .philosophy-stats {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-form-wrapper,
    .legal-content {
        padding: 30px;
    }
    .subscription-card{
        padding: 20px;
    }
}




.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}