/*
Theme Name: Astra Akademia
Template: astra
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.  Global
2.  Header
3.  Hero Section
4.  Content Sections
5.  Footer
6.  Responsive
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1. Global
--------------------------------------------------------------*/
:root {
    --primary-color: #3b82f6; /* Blue 500 */
    --primary-dark: #2563eb; /* Blue 600 */
    --text-dark: #1f2937;    /* Gray 800 */
    --text-light: #4b5563;   /* Gray 600 */
    --bg-light: #f9fafb;     /* Gray 50 */
    --border-color: #e5e7eb; /* Gray 200 */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-light);
    background-color: #fff;
}

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

/*--------------------------------------------------------------
2. Header
--------------------------------------------------------------*/
body {
    padding-top: 0; /* Remove space reserved by previous fixed header attempts */
}

.site-header {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.site-header.scrolled {
    position: fixed !important;
    top: 0 !important;
}

.site-header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-main {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0;
    gap: 4rem;
}

.site-branding {
    padding: 0;
    flex-shrink: 0; /* Prevent logo from shrinking */
    order: 1; /* Logo first (left) */
}

.site-logo {
    max-width: 120px; /* Reduced logo size for better proportion */
    height: auto;
    display: block;
}

.main-navigation {
    flex-grow: 1; /* Allow menu to take available space */
    display: flex;
    justify-content: flex-start;
    order: 2; /* Menu second (middle) */
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem; /* Increased spacing */
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu a {
    color: white;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5); /* Enhanced shadow for visibility */
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.primary-menu a:hover {
    color: var(--primary-color);
    text-shadow: none;
}

.header-buttons {
    flex-shrink: 0; /* Prevent button from shrinking */
    order: 3; /* Button last (right) */
    margin-left: auto; /* Push to the right */
}

/* Simplified - JavaScript handles the scroll effect */

.site-header.scrolled .primary-menu a {
    color: var(--text-dark);
    text-shadow: none;
}

.site-header.scrolled .primary-menu a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none; /* Hide hamburger menu on desktop */
}

.hero-section {
    margin-top: 0; /* Ensure hero section starts at the top */
}

/*--------------------------------------------------------------
3. Hero Section
--------------------------------------------------------------*/
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('assets/images/hero-background.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem 0;
    text-align: center;
    margin-top: 0;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    color: #fff;
    font-weight: 800;
    margin: 2rem 0 1rem 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/*--------------------------------------------------------------
4. Content Sections
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.features-section, .membership-section, .cta-section, .contact-section {
    padding: 4rem 0;
}

.features-grid, .membership-grid, .cta-grid {
    display: grid;
    gap: 2rem;
}

.features-grid {
    grid-template-columns: repeat(3, 1fr);
}

.feature-box {
    text-align: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

.membership-section {
    background-color: var(--bg-light);
}

.membership-grid {
    grid-template-columns: repeat(3, 1fr);
}

.membership-box {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem; /* 8px */
    overflow: hidden;
}

.membership-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.membership-content ul {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.membership-content li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.membership-content li:last-child {
    border-bottom: none;
}

.cta-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.cta-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1.25rem;
    border-radius: 0.375rem;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.2s ease-in-out;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

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

/*--------------------------------------------------------------
5. Footer
--------------------------------------------------------------*/
.site-footer {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #f9fafb;
    margin-top: 4rem;
}

.footer-widgets {
    padding: 4rem 0 2rem 0;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-widget {
    text-align: left;
}

.footer-widget .widget-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-widget .widget-content {
    line-height: 1.6;
}

.footer-widget p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-menu,
.opening-hours,
.contact-info {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li,
.opening-hours li,
.contact-info li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-menu a:hover {
    color: var(--primary-color);
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    color: #d1d5db;
    font-size: 15px;
}

.opening-hours li span:first-child {
    font-weight: 500;
    color: #fff;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d1d5db;
    font-size: 15px;
}

.contact-info i {
    color: var(--primary-color);
    width: 18px;
    text-align: center;
}

.contact-info a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.copyright {
    color: #9ca3af;
    font-size: 14px;
}

/* Footer bottom links removed */

/*--------------------------------------------------------------
6. Responsive
--------------------------------------------------------------*/
@media (max-width: 1024px) {
    .primary-menu {
        gap: 2rem;
    }
    
    .primary-menu a {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .header-buttons .cta-button {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .site-branding {
        top: 40px;
        padding: 12px;
    }
    
    .site-logo {
        max-width: 90px;
    }
}

@media (max-width: 768px) {
    .site-branding {
        top: 30px;
        padding: 10px;
    }
    
    .site-logo {
        max-width: 80px;
    }
    
    .hero-section {
        padding: 6rem 0 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid, .membership-grid, .contact-content {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .primary-menu {
        gap: 1.5rem;
    }
    
    .primary-menu a {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .header-buttons .cta-button {
        padding: 10px 16px;
        font-size: 12px;
    }
} 

@media (max-width: 1024px) {
    .footer-widgets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Footer responsive styles */
@media (max-width: 768px) {
    .footer-widgets {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-widgets-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-widget .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .opening-hours li {
        justify-content: center;
        gap: 1rem;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        text-align: center;
    }
}

/* Astra Theme Specific Overrides */
.ast-header-wrap,
.main-header-bar,
.site-header .main-header-bar {
    background: transparent !important;
    border: none !important;
}

.ast-main-header-wrap {
    background: transparent !important;
}

#masthead.site-header {
    background: transparent !important;
    position: absolute !important;
    box-shadow: none !important;
}

#masthead.site-header.scrolled {
    background: transparent !important;
    position: fixed !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2) !important;
}

/* Old logo positioning removed - using new left-aligned layout */

/* Logo size for all Astra classes */
.custom-logo,
.ast-logo-title-inline .site-logo,
.site-logo img,
.custom-logo-link img {
    max-width: 120px !important;
    height: auto !important;
    width: auto !important;
}

/* Old conflicting menu positioning styles removed */

/* Menu links white color */
.main-header-menu a,
.ast-header-navigation ul li a,
#primary-menu a {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.main-header-menu a:hover,
.ast-header-navigation ul li a:hover,
#primary-menu a:hover {
    color: var(--primary-color) !important;
    text-shadow: none !important;
}

/* Scrolled state menu links */
#masthead.site-header.scrolled .main-header-menu a,
#masthead.site-header.scrolled .ast-header-navigation ul li a,
#masthead.site-header.scrolled #primary-menu a {
    color: #2563eb !important;
    text-shadow: none !important;
}

/* Remove body padding top */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
} 

/* Hide site title if it interferes */
.site-title,
.ast-site-title-wrap {
    display: none !important;
}

/* Adjust hero section to accommodate logo */
.hero-section {
    padding-top: 10rem !important;
} 

/* Logo in scrolled state */
#masthead.site-header.scrolled .site-branding,
#masthead.site-header.scrolled .ast-site-identity {
    background: transparent !important;
    box-shadow: none !important;
    padding: 5px !important;
} 

/* Force left logo layout with very specific selectors */
#masthead.site-header .container .header-main {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 4rem !important;
}

#masthead.site-header .site-branding {
    order: 1 !important;
    flex-shrink: 0 !important;
    margin-right: 0 !important;
    position: static !important;
    transform: none !important;
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

#masthead.site-header .main-navigation {
    order: 2 !important;
    flex-grow: 1 !important;
    display: flex !important;
    justify-content: flex-start !important;
    margin-left: 2rem !important;
}

#masthead.site-header .header-buttons {
    order: 3 !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
}

/* Remove any absolute positioning from logo */
#masthead.site-header .site-branding,
#masthead.site-header .ast-site-identity {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
} 

