
/* ==========================================
   CSS Reset & Base Styles
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ==========================================
   Blog Styles
   ========================================== */

/* Blog Main Layout */
.blog-main {
    margin-top: 73px;
}

/* Blog Hero Section */
.blog-hero-section {
    padding: 0 0 20px 0;
    text-align: left;
}

.blog-hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.blog-hero-title {
    font-family: 'Corinthia', cursive;
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 20px;
}

.blog-hero-description {
    font-size: 1.2rem;
    color: var(--primary);
    max-width: 600px;
    margin: 0;
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 0;
}

.blog-posts-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Featured Blog Post */
.blog-post.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-post.featured .blog-post-image {
    position: relative;
    height: 100%;
    display: flex;
}

.blog-post.featured .post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-post.featured .blog-post-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Regular Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-post {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
    position: relative;
    overflow: hidden;
}

.post-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 30px;
}

.post-category {
    display: inline-block;
    background: var(--primary-10);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.post-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-post.featured .post-title {
    font-size: 2rem;
}

.post-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #888;
}

.post-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.post-link:hover {
    color: var(--accent);
}

.post-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.post-link:hover svg {
    transform: translateX(3px);
}

/* Load More Button */
.blog-load-more {
    text-align: center;
    margin-top: 40px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 80px 0;
    color: white;
}

.newsletter-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.newsletter-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    outline: none;
}

.newsletter-btn {
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    white-space: nowrap;
}

/* Blog Post Page Styles */
.blog-post-main {
    margin-top: 73px;
}

.blog-breadcrumb {
    padding: 5px 0;
}

.blog-breadcrumb-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--accent);
}

.breadcrumb-link svg {
    width: 16px;
    height: 16px;
}

/* Article Layout */
.blog-article {
    background: white;
}

.article-header {
    padding: 60px 0;
}

.article-header-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.article-category {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
}

.article-meta-details {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.article-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Article Content */
.article-content {
    padding: 80px 0;
}

.article-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.article-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 40px;
    padding: 30px;
    background: var(--accent-bg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
}

.article-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    margin: 50px 0 25px 0;
}

.article-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin: 40px 0 20px 0;
}

.article-text p {
    margin-bottom: 25px;
}

.article-text ul, .article-text ol {
    margin: 25px 0;
    padding-left: 30px;
}

.article-text li {
    margin-bottom: 10px;
}

.article-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary);
    text-align: center;
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-10) 0%, var(--accent-bg) 100%);
    border-radius: var(--radius-lg);
    position: relative;
}

.article-quote:before {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: -10px;
    left: 30px;
    font-family: serif;
}

.article-tip {
    background: var(--neutral-60);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin: 40px 0;
    border-left: 4px solid var(--accent);
}