/* Scroll styles removed - JavaScript handles everything */ 

/* Alternative scrolled state using body class */
body.header-scrolled .site-header,
body.header-scrolled #masthead,
body.header-scrolled .ast-header-wrap,
body.header-scrolled .main-header-bar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    position: fixed !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1) !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
}

/* Force fixed positioning for all header elements when scrolled */
#masthead.scrolled,
.site-header.scrolled,
body.header-scrolled #masthead,
body.header-scrolled .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1) !important;
}

/* Ensure body gets proper padding when header becomes fixed */
body.header-scrolled {
    padding-top: 80px !important;
}

/* Menu text color change on scroll */
body.header-scrolled .primary-menu a,
body.header-scrolled .main-header-menu a,
body.header-scrolled .ast-header-navigation ul li a {
    color: var(--text-dark) !important;
    text-shadow: none !important;
} 

/* Ultra-specific scrolled state - Force override */
body.header-scrolled #masthead,
body.header-scrolled .site-header,
body.header-scrolled header,
body.header-scrolled .ast-header-wrap,
body.header-scrolled .main-header-bar,
body.header-scrolled .ast-main-header-wrap,
html body.header-scrolled #masthead.site-header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1) !important;
    transition: all 0.3s ease !important;
}

/* Force any container inside header */
body.header-scrolled #masthead .container,
body.header-scrolled .site-header .container,
body.header-scrolled .ast-header-wrap .container {
    background: transparent !important;
} 

/* Removed debug styles */ 

/* FINAL SCROLLED STATE - Maximum specificity */
body.header-scrolled .scrolled,
body.header-scrolled .site-header.scrolled,
body.header-scrolled #masthead.scrolled,
.scrolled.site-header,
#masthead.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    background-image: none !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1) !important;
    transition: all 0.3s ease !important;
}

/* Force override for any Astra specific elements */
body.header-scrolled [class*="header"].scrolled,
body.header-scrolled [id*="header"].scrolled,
body.header-scrolled [class*="masthead"].scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
} 

/* CSS Variables approach for scrolled state */
:root {
    --scrolled-bg: rgba(255, 255, 255, 0.95);
    --scrolled-shadow: 0 4px 12px rgba(0,0,0,0.15);
    --scrolled-border: 1px solid rgba(59, 130, 246, 0.1);
}

/* Use attribute selectors for maximum compatibility */
body.header-scrolled [class*="site-header"],
body.header-scrolled [id*="masthead"],
body.header-scrolled header[class],
[class*="scrolled"][class*="header"] {
    background: var(--scrolled-bg) !important;
    box-shadow: var(--scrolled-shadow) !important;
    border-bottom: var(--scrolled-border) !important;
    backdrop-filter: blur(10px) !important;
} 

/*--------------------------------------------------------------
Clean & Simple Sections Styles
--------------------------------------------------------------*/

/* Clean About Section */
.clean-about-section {
    padding: 4rem 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    padding-right: 2rem;
}

.about-description {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.placeholder-image p {
    font-size: 1.125rem;
    margin: 0;
}

/* Modern About Section */
.modern-about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 24px;
    color: white;
}

.card-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 1.5rem;
}

.card-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.card-features li:last-child {
    border-bottom: none;
}