.article-tip h4 {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Author Bio */
.article-author {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: var(--accent-bg);
    border-radius: var(--radius-lg);
    margin: 60px 0;
    align-items: center;
}

.author-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.author-title {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.author-bio {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.author-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.author-cta:hover {
    background: var(--accent);
}

/* Share Section */
.article-share {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #eee;
}

.article-share h4 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.share-btn.facebook { background: #1877F2; color: white; }
.share-btn.twitter { background: #1DA1F2; color: white; }
.share-btn.linkedin { background: #0A66C2; color: white; }
.share-btn.copy-link { background: var(--primary); color: white; }

.share-btn svg {
    width: 20px;
    height: 20px;
}

/* Related Posts */
.related-posts {
    padding: 80px 0;
    background: var(--accent-bg);
}

.related-posts-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.related-posts-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* ==========================================
   Privacy Policy Styles
   ========================================== */

.privacy-main {
    margin-top: 73px;
    padding: 60px 0;
    background: var(--background);
    min-height: calc(100vh - 73px);
}

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

.privacy-title {
    font-family: 'Corinthia', cursive;
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}

.privacy-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.privacy-intro {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 40px;
    padding: 30px;
    background: var(--accent-bg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent);
}

.privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-10);
}

.privacy-content p {
    margin-bottom: 20px;
}

.privacy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-content li {
    margin-bottom: 10px;
}

.privacy-contact {
    background: var(--neutral-60);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 20px 0;
    border-left: 4px solid var(--accent);
}

.privacy-date {
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--primary-10);
}

/* ==========================================
   Cookie Consent Banner
   ========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    color: var(--text);
    padding: 25px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--primary);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-content {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.cookie-banner-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.cookie-banner-text a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: var(--primary);
}

.cookie-banner-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent);
    color: white;
}

.cookie-btn-accept:hover {
    background: #E65B59;
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--light-border);
}

.cookie-btn-decline:hover {
    background: var(--light-gray);
    color: var(--text);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-muted);
    text-decoration: underline;
    border: none;
    padding: 12px;
    font-size: 0.85rem;
}

.cookie-btn-settings:hover {
    color: var(--primary);
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        max-width: 250px;
    }

    .privacy-title {
        font-size: 2.5rem;
    }

    .privacy-content {
        font-size: 0.95rem;
    }
}

/* ==========================================
   Cookie Settings Modal
   ========================================== */

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.cookie-modal-header {
    padding: 25px 30px 20px;
    border-bottom: 1px solid var(--light-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    color: var(--text);
}

.cookie-modal-body {
    padding: 20px 30px;
    max-height: 400px;
    overflow-y: auto;
}

.cookie-modal-intro {
    margin-bottom: 25px;
    color: var(--text-muted);
    line-height: 1.6;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid var(--light-border);
    border-radius: var(--radius-sm);
    background: var(--light-gray);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.cookie-category-desc {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Toggle Switch Styles */
.cookie-toggle-container {
    position: relative;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    background: var(--light-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle:not(.disabled):hover {
    background: #ddd;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked + .cookie-toggle {
    background: var(--primary);
}

input[type="checkbox"]:checked + .cookie-toggle .cookie-toggle-slider {
    transform: translateX(26px);
}

input[type="checkbox"]:disabled + .cookie-toggle {
    background: var(--primary);
    opacity: 0.7;
}

.cookie-modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid var(--light-border);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--light-border);
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn-secondary:hover {
    background: var(--light-gray);
    color: var(--text);
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .cookie-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-btn-secondary,
    .cookie-btn-accept {
        width: 100%;
        text-align: center;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2.5rem;
    }

    .blog-hero-description {
        font-size: 1rem;
    }

    .blog-post.featured {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .blog-post.featured .blog-post-content {
        padding: 30px;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
    }

    .article-author {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-btn {
        width: 100%;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CSS Variables
   ========================================== */

:root {
    --primary: #8A737D;
    --accent: #F87472;
    --primary-10: rgba(210, 196, 196, 0.30);
    --neutral-60: rgba(249, 219, 193, 0.60);
    --neutral-2-60: rgba(210, 196, 196, 0.60);
    --text: #33312E;
    --background: #F9F6F3;
    --accent-bg: #FDF4EC;

    --container-width: 1200px;

    /* Unified border-radius system */
    --radius-sm: 8px;      /* inputs, small elements */
    --radius-md: 16px;     /* cards, tiles, images */
    --radius-lg: 20px;     /* large containers, modals */
    --radius-pill: 50px;   /* buttons, pills */
    --border-radius: var(--radius-lg); /* legacy - use radius-lg */
}

/* ==========================================
   Base Typography & Body
   ========================================== */

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.8;
    overflow-x: hidden;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

/* ==========================================
   Header & Navigation
   ========================================== */

.header {
    width: 100%;
    background: #e9e3e0;
    position: relative;
    z-index: 100;
    height: 73px;
    overflow: visible;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #e9e3e0;
    backdrop-filter: blur(10px);
}

.header.sticky .logo {
    width: 90px;
    height: 90px;
}

.header.sticky .menu-strip {
    height: 60px;
}

/* Menu Strip - the colored bar behind navigation */
.menu-strip {
    width: 100%;
    height: 73px;
    background: rgba(138, 115, 125, 0.30);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.nav-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 20px;
    gap: 0;
    position: relative;
    height: 73px;
    z-index: 1;
}

.menu-left,
.menu-right {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 73px;
}

.menu-left {
    justify-content: flex-end;
    padding-right: 80px;
}

.menu-right {
    justify-content: flex-start;
    padding-left: 80px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    padding: 0 20px;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    transform: translateY(-10px);
}

.nav-link:hover {
    color: var(--accent);
}


/* Logo - positioned to overlap strip (half on, half off) */
.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Position logo to extend beyond the strip */
    margin-top: 5px;
    margin-bottom: -25px;
}

.logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #FEFBF9;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    display: block;
}

/* Hamburger Menu Button (Mobile Only) */
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-icon,
.close-icon {
    position: absolute;
    width: 28px;
    height: 28px;
    color: var(--text);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Domyślnie - pokaż hamburger, ukryj X */
.hamburger-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.close-icon {
    opacity: 0;
    transform: rotate(90deg);
}

/* Po kliknięciu - ukryj hamburger, pokaż X */
.hamburger.active .hamburger-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

.hamburger.active .close-icon {
    opacity: 1;
    transform: rotate(0deg);
}

/* Mobile Menu - Hidden on Desktop */
.mobile-menu {
    display: none;
}

/* ==========================================
   Hero Section
   ========================================== */

.hero-section {
    width: 100%;
    padding: 80px 20px 96px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/background1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}

.hero-title .highlight {
    color: var(--primary);
    font-weight: 700;
}

.hero-lead {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
    max-width: 65ch;
}

.hero-lead p {
    margin-bottom: 20px;
}

.hero-lead p:last-child {
    margin-bottom: 0;
}

/* Hero Image */
.hero-image-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 29px;
    align-items: center;
}

.hero-image-container {
    width: 100%;
    max-width: 393px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.hero-caption {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.hero-name {
    font-family: 'Corinthia', cursive;
    font-size: 40px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(248, 116, 114, 0.3);
}

.btn-primary:hover {
    background: #E65B59;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 116, 114, 0.4);
}

.btn-primary i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 115, 125, 0.3);
}

/* ==========================================
   Quote Section - "Czy wiesz, że..."
   ========================================== */

.quote-section {
    width: 100%;
    background-color: var(--background);
}

.quote-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 96px 360px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Background image z opacity 10% */
.quote-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/motylki.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

/* Tekst nad tłem */
.quote-subtitle,
.quote-main {
    position: relative;
    z-index: 1;
}

.quote-subtitle {
    font-family: 'Corinthia', cursive;
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    color: var(--primary);
    text-align: center;
}

.quote-main {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 500;
    color: var(--text);
    text-align: center;
    padding: 0 30px;
    white-space: nowrap;
}

/* ==========================================
   Sessions Section - "W trakcie naszych spotkań"
   ========================================== */

.sessions-section {
    width: 100%;
    background-color: #FDFBF6;
    padding: 96px 0;
}

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

.sessions-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    width: 100%;
}

.sessions-text {
    width: 584px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sessions-title {
    font-family: 'Corinthia', cursive;
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
    color: var(--primary);
}

.sessions-description {
    font-family: 'Poppins', sans-serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 60px;
    color: var(--text);
}

.sessions-description .highlight-bold {
    color: var(--primary);
    font-weight: 700;
}

.sessions-images {
    width: 584px;
    flex-shrink: 0;
    display: flex;
    gap: 32px;
}

.sessions-img {
    width: 276px;
    height: 317px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sessions-img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   Testimonials Section - "Co mówią o mnie Klientki?"
   ========================================== */

.testimonials-section {
    width: 100%;
    padding: 96px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/background1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.testimonials-title {
    font-family: 'Corinthia', cursive;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary);
    text-align: center;
}

.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
    padding: 60px 80px;
    background: var(--accent-bg);
    border-radius: var(--radius-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    max-width: 600px;
}

.testimonial-author {
    font-family: 'Corinthia', cursive;
    font-size: 28px;
    font-weight: 400;
    color: var(--primary);
}

/* Navigation Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-arrow:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow:hover i {
    color: white;
}

.testimonial-arrow i {
    width: 24px;
    height: 24px;
    color: var(--accent);
    transition: color 0.3s ease;
}

.testimonial-arrow.prev {
    left: 30px;
}

.testimonial-arrow.next {
    right: 30px;
}

/* Dots Navigation */
.testimonials-dots {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-2-60);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: var(--accent);
    transform: scale(1.2);
}

.dot.active {
    background: var(--accent);
    width: 32px;
    border-radius: 6px;
}

/* ==========================================
   CTA Section
   ========================================== */

.cta-section {
    width: 100%;
    background-color: var(--accent-bg); /* Jasnobeżowe tło */
    padding: 80px 20px;
    position: relative;
    overflow: hidden; /* Prevent illustration from overflowing on small screens */
}

.cta-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: 0 15px 35px rgba(138, 115, 125, 0.2);
    z-index: 2;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    color: white;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/cta-bg.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.cta-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(138, 115, 125, 0.8); /* Nakładka kolorystyczna (var(--primary) with alpha) */
    z-index: -1;
}

.cta-title {
    font-family: 'Corinthia', cursive;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    margin: 0;
}

.cta-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
}

/* CTA Section button hover override */
.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    border-color: white;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments for the new CTA */
@media (max-width: 900px) {
    .cta-section {
        padding: 50px 15px;
    }

    .cta-container {
        padding: 0;
    }

    .cta-card {
        padding: 40px 25px;
        border-radius: var(--radius-lg);
        gap: 20px;
    }

    .cta-title {
        font-size: 38px;
    }

    .cta-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .cta-buttons {
        width: 100%;
        margin-top: 10px;
    }

    .cta-section .btn-primary {
        width: 100%;
        max-width: 250px;
        padding: 14px 24px;
        font-size: 15px;
        white-space: nowrap;
    }
}

/* ==========================================
   Floating CTA Button
   ========================================== */

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--accent);
    color: white;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(248, 116, 114, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta:hover {
    background: #E65B59;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(248, 116, 114, 0.5);
}

.floating-cta i {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.floating-cta span {
    white-space: nowrap;
}

/* ==========================================
   Pricing Section - "Oferta"
   ========================================== */

.pricing-section {
    width: 100%;
    background-color: var(--background);
    padding: 96px 0;
}

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

.pricing-main-title {
    font-family: 'Corinthia', cursive;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary);
    text-align: center;
    margin-bottom: 64px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    background: #FDFBF6;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--accent);
    box-shadow: 0 10px 30px rgba(138, 115, 125, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    z-index: 5;
    transform: rotate(15deg);
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(248, 116, 114, 0.4);
}

.pricing-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 auto 20px;
}

.pricing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-img {
    transform: scale(1.05);
}

.pricing-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    margin: 0;
}

.pricing-price {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 0;
}

.pricing-description {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    text-align: center;
    margin: 0;
}

.pricing-benefits {
    background: var(--accent-bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 10px 0;
}

.benefits-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 12px 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefits-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    padding-left: 25px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    animation: gentle-float 2s ease-in-out infinite;
}

.pricing-card:hover .benefits-list li::before {
    animation: none;
    transform: scale(1.2);
}

.pricing-duration {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    text-align: center;
    margin: 10px 0 0 0;
    padding-top: 15px;
    border-top: 1px solid rgba(51, 49, 46, 0.1);
}

.pricing-duration strong {
    color: var(--primary);
    font-weight: 600;
}

.pricing-cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

/* ==========================================
   Contact Section - "Kontakt"
   ========================================== */

.contact-section {
    width: 100%;
    background-color: var(--background);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/Background-Kontakt.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    justify-content: space-between;
}

/* Left Column - Image & Contact Info */
.contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Compact Profile */
.contact-profile-compact {
    display: flex;
    gap: 24px;
    align-items: center;
}

.profile-img-small {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.profile-info-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-name-compact {
    font-family: 'Corinthia', cursive;
    font-size: 40px;
    font-weight: 400;
    color: var(--primary);
    margin: 0;
}

.profile-title-compact {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.profile-tagline-compact {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: var(--primary);
    margin: 0;
}

/* New Contact Section */
.contact-content-new {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Contact Profile */
.contact-profile {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(138, 115, 125, 0.2);
}

.contact-profile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-profile-name {
    font-family: 'Corinthia', cursive;
    font-size: 48px;
    font-weight: 400;
    color: var(--primary);
    margin: 0;
    line-height: 1.1;
}

.contact-profile-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.contact-profile-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: var(--primary);
    margin: 0;
}

.contact-description {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    border-radius: var(--radius-lg);
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-btn-phone {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
}

.contact-btn-phone:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(138, 115, 125, 0.3);
}

.contact-btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.contact-btn-whatsapp:hover {
    background: transparent;
    color: #25D366;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Contact Form */
.contact-form-column {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: 0 20px 60px rgba(138, 115, 125, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.form-group label .optional {
    font-weight: 400;
    color: #999;
}

.form-group input,
.form-group textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 16px 20px;
    border: 2px solid #E8E4E6;
    border-radius: var(--radius-sm);
    background: #FAFAFA;
    color: var(--text);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(138, 115, 125, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #AAA;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.form-checkbox {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.form-group.form-checkbox input[type="checkbox"] {
    display: block !important;
    position: relative;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px;
    min-height: 24px;
    margin: 0;
    padding: 0;
    border: 2px solid var(--primary);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group.form-checkbox input[type="checkbox"]:checked {
    background: var(--primary);
}

.form-group.form-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.form-group.form-checkbox label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    cursor: pointer;
    line-height: 1.7;
}

.form-group.form-checkbox label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit:hover {
    background: #6B5B63;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(138, 115, 125, 0.4);
}

.form-submit i {
    width: 20px;
    height: 20px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success i {
    width: 60px;
    height: 60px;
    color: #25D366;
    margin-bottom: 20px;
}

.form-success p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--text);
    margin: 0;
}

/* Responsive Contact Section */
@media (max-width: 900px) {
    .contact-section {
        padding: 50px 0;
        overflow-x: hidden;
        width: 100%;
    }

    .contact-container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-content-new {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
        width: 100%;
    }

    .contact-info-column {
        text-align: center;
        align-items: center;
        max-width: 100%;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .contact-profile {
        flex-direction: column;
        text-align: center;
    }

    .contact-profile-img {
        width: 100px;
        height: 100px;
    }

    .contact-profile-info {
        align-items: center;
    }

    .contact-profile-name {
        font-size: 26px;
        word-wrap: break-word;
    }

    .contact-profile-title {
        font-size: 14px;
    }

    .contact-profile-tagline {
        font-size: 13px;
    }

    .contact-description {
        font-size: 14px;
        padding: 0;
    }

    .contact-buttons {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 12px;
        padding: 0;
        box-sizing: border-box;
    }

    .contact-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
        padding: 16px 20px;
        font-size: 15px;
    }

    .contact-form-column {
        padding: 20px 15px;
        border-radius: var(--radius-sm);
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .contact-form {
        gap: 18px;
    }

    .form-group {
        max-width: 100%;
        width: 100%;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .form-group.form-checkbox {
        gap: 10px;
    }

    .form-group.form-checkbox label {
        font-size: 12px;
        line-height: 1.4;
    }

    .form-submit {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
        box-sizing: border-box;
    }
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    width: 100%;
    background: linear-gradient(135deg, #8A737D 0%, #A89098 100%);
    color: white;
    padding: 25px 0;
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FEFBF9;
    padding: 0;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-nav {
    display: flex;
    gap: 25px;
    flex: 1; /* Allow nav to grow */
    justify-content: center; /* Center nav links */
}

.footer-nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-contact {
    display: flex;
    gap: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: white;
}

.footer-contact-item i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Copyright Bar */
.footer-copyright {
    padding-top: 20px;
    text-align: center;
}

.footer-copyright p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0;
}

.footer-author {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-author:hover {
    color: white;
    text-decoration: underline;
}

/* ==========================================
   Help Section - "W czym mogę Ci pomóc?"
   ========================================== */

.help-section {
    width: 100%;
    background-color: var(--accent-bg);
    padding: 64px 20px 96px;
}

.help-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Title */
.help-title {
    font-family: 'Corinthia', cursive;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary);
    text-align: left;
    flex-shrink: 0;
}

/* First Row: Title + 2 Cards */
.help-row-1 {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 32px;
}

.help-cards-group {
    display: flex;
    gap: 37px;
    flex: 1;
}

.help-cards-group .help-card {
    flex: 1;
    height: 200px;
}

/* Second Row: 3 Columns */
.help-row-2 {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.help-column-left,
.help-column-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.help-column-left .help-card,
.help-column-right .help-card {
    flex: 1;
}

/* Help Cards Styling */
.help-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.help-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    flex-shrink: 0;
}

.help-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

.help-card p strong {
    color: var(--primary);
    font-weight: 700;
    position: relative;
}

.help-card.beige {
    background: var(--neutral-60);
}

.help-card.gray {
    background: var(--primary-10);
}

.help-card.gray-light {
    background: var(--neutral-2-60);
}

/* Image Grid - 2x2 with specific heights */
.help-images {
    width: 372px;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.help-img {
    width: 170px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.help-img:hover {
    transform: scale(1.05);
}

/* Specific image heights and positioning */
.help-img:nth-child(1) {
    height: 173px;
}

.help-img:nth-child(2) {
    height: 245px;
    align-self: flex-end;
}

.help-img:nth-child(3) {
    height: 248px;
    margin-top: -72px;
}

.help-img:nth-child(4) {
    height: 176px;
}

/* ==========================================
   Animations
   ========================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse animation for primary CTAs */
@keyframes subtle-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(248, 116, 114, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(248, 116, 114, 0.5);
    }
}

.btn-primary:not(:hover) {
    animation: subtle-pulse 3s ease-in-out infinite;
}

/* Subtle float animation for icons */
@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.help-icon {
    animation: gentle-float 3s ease-in-out infinite;
}

.help-card:hover .help-icon {
    animation: none;
    transform: scale(1.1);
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================
   Responsive Design - Tablet
   ========================================== */

@media (max-width: 1199px) {
    :root {
        --container-width: 100%;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-name {
        font-size: 45px;
    }

    .help-title {
        font-size: 42px;
    }

    /* Quote Section */
    .quote-container {
        padding: 80px 100px;
    }

    .quote-subtitle {
        font-size: 42px;
        line-height: 42px;
    }

    .quote-main {
        font-size: 38px;
    }

    /* Sessions Section */
    .sessions-container {
        padding: 0 40px;
    }

    .sessions-content {
        gap: 24px;
    }

    .sessions-text {
        width: auto;
        flex: 1;
    }

    .sessions-title {
        font-size: 42px;
        line-height: 42px;
    }

    .sessions-description {
        font-size: 38px;
        line-height: 50px;
    }

    .sessions-images {
        width: auto;
        flex: 1;
        gap: 24px;
    }

    .sessions-img {
        width: auto;
        height: 250px;
        flex: 1;
    }

    /* Testimonials Section */
    .testimonials-title {
        font-size: 42px;
    }

    .testimonial-slide {
        padding: 50px 60px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .testimonial-author {
        font-size: 24px;
    }

    .testimonial-arrow.prev {
        left: 10px;
    }

    .testimonial-arrow.next {
        right: 10px;
    }

    /* Pricing Section */
    .pricing-main-title {
        font-size: 42px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-image-wrapper {
        width: 250px;
        height: 250px;
    }

    /* Contact Section */
    .contact-content {
        gap: 40px;
    }

    .contact-title {
        font-size: 42px;
    }

    .contact-description {
        font-size: 18px;
    }

    .contact-quote .quote-text {
        font-size: 28px;
    }

    .profile-img-small {
        width: 100px;
        height: 100px;
    }

    .profile-name-compact {
        font-size: 30px;
    }

    .profile-title-compact {
        font-size: 15px;
    }

    .profile-tagline-compact {
        font-size: 13px;
    }

    /* Adjust help section for tablet */
    .help-row-1 {
        gap: 40px;
    }

    .help-row-2 {
        gap: 24px;
    }

    .help-images {
        width: 300px;
        gap: 24px;
    }

    .help-img {
        width: 134px;
    }

    .help-img:nth-child(1) {
        height: 136px;
    }

    .help-img:nth-child(2) {
        height: 192px;
    }

    .help-img:nth-child(3) {
        height: 195px;
        margin-top: -56px;
    }

    .help-img:nth-child(4) {
        height: 138px;
    }

    /* Footer */
    .footer-content {
        gap: 40px;
    }

    .footer-heading {
        font-size: 24px;
    }

    .footer-links a,
    .footer-contact-item {
        font-size: 14px;
    }
}

/* ==========================================
   Responsive Design - Mobile
   ========================================== */

@media (max-width: 768px) {
    /* Menu Strip */
    .menu-strip {
        height: 73px;
        padding: 0;
    }

    /* Show Hamburger on Mobile */
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 30;
    }

    /* Navigation - Simple Center Layout */
    .nav-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0;
        height: 73px;
        position: relative;
    }

    /* Hide desktop menus on mobile */
    .menu-left,
    .menu-right {
        display: none;
    }

    /* Logo */
    .logo-container {
        width: 100px;
        height: 100px;
        margin-top: 5px;
        margin-bottom: -28px;
        z-index: 25;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    /* Mobile Menu */
    .mobile-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: var(--background);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        z-index: 15;
    }

    .mobile-menu.active {
        max-height: 300px;
        opacity: 1;
        padding: 20px 0;
    }

    .mobile-nav-link {
        font-family: 'Poppins', sans-serif;
        color: var(--text);
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        transition: background 0.3s ease;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        background: rgba(138, 115, 125, 0.1);
    }

    /* Sticky Header Adjustments */
    .header.sticky .logo {
        width: 80px;
        height: 80px;
    }

    .header.sticky .logo-container {
        margin-top: 0;
        margin-bottom: -20px;
    }

    .header.sticky .menu-strip {
        height: 60px;
    }

    .header.sticky .nav-container {
        height: 60px;
    }

    .header.sticky .hamburger {
        top: 50%;
    }

    .header.sticky .mobile-menu {
        top: 60px;
    }

    /* Hero Section */
    .hero-section {
        padding: 30px 15px 50px;
        overflow: hidden;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        max-width: 100%;
    }

    /* Image wrapper - keep as block, reorder with flexbox */
    .hero-image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
        width: 100%;
        max-width: 280px;
        gap: 20px;
    }

    .hero-image-container {
        width: 100%;
        max-width: 280px;
    }

    .hero-image-container img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: contain;
    }

    .hero-caption {
        text-align: center;
        width: 100%;
    }

    .hero-name {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-text {
        order: 2;
        text-align: center;
        width: 100%;
        padding: 0 5px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-lead {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-lead p {
        margin-bottom: 12px;
    }

    .hero-cta {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-cta .btn-primary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Quote Section */
    .quote-container {
        padding: 50px 15px;
        gap: 30px;
    }

    .quote-subtitle {
        font-size: 32px;
        line-height: 1.2;
    }

    .quote-main {
        font-size: 20px;
        padding: 0 10px;
        white-space: normal;
    }

    /* Sessions Section */
    .sessions-section {
        padding: 50px 15px;
        overflow: hidden;
    }

    .sessions-container {
        padding: 0;
    }

    .sessions-content {
        flex-direction: column;
        gap: 30px;
    }

    .sessions-text {
        width: 100%;
        gap: 30px;
    }

    .sessions-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .sessions-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .sessions-images {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        gap: 10px;
    }

    .sessions-img {
        width: calc(50% - 5px);
        height: 150px;
        border-radius: var(--radius-sm);
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 50px 15px;
        overflow: hidden;
    }

    .testimonials-container {
        gap: 25px;
        padding: 0;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-carousel-wrapper {
        max-width: 100%;
        position: relative;
    }

    .testimonial-slide {
        padding: 25px 20px;
        min-height: 180px;
        margin: 0;
        border-radius: var(--radius-md);
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-author {
        font-size: 16px;
        margin-top: 15px;
    }

    /* Hide arrows on mobile - use swipe or dots */
    .testimonial-arrow {
        display: none;
    }

    /* Style dots for mobile navigation */
    .testimonials-dots {
        margin-top: 20px;
        gap: 10px;
    }

    .testimonials-dots .dot {
        width: 10px;
        height: 10px;
    }

    .testimonials-dots .dot.active {
        width: 28px;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 50px 15px;
        overflow: hidden;
    }

    .pricing-container {
        padding: 0;
    }

    .pricing-main-title {
        font-size: 32px;
    }

    .pricing-cards {
        gap: 20px;
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-card {
        padding: 25px 20px;
        width: 100%;
        max-width: 100%;
    }

    .pricing-image-wrapper {
        width: 140px;
        height: 140px;
        border-radius: var(--radius-md);
    }

    .pricing-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .pricing-title {
        font-size: 20px;
    }

    .pricing-price {
        font-size: 28px;
    }

    .pricing-description {
        font-size: 14px;
    }

    .pricing-btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }

    /* Help Section */
    .help-section {
        padding: 50px 15px;
        overflow: hidden;
    }

    .help-container {
        max-width: 100%;
        padding: 0;
    }

    .help-row-1,
    .help-row-2 {
        flex-direction: column;
        gap: 24px;
    }

    .help-title {
        text-align: center;
        font-size: 32px;
    }

    .help-cards-group {
        flex-direction: column;
        width: 100%;
    }

    .help-card {
        padding: 24px;
        width: 100%;
    }

    .help-cards-group .help-card {
        height: auto;
        min-height: 100px;
    }

    .help-images {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .help-img {
        width: calc(50% - 8px);
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .help-img:nth-child(2),
    .help-img:nth-child(3),
    .help-img:nth-child(4) {
        height: auto;
        margin-top: 0;
    }

    .help-column-left,
    .help-column-right {
        width: 100%;
    }

    /* Contact Section */
    .contact-content {
        flex-direction: column;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-quote .quote-text {
        font-size: 32px;
    }

    /* Footer */
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        order: 2;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        order: 3;
    }

    .footer-logo-wrapper {
        order: 1;
    }
}
/* ==========================================
   About Me Page
   ========================================== */

.about-me-section {
    padding: 80px 20px;
    background-color: var(--background);
}

.about-me-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-me-content {
    flex: 2;
}

.about-me-title {
    font-family: 'Corinthia', cursive;
    font-size: 56px;
    color: var(--primary);
    margin-bottom: 40px;
}

.about-me-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-me-image {
    flex: 1;
    max-width: 400px;
}

.about-me-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

@media (max-width: 900px) {
    .about-me-section {
        padding: 30px 15px 50px;
    }

    .about-me-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    /* Hide photo on mobile */
    .about-me-image {
        display: none;
    }

    .about-me-content {
        order: 2;
        text-align: left;
    }

    .about-me-title {
        font-size: 42px;
        margin-bottom: 25px;
        text-align: center;
        color: var(--primary);
    }

    .about-me-text p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 18px;
        color: var(--text);
    }

    .about-me-text p:first-child {
        font-size: 17px;
        font-weight: 500;
        color: var(--primary);
        text-align: center;
        margin-bottom: 25px;
    }
}
.post-title a {
    color: inherit;
    text-decoration: none;
}

.post-title a:hover {
    color: var(--accent);
}