/* Modern Pricing Section */
.modern-pricing-section {
    padding: 5rem 0;
    background: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card .card-header {
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}

.pricing-card .card-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .currency {
    color: var(--text-light);
    font-size: 0.875rem;
}

.price .amount {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
}

.price .period {
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-card .card-body {
    padding: 0 2rem 1rem 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-light);
    line-height: 1.4;
}

.features-list i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.price-details,
.special-offer {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.price-details p,
.special-offer p {
    margin: 0.25rem 0;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.special-offer {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
}

.pricing-card .card-footer {
    padding: 1rem 2rem 2rem 2rem;
}

.btn {
    display: block;
    text-align: center;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Modern CTA Section */
.modern-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
    color: white;
}

.modern-cta-section .section-title {
    color: white;
}

.modern-cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.cta-header {
    text-align: center;
    margin-bottom: 4rem;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.action-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.action-card:hover:before {
    transform: scaleX(1);
}

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

.action-card.primary {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
}

.action-card .card-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.action-card .card-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.action-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.action-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.action-card:hover .card-arrow {
    transform: translateX(5px);
} 

/* Responsive styles for modern sections */
@media (max-width: 768px) {
    .modern-about-section,
    .modern-pricing-section,
    .modern-cta-section {
        padding: 3rem 0;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .action-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .action-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
} 

/* Image containers for all sections */
.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

.pricing-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

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

.action-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
}

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

.action-card:hover .action-image img {
    transform: scale(1.1);
}

/* Adjust card layout when images are present */
.about-card:has(.card-image) .card-icon {
    display: none;
}

.action-card:has(.action-image) .card-icon {
    display: none;
}

/* Responsive adjustments for images */
@media (max-width: 768px) {
    .card-image {
        height: 150px;
    }
    
    .pricing-image {
        height: 120px;
    }
    
    .action-image {
        height: 100px;
    }
} 

/* Simple Pricing Section with Effects */
.simple-pricing-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.simple-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(59, 130, 246, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

.pricing-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto 2rem auto;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    position: relative;
}

.pricing-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #10b981, var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.pricing-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    transform: translateX(-10px);
    opacity: 0;
    animation: slideInFromLeft 0.6s ease forwards;
}

.pricing-row:nth-child(1) { animation-delay: 0.1s; }
.pricing-row:nth-child(2) { animation-delay: 0.2s; }
.pricing-row:nth-child(3) { animation-delay: 0.3s; }
.pricing-row:nth-child(4) { animation-delay: 0.4s; }
.pricing-row:nth-child(5) { animation-delay: 0.5s; }
.pricing-row:nth-child(6) { animation-delay: 0.6s; }
.pricing-row:nth-child(7) { animation-delay: 0.7s; }

.pricing-row:not(.header):hover {
    background-color: rgba(59, 130, 246, 0.02);
    transform: translateX(5px);
    box-shadow: -4px 0 0 var(--primary-color);
}

@keyframes slideInFromLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.pricing-row.header {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.pricing-row.price-row {
    background: #f8fafc;
    font-weight: 600;
}

.pricing-row.action-row {
    background: #f1f5f9;
    border-bottom: none;
}

.pricing-cell {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid #f1f5f9;
}

.pricing-cell:last-child {
    border-right: none;
}

.pricing-cell.plan-name {
    background: rgba(0, 0, 0, 0.1);
    font-weight: 700;
    justify-content: flex-start;
    text-align: left;
}

.pricing-cell.feature {
    background: #fff;
    color: var(--text-dark);
    font-weight: 500;
    justify-content: flex-start;
    text-align: left;
}

.pricing-cell.featured {
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.pricing-cell.featured::before {
    content: '⭐ POPULARNY';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-color), #10b981);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    z-index: 10;
    animation: bounce 1s ease-in-out infinite alternate;
}

.pricing-row.header .pricing-cell.featured::before {
    display: none;
}

@keyframes pulse {
    0%, 100% { 
        background: rgba(59, 130, 246, 0.1);
        border-color: var(--primary-color);
    }
    50% { 
        background: rgba(59, 130, 246, 0.15);
        border-color: #2563eb;
    }
}

@keyframes bounce {
    0% { transform: translateX(-50%) translateY(0px); }
    100% { transform: translateX(-50%) translateY(-3px); }
}

.pricing-row.header .pricing-cell.featured {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-simple, .btn-primary-simple {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: scale(1);
}

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

.btn-simple:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

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

.btn-primary-simple:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* Efekt świecenia dla featured przycisków */
.btn-primary-simple {
    box-shadow: 0 0 0 rgba(59, 130, 246, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px rgba(59, 130, 246, 0.2); }
    to { box-shadow: 0 0 15px rgba(59, 130, 246, 0.4); }
}

.pricing-notes {
    text-align: center;
    margin-top: 1.5rem;
}

.pricing-notes p {
    color: var(--text-light);
    margin: 0.25rem 0;
}

/* Simple CTA Section */
.simple-cta-section {
    padding: 4rem 0;
    background: white;
}

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

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.cta-btn.primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.cta-btn.primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.cta-btn i {
    font-size: 1.125rem;
} 

/* Responsive styles for clean sections */
@media (max-width: 1024px) {
    .about-content {
        gap: 3rem;
    }
    
    .pricing-row {
        grid-template-columns: 150px 1fr 1fr 1fr;
    }
    
    .pricing-cell {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .clean-about-section,
    .simple-pricing-section,
    .simple-cta-section {
        padding: 3rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        padding-right: 0;
    }

/* Proste i działające efekty dla cennika */

/* Hover dla wierszy tabeli */
.pricing-row:not(.header) {
    transition: all 0.3s ease;
}

.pricing-row:not(.header):hover {
    background-color: rgba(59, 130, 246, 0.05);
    transform: translateX(3px);
}

/* Delikatny efekt dla kolumny Premium */
.pricing-cell.featured {
    position: relative;
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.pricing-cell.featured::after {
    content: '⭐ NAJLEPSZY';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 8px;
    white-space: nowrap;
}

.pricing-row.header .pricing-cell.featured::after {
    display: none;
}

/* Efekty hover dla przycisków */
.btn-simple, .btn-primary-simple {
    transition: all 0.3s ease;
}

.btn-simple:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.btn-primary-simple:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    background: #2563eb;
}

/* Delikatny efekt dla całej tabeli */
.pricing-table {
    transition: all 0.3s ease;
}

.pricing-table:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
}

/* Ulepszone efekty Sticky Header */

/* Bazowy nagłówek - przezroczysty na górze strony */
#masthead.site-header {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    z-index: 9999 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 0 !important;
}

/* Sticky state - po przewinięciu */
#masthead.site-header.sticky-active {
    position: fixed !important;
    top: 0 !important;
    background: rgba(248, 250, 252, 0.95) !important;
    backdrop-filter: blur(15px) saturate(180%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15) !important;
    transform: translateY(0) !important;
}

/* Animacja wjazdu sticky header */
#masthead.site-header.sticky-entering {
    transform: translateY(-100%) !important;
    animation: slideDownHeader 0.4s ease-out forwards !important;
}

@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo - mniejszy w sticky state */
#masthead.site-header .site-logo {
    transition: all 0.3s ease !important;
    max-width: 120px !important;
}

#masthead.site-header.sticky-active .site-logo {
    max-width: 100px !important;
}

/* Menu items - zmiana koloru w sticky state */
#masthead.site-header .primary-menu a {
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

#masthead.site-header.sticky-active .primary-menu a {
    color: var(--text-dark) !important;
    text-shadow: none !important;
}

#masthead.site-header.sticky-active .primary-menu a:hover {
    color: var(--primary-color) !important;
}

/* Header button w sticky state */
#masthead.site-header .header-button {
    transition: all 0.3s ease !important;
}

#masthead.site-header.sticky-active .header-button {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Padding dla body gdy sticky jest aktywny */
body.sticky-header-active {
    padding-top: 80px !important;
    transition: padding-top 0.3s ease !important;
}

/* Responsive sticky header */
@media (max-width: 768px) {
    #masthead.site-header.sticky-active .site-logo {
        max-width: 80px !important;
    }
    
    body.sticky-header-active {
        padding-top: 70px !important;
    }
}

/* Dodatkowy efekt blur dla tła */
#masthead.site-header.sticky-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 250, 252, 0.8);
    z-index: -1;
}

/* Hover efekt dla sticky header */
#masthead.site-header.sticky-active:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-1px) !important;
}

